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

:root {
  --blush: #f2ddd5;
  --blush-deep: #e8c4b8;
  --blush-pale: #faf3f0;
  --forest: #2d4a3e;
  --forest-light: #3d6355;
  --gold: #b8893a;
  --gold-light: #d4a75a;
  --white: #ffffff;
  --black: #1a1a1a;
  --text: #2c2c2c;
  --text-muted: #7a6f6a;
}

html { scroll-behavior: smooth; }

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

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,137,58,0.15);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--forest);
  text-transform: uppercase;
  text-decoration: none;
}

.wordmark-diamond {
  font-size: 0.55em;
  vertical-align: middle;
  display: inline-block;
}

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

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-book {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-book:hover { background: var(--forest-light); }

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 9rem 2rem 4rem;
  text-align: center;
  background: var(--blush-pale);
  border-bottom: 1px solid rgba(184,137,58,0.12);
}

.page-header-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---- UTILITIES ---- */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 2.5rem;
  opacity: 0.6;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--forest-light); }

.btn-secondary {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }

.btn-light {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s;
}
.btn-light:hover { background: var(--blush-pale); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--forest);
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- BOOK CTA SECTION ---- */
.book-cta {
  background: var(--forest);
  text-align: center;
  padding: 6rem 2rem;
}
.book-cta .section-heading { color: var(--white); }
.book-cta .section-label { color: var(--blush-deep); }
.book-cta .section-sub { color: rgba(255,255,255,0.65); }
.book-cta .gold-line { background: rgba(255,255,255,0.25); }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: var(--blush);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 400;
  display: block;
}

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

.footer-nav a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blush); }

.footer-info {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  line-height: 2.2;
}

.footer-info a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover { color: var(--blush); }

.footer-info strong {
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.footer-info strong a { color: rgba(255,255,255,0.7); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.25rem; }
}

/* ---- FLORAL BAND ---- */
.floral-band {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  display: block;
}

.floral-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 8s ease;
}

.floral-band:hover img { transform: scale(1.04); }

.floral-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

/* Diamond accents in wordmark */
.nav-wordmark {
  letter-spacing: 0.2em;
}
