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

:root {
  --cream: #FAF6F2;
  --blush: #EDD5C8;
  --blush-deep: #DFB99F;
  --terracotta: #C07A5C;
  --terracotta-deep: #9E5E42;
  --dark: #1A1410;
  --muted: #7A6B63;
  --light-line: #E0D5CF;
  --green: #4A7C59;
  --green-light: #D6EAD9;
  --red-light: #F5DDD9;
  --red: #B85C50;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  background: rgba(250,246,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-line);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.06); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: white !important;
  padding: 10px 24px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terracotta-deep) !important; color: white !important; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

/* ── UTILITIES ── */
.eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before { content:''; display:block; width:32px; height:2px; background:var(--terracotta); }
.eyebrow.light { color: var(--blush); }
.eyebrow.light::before { background: var(--blush); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display:none; }

.display-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; line-height: 1.1;
}
.display-title em { font-style: italic; color: var(--terracotta); }
.display-title.on-dark em { color: var(--blush); }

.btn-primary {
  display: inline-block;
  background: var(--terracotta); color: white;
  border: none; padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--muted);
  border: 1px solid var(--light-line);
  padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-ghost.light { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.25); }
.btn-ghost.light:hover { color: white; border-color: white; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 56px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: var(--blush); margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.7; max-width: 280px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-launch {
  font-size: 11px; color: var(--terracotta);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--light-line);
    gap: 0;
  }
  .nav-links.open li { border-bottom: 1px solid var(--light-line); }
  .nav-links.open a { display: block; padding: 14px 0; }
  .nav-hamburger { display: block; }
  footer { padding: 40px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
