﻿/* ===== Root & Reset ===== */
:root {
  --bg: #f7f3ee;
  --bg-alt: #f0e7df;
  --card: #ffffff;
  --text: #2c2724;
  --muted: #746a63;
  --accent: #c69b7b;
  --accent-soft: #e7cbb0;
  --border: #e0d6ce;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.06);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}


/* Utility */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.section {
  padding: 4.5rem 0;
}


.section-alt {
  background: var(--bg-alt);
}


.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}


.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}


.section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}


.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}


.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(198, 155, 123, 0.45);
}


.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(198, 155, 123, 0.5);
}


.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.05);
}


.btn-ghost:hover {
  background: #fff;
}


.btn-outline {
  border-color: var(--accent-soft);
  color: var(--text);
  background: #fff;
}


.btn-outline:hover {
  background: var(--accent-soft);
}


/* Links */
a {
  color: var(--accent);
  text-decoration: none;
}


a:hover {
  text-decoration: underline;
}


.link-inline {
  font-size: 0.9rem;
}


/* Announcement bar */
.announcement-bar {
  background: #191410;
  color: #f6eee7;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 238, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
}


.logo-area {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}


.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1d1712;
  color: #f7f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1;
}


.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}


.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}


.brand-tagline {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}


.main-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.9rem;
}


.main-nav a {
  color: var(--muted);
  text-decoration: none;
}


.main-nav a:hover {
  color: var(--text);
}


.nav-cta {
  font-size: 0.88rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: #fff;
  color: var(--text);
  text-decoration: none;
}


.nav-cta:hover {
  background: var(--accent-soft);
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}


/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #f7f3ee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.mobile-nav a {
  padding: 0.8rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  color: var(--muted);
}


.mobile-nav a:hover {
  background: rgba(0, 0, 0, 0.02);
}


.mobile-nav.open {
  display: flex;
}


/* Hero */
.hero {
  padding: 4rem 0 3.5rem;
}


.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
}


.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0.5rem 0 0.75rem;
}


.hero-subtitle {
  color: var(--muted);
  max-width: 520px;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 0.6rem;
}


.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.83rem;
  color: var(--muted);
}


.hero-notes span::before {
  content: "• ";
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}


/* Hero card */
.hero-card {
  background: var(--card);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
}


.hero-image-placeholder {
  border-radius: 20px;
  background: linear-gradient(145deg, #e3d5c6, #f3e8dc);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}


.hero-card-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin: 0;
}


.hero-card-content p {
  font-size: 0.92rem;
  color: var(--muted);
}


.hero-card-meta {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 0.4rem;
  font-size: 0.92rem;
}


.hero-card-meta .price {
  font-weight: 600;
}


.hero-card-meta .size {
  color: var(--muted);
}


/* Highlights */
.highlights {
  padding: 2.8rem 0 1rem;
}


.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}


.highlight {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border);
}


.highlight h3 {
  font-size: 1.05rem;
  margin-top: 0;
}


/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.7rem;
}


.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.1rem 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: #1f1711;
  color: #f7f3ee;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}


.product-image-placeholder {
  border-radius: 16px;
  height: 140px;
  background: linear-gradient(145deg, #dfd0c3, #f6ece1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.95rem;
}


.product-content h3 {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  font-family: "Playfair Display", serif;
}


.product-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.6rem;
}


.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}


.product-bullets li + li {
  margin-top: 0.2rem;
}


.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.product-footer .price {
  font-weight: 600;
}


/* Quarter Club */
.quarter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}


.quarter-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}


.quarter-card h3 {
  margin-top: 0;
}


.quarter-card ul {
  padding-left: 1.2rem;
}


/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
}


.about-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.93rem;
}


/* Lists */
.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
}


.list-check li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
}


.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}


.small-text {
  font-size: 0.85rem;
  color: var(--muted);
}


/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
}


.contact-line {
  font-size: 0.95rem;
}


.contact-form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}


.contact-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: #faf6f2;
}


.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(198, 155, 123, 0.45);
  outline-offset: 1px;
}


.contact-form button[disabled] {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}


.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
}


/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #f5eee7;
  padding: 1rem 0;
}


.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}


.footer-links a {
  color: var(--muted);
}


.footer-links a:hover {
  color: var(--text);
}


/* Responsive */
@media (max-width: 900px) {
  .main-nav,
  .nav-cta {
    display: none;
  }


  .nav-toggle {
    display: block;
  }


  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }


  .hero-card {
    max-width: 420px;
    margin: 1.5rem auto 0;
  }


  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .quarter-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }


  .highlights-grid,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }


  .header-inner {
    padding-inline: 1rem;
  }


  .section {
    padding: 3.2rem 0;
  }


  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}