@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Lato:wght@300;400&display=swap');

:root {
  --cream: #FAF6F0;
  --cream-dark: #F0E8DC;
  --brown-deep: #2C1810;
  --brown-mid: #6B3A1F;
  --brown-light: #A06040;
  --gold: #B5763A;
  --gold-light: #D4A96A;
  --gold-pale: #F5E8D0;
  --text-dark: #1C1008;
  --text-mid: #5C3C20;
  --text-light: #9A7A5A;
  --border: rgba(181,118,58,0.18);
  --border-strong: rgba(181,118,58,0.38);
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(44,24,16,0.07);
  --shadow-hover: 0 8px 40px rgba(44,24,16,0.13);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ════════════════════════════════
   DESKTOP NAV
   ════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,246,240,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.nav-logo {
  text-decoration: none; flex-shrink: 0; display: flex; align-items: center; gap: 8px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 400;
  color: var(--text-dark);
}
.nav-logo-text em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 0 14px;
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  transition: color 0.2s; line-height: 62px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-tea {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13px; color: var(--text-light); flex-shrink: 0;
}
/* burger hidden on desktop */
.nav-burger { display: none; }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--brown-deep) 0%, #4A2010 45%, var(--brown-light) 100%);
  display: flex; align-items: flex-end;
  padding: 4.5rem 2.5rem 3.5rem; min-height: 420px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.025) 0,rgba(255,255,255,0.025) 1px,transparent 0,transparent 50%);
  background-size: 14px 14px; pointer-events: none;
}
.hero-filigrane {
  position: absolute; right: -1rem; bottom: -1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 200px; font-weight: 400; line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none; letter-spacing: -0.04em;
}
.hero-content { position: relative; z-index: 1; max-width: 1000px; width: 100%; margin: 0 auto; }
.hero-home-inner { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 3.5rem; }
.hero-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 54px); font-weight: 400;
  color: var(--cream); line-height: 1.15; margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 17px; color: rgba(250,246,240,0.55); letter-spacing: 0.04em; max-width: 480px; }

/* ════════════════════════════════
   PAGE / LAYOUT
   ════════════════════════════════ */
