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

:root {
  --teal-dark:   #6cc5b9;
  --teal-mid:    #8ad4c9;
  --teal-light:  #b4e5dd;
  --teal-pale:   #d9f2ee;
  --lilac:       #a48fc9;
  --lilac-soft:  #cbbde0;
  --lilac-pale:  #efeaf7;
  --teal-text:   #1f7f74;
  --sand:        #d9c9ab;
  --sand-light:  #f0e8d8;
  --cream:       #f7f2e7;
  --off-white:   #fbf9f4;
  --white:       #ffffff;
  --ink:         #3d3a45;
  --ink-soft:    #5c5766;
  --ink-muted:   #948e9e;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --serif-sc:    'Cormorant SC', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Section Base ─────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-light  { background: var(--off-white); }
.section-cream  { background: var(--cream); }
.section-teal   { background: linear-gradient(160deg, #8ad4c9 0%, #b4e5dd 55%, #d3e3ef 100%); }
.section-lilac  { background: var(--lilac-pale); }
.section-sand   { background: var(--cream); }

/* ─── Section Labels ───────────────────────────── */
.section-label {
  font-family: var(--serif-sc);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 1.25rem;
  display: block;
}
.section-label.light { color: var(--white); font-weight: 500; text-shadow: 0 1px 6px rgba(60,90,85,0.3); }

/* ─── Headings ─────────────────────────────────── */
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
h2.light { color: var(--white); font-weight: 500; text-shadow: 0 1px 12px rgba(60,90,85,0.3); }

h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

/* ─── Body Text ────────────────────────────────── */
.body-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.body-text.light { color: var(--white); font-weight: 400; text-shadow: 0 1px 8px rgba(60,90,85,0.3); }
.body-text.center-text { text-align: center; }
.body-text.sub { font-style: italic; margin-bottom: 2.5rem; }

/* ─── Buttons ──────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  background: var(--white);
  color: var(--teal-text);
  font-family: var(--serif-sc);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 4px 24px rgba(0,0,0,0.16);
}

.btn-teal {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  background: var(--teal-text);
  color: var(--white);
  font-family: var(--serif-sc);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(46,92,82,0.25);
  margin-top: 0.5rem;
}
.btn-teal:hover {
  background: var(--teal-mid);
  box-shadow: 0 4px 28px rgba(46,92,82,0.35);
}

/* ─── Photo Frames ─────────────────────────────── */
.photo-frame {
  margin: 2.5rem auto 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(164,143,201,0.25);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(120,100,160,0.16);
}

.photo-frame img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.photo-wide   { max-width: 760px; }

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 880px;
  margin: 2.5rem auto 0;
}
.photo-pair .photo-frame { margin: 0; }
.photo-pair .photo-frame img { aspect-ratio: 3 / 2; object-fit: cover; }
.photo-medium { max-width: 560px; }
.photo-small  { max-width: 420px; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════ */
/* HERO                                            */
/* ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(165deg, #cbbde0 0%, #b9d8dd 30%, #8ad4c9 65%, #6cc5b9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 2rem 6rem;
}

.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%,
    rgba(255,255,240,0.22) 0%,
    rgba(200,230,220,0.10) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-eyebrow {
  font-family: var(--serif-sc);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(31,90,82,0.55), 0 2px 12px rgba(31,90,82,0.4);
}

.hero-title {
  font-family: var(--serif-sc);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(50,80,75,0.45);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(60,90,85,0.35);
}

.hero-meta {
  font-family: var(--serif-sc);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(31,90,82,0.55), 0 2px 12px rgba(31,90,82,0.4);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta .dot { opacity: 0.4; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-sc);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(60,90,85,0.35);
  text-transform: uppercase;
  animation: fadeUpDown 2.5s ease-in-out infinite;
}

@keyframes fadeUpDown {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

/* ═══════════════════════════════════════════════ */
/* INVITATION                                      */
/* ═══════════════════════════════════════════════ */
.invitation .container { text-align: left; }
.invitation h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }

/* ═══════════════════════════════════════════════ */
/* CARRY HOME CARDS                                */
/* ═══════════════════════════════════════════════ */
.carry-home { text-align: center; }
.carry-home h2 { text-align: center; }

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2.5rem 1.75rem;
  text-align: center;
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--teal-mid);
  opacity: 0.8;
}

