/* ===================================
   IN HER HONOR — Landing Page Styles
   Brand: RemembranceCo / In Her Honor Retreat
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FBF7F0;
  --gold: #C9A06A;
  --gold-light: #E8D5B0;
  --gold-dark: #A07840;
  --rose: #B87E6E;
  --rose-light: #D4B8A8;
  --teal: #3D5A5A;
  --teal-light: #5A8080;
  --navy: #1E2E2E;
  --warm-white: #FDFAF6;
  --text-dark: #2A2320;
  --text-mid: #6B5E56;
  --text-light: #9C8E87;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --max-w: 1160px;
  --section-pad: clamp(72px, 10vw, 120px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--warm-white);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

/* ===================================
   NAV
   =================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(160deg, #0f1e1e 0%, #1E3A3A 40%, #2D5555 70%, #3A6868 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px, 10vh, 120px) clamp(32px, 6vw, 80px) clamp(60px, 8vh, 100px);
  padding-left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.08;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.hero-body {
  margin-bottom: 40px;
}

.hero-body p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--rose-light);
  line-height: 1.6;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  opacity: 0.8;
  flex-wrap: wrap;
}

.hero-detail-divider {
  color: var(--gold);
  opacity: 0.5;
}

/* --- Hero Visual (right panel) --- */
.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-ocean-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 60% 50%, rgba(74,158,158,0.4) 0%, transparent 70%),
    linear-gradient(180deg, #1a4a4a 0%, #2a6868 30%, #3a9090 60%, #c9a06a 90%, #d4845a 100%);
  animation: oceanShift 12s ease-in-out infinite alternate;
}

.hero-sun {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: clamp(120px, 20vw, 220px);
  height: clamp(120px, 20vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,200,120,0.9) 0%, rgba(220,160,80,0.5) 40%, transparent 70%);
  filter: blur(2px);
  animation: sunPulse 8s ease-in-out infinite alternate;
}

@keyframes oceanShift {
  from { filter: hue-rotate(0deg) brightness(1); }
  to   { filter: hue-rotate(10deg) brightness(1.05); }
}

@keyframes sunPulse {
  from { transform: scale(1); opacity: 0.85; }
  to   { transform: scale(1.06); opacity: 1; }
}

/* ===================================
   MANIFESTO
   =================================== */
.manifesto {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 48px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
  line-height: 1.4;
  margin-bottom: 52px;
  border: none;
  padding: 0;
}

.manifesto-body p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
}

.manifesto-body em {
  font-style: italic;
  color: var(--text-dark);
}

/* ===================================
   THE DAYS
   =================================== */
.days {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  background: var(--warm-white);
}

.days-header {
  max-width: var(--max-w);
  margin: 0 auto 72px;
}

.days-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.days-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--navy);
}

.days-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-light);
}

.day-card {
  background: var(--warm-white);
  padding: 48px 44px;
  transition: background 0.3s ease;
}

.day-card:hover {
  background: #f8f4ee;
}

.day-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.day-theme {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}

.day-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.day-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================
   WHAT'S INCLUDED
   =================================== */
.included {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  background: var(--cream);
}

.included-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.included-header {
  position: sticky;
  top: 100px;
}

.included-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.included-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.included-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-light);
}

.included-item:last-child {
  border-bottom: none;
}

.included-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-top: 2px;
}

.included-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
}

.included-text strong {
  font-weight: 500;
  color: var(--navy);
}

/* ===================================
   DESTINATION
   =================================== */
.destination {
  position: relative;
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  overflow: hidden;
  background: linear-gradient(160deg, #1a3535 0%, #243e3e 50%, #1a3535 100%);
}

.destination-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(60,140,140,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,160,106,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.destination-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.dest-text {
  padding-top: 8px;
}

.dest-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.dest-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 32px;
}

.dest-body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--rose-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.dest-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,160,106,0.2);
  border-radius: 2px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.dest-detail-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.dest-detail-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.3;
}

/* ===================================
   PRICING
   =================================== */
.pricing {
  padding: clamp(64px, 8vw, 96px) clamp(24px, 6vw, 80px);
  text-align: center;
  background: var(--warm-white);
  border-top: 1px solid var(--gold-light);
}

.pricing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.pricing-note {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-limit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--gold-light);
  display: inline-block;
  margin-top: 20px;
}

/* ===================================
   DEPOSIT BUTTON
   =================================== */
.btn-deposit {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--gold);
  padding: 18px 40px;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn-deposit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-deposit:active {
  transform: translateY(0);
}

/* ===================================
   CLOSING
   =================================== */
.closing {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  background: var(--cream);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 52px;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
  line-height: 1.4;
  margin-bottom: 40px;
  border: none;
  padding: 0;
}

.closing-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.closing-cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-light);
}

.closing-cta-detail {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.03em;
  margin-top: 16px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  padding: 64px clamp(24px, 6vw, 80px) 48px;
  background: var(--navy);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--rose-light);
  margin-bottom: 24px;
  opacity: 0.8;
}

.footer-info {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-divider {
  color: var(--gold);
  opacity: 0.4;
}

.footer-note {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-light);
  opacity: 0.4;
  letter-spacing: 0.06em;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    padding: 140px 32px 80px;
  }

  .included-inner {
    grid-template-columns: 1fr;
  }

  .included-header {
    position: static;
  }

  .destination-inner {
    grid-template-columns: 1fr;
  }

  .dest-details {
    grid-template-columns: 1fr 1fr;
  }

  .days-grid {
    grid-template-columns: 1fr;
  }

  .nav-tagline {
    display: none;
  }
}

@media (max-width: 600px) {
  .dest-details {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .site-nav {
    padding: 16px 20px;
  }
}