.page { max-width: 1000px; margin: 0 auto; padding: 0 2.5rem 4rem; }
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 2.8rem 0 1.2rem;
  border-bottom: 0.5px solid var(--border); margin-bottom: 1.5rem;
}
.section-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; }
.section-link { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.section-link:hover { opacity: 0.7; }

/* ════════════════════════════════
   COMPONENTS
   ════════════════════════════════ */
.card {
  background: var(--white);
  border: 0.5px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: var(--shadow-hover); border-color: var(--border-strong); transform: translateY(-2px); }
.badge {
  display: inline-block; font-size: 11px; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px;
  background: var(--cream-dark); border: 0.5px solid var(--border); color: var(--text-light);
}
.badge.gold { background: var(--gold-pale); border-color: var(--gold-light); color: var(--brown-mid); }
.btn {
  display: inline-block; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.2s; cursor: pointer;
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
}
.btn:hover { background: var(--gold); color: var(--white); }
.btn.solid { background: var(--gold); color: var(--white); }
.btn.solid:hover { background: var(--brown-mid); border-color: var(--brown-mid); }
.divider { width: 48px; height: 1px; background: var(--gold-light); margin: 1.2rem 0; }

/* ════════════════════════════════
   HERO HOME
   ════════════════════════════════ */
.hero-home { min-height: 460px; align-items: center; padding: 3rem 2.5rem; }
.hero-home-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.5rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.hero-logo-side { flex: 0 0 auto; }
.hero-logo-full { width: 340px; max-width: 100%; }
.hero-text-side { flex: 1; }

/* ════════════════════════════════
   QUOTE BAND
   ════════════════════════════════ */
.quote-band {
  background: var(--brown-deep); padding: 2.8rem 2.5rem;
  margin: 3rem -2.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.quote-band::before {
  content: '\201C'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-family: 'Playfair Display', serif; font-size: 160px;
  color: rgba(181,118,58,0.1); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px;
  color: var(--gold-pale); max-width: 600px; margin: 0 auto 10px;
  line-height: 1.6; position: relative; z-index: 1;
}
.quote-author { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); opacity: 0.65; }

/* ════════════════════════════════
   ANIMATIONS
   ════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.55s ease forwards; }
.fade-up:nth-child(1){animation-delay:0.05s}
.fade-up:nth-child(2){animation-delay:0.13s}
.fade-up:nth-child(3){animation-delay:0.21s}
.fade-up:nth-child(4){animation-delay:0.29s}
.fade-up:nth-child(5){animation-delay:0.37s}
.fade-up:nth-child(6){animation-delay:0.45s}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
footer {
  background: var(--brown-deep); color: rgba(250,246,240,0.55);
  padding: 2.5rem 2.5rem 2rem; margin-top: 5rem;
}
.footer-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--gold-pale); }
.footer-logo span { color: var(--gold-light); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: rgba(250,246,240,0.4); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,240,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ════════════════════════════════
   MOBILE  ≤ 768px
   ════════════════════════════════ */
@media (max-width: 768px) {

  /* — nav — */
  nav {
    padding: 0 1rem;
    height: 54px;
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  }
  .nav-tea { display: none; }
  .nav-links {
    display: none !important;
    position: fixed;
    top: 54px; left: 0; right: 0;
    background: rgba(250,246,240,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column !important;
    border-bottom: 1px solid var(--border);
    padding: 0.25rem 0 1rem;
    z-index: 199;
    box-shadow: 0 6px 20px rgba(44,24,16,0.1);
  }
  .nav-links.open { display: flex !important; }
  .nav-links li { border-bottom: 0.5px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block !important;
    padding: 14px 1.25rem !important;
    line-height: 1.2 !important;
    font-size: 12px !important;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    border-bottom: none !important;
  }
  .nav-links a.active { color: var(--gold); background: rgba(181,118,58,0.05); }
  .nav-burger {
    display: flex;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 38px; height: 38px;
    background: none; border: none; cursor: pointer; padding: 6px;
    margin-left: auto; flex-shrink: 0;
  }
  .nav-burger span {
    display: block; width: 20px; height: 1.5px;
    background: var(--text-dark);
    transition: transform 0.25s ease, opacity 0.2s;
    transform-origin: center;
  }
  .nav-burger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity: 0; }
  .nav-burger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

  /* — body offset — */
  body { padding-top: 54px; }

  /* — page — */
  .page { padding: 0 1rem 3rem; max-width: 100%; }

  /* — hero — */
  .hero { padding: 1.75rem 1rem 1.75rem; min-height: 200px; }

  .hero-home { min-height: auto; padding: 2rem 1rem 2.5rem; }
  .hero-home-inner { flex-direction: column !important; gap: 1.5rem; align-items: center !important; }
  .hero-logo-full { width: 200px; }
  .hero-text-side { text-align: left; width: 100%; }

  .hero-filigrane { font-size: 70px; right: 0; bottom: -0.5rem; }
  .hero h1 { font-size: 26px; margin-bottom: 8px; }
  .hero-tag { font-size: 9px; letter-spacing: 0.14em; margin-bottom: 8px; }
  .hero-sub { font-size: 13px; line-height: 1.55; }
  .divider { width: 32px; margin: 0.6rem 0; }

  /* — sections — */
  .section-header { padding: 1.5rem 0 0.8rem; flex-wrap: wrap; gap: 4px; }
  .section-title { font-size: 20px; }
  .section-link { font-size: 10px; }

  /* — cards — */
  .card { width: 100%; }
  .card:hover { transform: none; box-shadow: none; }

  /* — quote — */
  .quote-band { margin: 2rem -1rem 0; padding: 1.75rem 1rem; }
  .quote-text { font-size: 15px; }

  /* — footer — */
  footer { padding: 1.75rem 1rem 1.5rem; margin-top: 2.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-tagline { display: none; }
  .footer-logo { font-size: 15px; }
  .footer-links { flex-wrap: wrap; gap: 8px 14px; }
  .footer-links a { font-size: 10px; }
}
