/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 300; font-size: 1rem; line-height: 1.7;
  color: #3A3A3A; background: #EDDCD2;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ========== VARIABLES ========== */
:root {
  --sand: #C2B280;
  --sand-light: #D4C99E;
  --sand-dark: #A89A6A;
  --sage: #5D4749;
  --sage-light: #7A6365;
  --sage-dark: #4A3638;
  --blush: #EDDCD2;
  --blush-deep: #E4CFC3;
  --blush-light: #F3E5DF;
  --blush-pale: #F8F0EC;
  --shell: #F5F0E8;
  --shell-light: #FAF7F2;
  --text-primary: #3A3A3A;
  --text-secondary: #6B6B6B;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 4.5vw, 3.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 2rem); }
.section-label {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--sand-dark); margin-bottom: 0.8rem;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 0;
  background: rgba(237, 220, 210, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194,178,128,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.header-logo {
  font-family: var(--font-display); font-weight: 400; font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.header-logo .amp { font-style: italic; color: var(--sage); }
.main-nav { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
  font-family: var(--font-body); font-weight: 400; font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-primary);
  transition: opacity 0.3s ease; opacity: 0.45;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 1001;
}
.nav-toggle-label span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-primary); transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .nav-toggle-label { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--blush); flex-direction: column;
    padding: 6rem 2.5rem 2rem; gap: 1.8rem;
    transform: translateX(100%); transition: transform 0.4s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.06);
  }
  .main-nav a { font-size: 0.7rem; opacity: 0.7; }
  .nav-toggle:checked ~ .main-nav { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ========== BOTANICAL CORNERS ========== */
.botanical {
  position: absolute; pointer-events: none; z-index: 0;
}
.botanical svg {
  width: 100%; height: 100%;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.botanical-tl { top: -30px; left: -30px; width: clamp(280px, 42vw, 620px); height: auto; }
.botanical-tr { top: -30px; right: -30px; width: clamp(280px, 42vw, 620px); height: auto; transform: scaleX(-1); }
.botanical-bl { bottom: -30px; left: -30px; width: clamp(240px, 36vw, 520px); height: auto; transform: scaleY(-1); }
.botanical-br { bottom: -30px; right: -30px; width: clamp(240px, 36vw, 520px); height: auto; transform: scale(-1); }

/* ========== PAGE BASE ========== */
.page {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.page-blush { background: var(--blush); }
.page-pale { background: var(--blush-pale); }
.page-shell { background: var(--shell); }
.page-inner {
  position: relative; z-index: 1;
  max-width: 680px; width: 100%; text-align: center;
}

/* ========== DIVIDER ========== */
.leaf-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 2.5rem auto; max-width: 200px;
}
.leaf-divider svg {
  width: 28px; height: 28px;
  stroke: var(--sage); fill: none; stroke-width: 1;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.35;
}
.leaf-divider .divider-line {
  flex: 1; height: 1px; background: rgba(93,71,73,0.2);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--text-primary); color: var(--blush-light);
  text-align: center; padding: 3rem 2rem;
}
.footer-names {
  font-family: var(--font-display); font-weight: 300;
  font-size: 1.3rem; letter-spacing: -0.01em; display: inline;
}
.footer-amp {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.5rem; color: var(--sage); margin: 0 0.2em;
}
.footer-date {
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(243,229,223,0.35); margin-top: 0.8rem;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.9s ease-out forwards;
}
.fade-in:nth-child(2) { animation-delay: 0.15s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.45s; }
.fade-in:nth-child(5) { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