.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); font-weight: 300; }

/* ═══════════════════════════════════════════════ */
/* CHECKLIST                                       */
/* ═══════════════════════════════════════════════ */
.checklist {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

.check {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-text);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.checklist strong { color: var(--ink); font-weight: 500; }

/* ═══════════════════════════════════════════════ */
/* DAY IN THE LIFE                                 */
/* ═══════════════════════════════════════════════ */
.day-life { text-align: center; }
.day-life h2, .day-life .body-text { text-align: center; }

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem auto 0;
  max-width: 900px;
}

.day-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px solid rgba(58,183,201,0.15);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left;
}

.day-icon {
  font-size: 1.25rem;
  color: var(--teal-text);
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.day-closer {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-muted);
  margin-top: 2rem;
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 640px) {
  .day-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════ */
/* HOST                                            */
/* ═══════════════════════════════════════════════ */
.host { text-align: center; }

.host-inner { display: flex; flex-direction: column; align-items: center; }

.host-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 30% 18%;
  border: 4px solid var(--white);
  box-shadow: 0 6px 28px rgba(120,100,160,0.22);
  margin-bottom: 1.5rem;
}

.host h2, .host .body-text { text-align: center; }
.host .body-text { max-width: 580px; }

.host-sig {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════ */
/* TESTIMONIALS                                    */
/* ═══════════════════════════════════════════════ */
.testimonials { text-align: center; }
.testimonials h2 { text-align: center; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial {
  background: var(--cream);
  border-top: 2px solid var(--sand);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  text-align: left;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1rem;
}

.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-frame {
  background: var(--white);
  padding: 0.6rem;
  border: 1px solid var(--lilac-pale);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(60,90,85,0.12);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 2px;
}

.testimonial cite {
  font-family: var(--serif-sc);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--teal-text);
  font-style: normal;
  display: block;
}

/* ═══════════════════════════════════════════════ */
/* INTIMATE BY DESIGN                              */
/* ═══════════════════════════════════════════════ */
.intimate { text-align: center; }
.intimate h2 { text-align: center; }

.intimate-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 500;
  color: var(--teal-text);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 0;
}

.intimate h2 {
  position: relative;
  z-index: 1;
}

.intimate .section-label.light { color: var(--teal-text); text-shadow: none; }
.intimate h2.light { color: var(--ink); text-shadow: none; font-weight: 600; }
.intimate .body-text.light { color: var(--ink-soft); text-shadow: none; font-weight: 400; max-width: 620px; margin-left: auto; margin-right: auto; }

.details-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(31,127,116,0.25);
  padding-top: 2.5rem;
}

.detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.detail-label {
  font-family: var(--serif-sc);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--teal-text);
  font-weight: 600;
  text-transform: uppercase;
}

.detail-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════ */
/* APPLY CTA                                       */
/* ═══════════════════════════════════════════════ */
.apply { text-align: center; }
.apply h2, .apply .body-text { text-align: center; }

.apply-note {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 1.25rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════ */
/* FAQ                                             */
/* ═══════════════════════════════════════════════ */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(46,92,82,0.12);
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-item:first-child { border-top: 1px solid rgba(46,92,82,0.12); }

.faq-item summary {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal-text);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════ */
/* FOOTER                                          */
/* ═══════════════════════════════════════════════ */
.footer {
  background: linear-gradient(165deg, #cbbde0 0%, #b9d8dd 30%, #8ad4c9 65%, #6cc5b9 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

.footer-title {
  font-family: var(--serif-sc);
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 6px rgba(31,90,82,0.5), 0 4px 20px rgba(31,90,82,0.35);
}

.footer-sub {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 3px rgba(31,90,82,0.55), 0 2px 12px rgba(31,90,82,0.4);
}

.footer-meta {
  font-family: var(--serif-sc);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(31,90,82,0.55), 0 2px 12px rgba(31,90,82,0.4);
  margin-top: 1.5rem;
  text-transform: uppercase;
}

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 5rem; }
  .cards-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .video-testimonials { grid-template-columns: 1fr; }
  .photo-pair { grid-template-columns: 1fr; }
  .details-row { grid-template-columns: repeat(2, 1fr); }
  .day-grid { grid-template-columns: repeat(2, 1fr); }
}
