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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF8F4;
  --warm-white: #FDFCFA;
  --gold: #B89A6A;
  --gold-light: #D4B896;
  --gold-dark: #8A7050;
  --charcoal: #2C2820;
  --brown-mid: #6B5A45;
  --brown-light: #C5B09A;
  --border: rgba(184, 154, 106, 0.25);
  --border-strong: rgba(184, 154, 106, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── ENTRANCE ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.animate-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-up.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero entrance */
.hero-eyebrow  { animation: fadeUp 0.7s ease 0.15s both; }
.hero-title    { animation: fadeUp 0.7s ease 0.3s  both; }
.hero-subtitle { animation: fadeUp 0.7s ease 0.45s both; }
.hero-cta      { animation: fadeUp 0.7s ease 0.6s  both; }

/* Page-hero entrance */
.page-hero .section-label { animation: fadeUp 0.6s ease 0.1s  both; }
.page-hero h1              { animation: fadeUp 0.7s ease 0.22s both; }
.page-hero > div > p,
.page-hero-inner > p       { animation: fadeUp 0.6s ease 0.38s both; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5.2rem;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

nav.nav-scrolled {
  box-shadow: 0 2px 24px rgba(44, 40, 32, 0.09);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.975rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── SHARED LAYOUT ── */
.page-wrap {
  padding-top: 96px;
  min-height: 100vh;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--warm-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138, 112, 80, 0.28);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(184,154,106,0.15);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #EDE8E0;
  letter-spacing: 0.06em;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--brown-light);
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(197,176,154,0.45);
}

/* ── MOBILE ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.25s;
}

@media (max-width: 900px) {
  nav { padding: 1.3rem 1.95rem; }
  .nav-logo img { height: 62px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .section-inner { padding: 4rem 1.5rem; }

  footer {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 600px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-logo img { height: 50px; }
  .page-wrap { padding-top: 84px; }
  .section-inner { padding: 2.5rem 1.25rem; }
  .contact-row-value { overflow-wrap: break-word; word-break: break-word; }
}
