@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');

/* ── CSS Variables ── */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF7;
  --sand: #E8DDD0;
  --clay: #C4A882;
  --earth: #8B6F52;
  --bark: #5C4033;
  --sage: #8A9E85;
  --sage-light: #C8D8C5;
  --text-dark: #2E2118;
  --text-mid: #6B5344;
  --text-light: #9C8070;
  --gold: #B89660;
  --gold-light: #D4B483;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bark);
}

p { color: var(--text-mid); font-size: 1.05rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bark);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: var(--bark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--bark); }
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--bark);
  transition: all 0.3s;
}

/* ── Page wrapper ── */
.page-wrapper { padding-top: 80px; }

/* ── Sections ── */
section { padding: 6rem 4rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 750px; margin: 0 auto; }

/* ── Divider ── */
.divider {
  width: 60px; height: 1px;
  background: var(--clay);
  margin: 1.5rem 0;
}
.divider-center { margin: 1.5rem auto; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--clay);
  color: var(--bark);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--clay);
  color: var(--warm-white);
}

.btn-filled {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--warm-white);
}

.btn-filled:hover {
  background: var(--bark);
  border-color: var(--bark);
}

/* ── Footer ── */
footer {
  background: var(--bark);
  color: var(--sand);
  padding: 3rem 4rem;
  text-align: center;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

footer p { color: var(--clay); font-size: 0.8rem; letter-spacing: 0.08em; }

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 1.5rem 0;
}

footer .footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  transition: color 0.2s;
}

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

footer .footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,168,130,0.2);
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── Photo placeholder ── */
.photo-placeholder {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
  gap: 0.5rem;
}

.photo-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.9s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--sand);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem; }
}
