/* ============ TOKENS ============ */
:root {
  --cream: #FBF7EF;
  --cream-deep: #F3ECDE;
  --brown-ink: #3B2A20;
  --brown-soft: #6B5A4C;
  --amber: #C07A3E;
  --amber-dark: #A5652E;
  --leaf: #6B7A4F;
  --line: #E4DACB;
  --footer-bg: #2A1E15;
  --footer-text: #D8CBB9;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  --max-width: 1180px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--brown-ink);
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 19px; }

p { margin: 0 0 16px; color: var(--brown-soft); }

.section { padding: 88px 0; }
.section-heading { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-desc { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--brown-ink);
  color: var(--brown-ink);
}
.btn-outline:hover { background: var(--brown-ink); color: var(--white); transform: translateY(-2px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-flower { flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--brown-ink);
  border-bottom: 2px solid var(--amber-dark);
  padding-bottom: 3px;
}
.logo-tagline {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--brown-soft);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-ink);
  padding-bottom: 6px;
  position: relative;
  transition: color .15s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--amber);
  transition: width .2s ease;
}
.nav-link:hover { color: var(--amber-dark); }
.nav-link.active { color: var(--amber-dark); }
.nav-link.active::after { width: 100%; }

.nav-toggle-input {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown-ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  background: var(--cream-deep);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-text .eyebrow { margin-bottom: 18px; }
.hero-desc { max-width: 440px; }
.hero-actions { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(59, 42, 32, 0.35);
}

/* ============ FEATURES ============ */
.features { padding: 56px 0; background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.feature:last-child { border-right: none; }
.feature:hover {
  transform: scale(1.08);
}
.feature-icon {
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.feature-icon svg {
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), color .35s ease;
}
.feature:hover .feature-icon svg {
  transform: scale(1.15);
  color: var(--amber-dark);
}
.feature h3 {
  transition: color .35s ease;
}
.feature:hover h3 {
  color: var(--amber-dark);
}
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14px; margin: 0; }

/* ============ PRODUCTS ============ */
.products-preview { background: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(59,42,32,0.25);
}
.product-image { height: 210px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 22px 24px 26px; }
.product-size { margin-bottom: 14px; }
.product-list li {
  font-size: 14px;
  color: var(--brown-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber);
  font-weight: 700;
}

/* ============ ABOUT ============ */
.about-preview { background: var(--cream-deep); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(59,42,32,0.3);
}
.check-list { margin: 20px 0 28px; }
.check-list li {
  font-weight: 600;
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  color: var(--brown-ink);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--cream-deep);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.contact-text .eyebrow { text-align: left; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -6px rgba(59,42,32,0.2);
}
.contact-item strong { display: block; font-size: 15.5px; color: var(--brown-ink); }
.contact-item small { color: var(--brown-soft); font-size: 13px; }
.contact-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============ PAGE HERO (About / Products headers) ============ */
.page-hero {
  background: var(--cream-deep);
  padding: 72px 0 48px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 10px; }
.page-hero .section-desc { max-width: 560px; margin: 0 auto; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(216, 203, 185, 0.15);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}
.footer-tagline { display: block; font-size: 11px; color: var(--footer-text); margin-top: 2px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(216,203,185,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-text);
  transition: background .15s ease, color .15s ease;
}
.footer-socials a:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col a, .footer-col span {
  color: var(--footer-text);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .15s ease;
  width: fit-content;
}
.footer-col a:hover { color: var(--amber); }
.footer-location {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-location svg { flex-shrink: 0; color: var(--amber); }

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(216,203,185,0.7);
}
.footer-bottom span {
  display: block;
  color: var(--amber);
  margin-bottom: 8px;
  font-size: 14px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { height: 260px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .feature { border-right: none; }
  .feature:nth-child(odd) { border-right: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 300px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-image { order: -1; }
  .contact-image img { height: 220px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px -16px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-toggle-input:checked ~ .main-nav { max-height: 300px; }
  .main-nav .nav-link {
    width: 100%;
    padding: 16px 28px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature:nth-child(odd) { border-right: none; }
  .feature { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .feature:last-child { border-bottom: none; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-brand { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* Accessible focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}