/* =====================================================
   Jordan & Emily · Mallorca 2026
   Editorial Mediterranean — sun-bleached, slow, refined
   ===================================================== */

:root {
  /* palette */
  --cream:        #F5EFE6;
  --cream-deep:   #ECE3D2;
  --ivory:        #FBF7EE;
  --terracotta:   #C97B5C;
  --terracotta-d: #A05F44;
  --terracotta-l: #E0A98D;
  --olive:        #7A8B6B;
  --olive-d:      #5C6E4F;
  --ink:          #2C2C2C;
  --ink-soft:     #4A4842;
  --stone:        #8C8579;
  --hairline:     rgba(44, 44, 44, 0.14);
  --hairline-l:   rgba(44, 44, 44, 0.08);

  /* type */
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body:    "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --maxw:   1280px;
  --maxw-n: 880px;
  --pad-x:  clamp(20px, 5vw, 56px);

  /* motion */
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ----- utility colour helpers used as Tailwind-style class hints ----- */
.bg-cream { background: var(--cream); }
.text-ink { color: var(--ink); }

/* =====================================================
   Grain overlay
   ===================================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.13  0 0 0 0 0.10  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =====================================================
   Typography primitives
   ===================================================== */
.overline {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin: 0 0 14px;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-d);
}
.display--sm {
  font-size: clamp(28px, 4vw, 44px);
}

.section-head,
.section-subhead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.section-head__lede {
  margin: 24px auto 0;
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--ink-soft);
  max-width: 560px;
}
.section-subhead {
  margin-top: 100px;
  margin-bottom: 40px;
}

/* =====================================================
   Layout shell
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow {
  max-width: var(--maxw-n);
}

.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.section--details { background: var(--cream); }
.section--travel  { background: var(--ivory); }
.section--dress   { background: var(--cream-deep); }
.section--faq     { background: var(--cream); }

/* =====================================================
   NAV
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
              padding 0.4s var(--ease), backdrop-filter 0.45s var(--ease);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--hairline-l);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.nav-mark__letters {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav-mark__letters .amp {
  color: var(--terracotta);
  margin: 0 0.05em;
}
.nav-mark__sub {
  font-family: var(--body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--stone);
}

.site-nav:not(.is-scrolled) .nav-mark__letters,
.site-nav:not(.is-scrolled) .nav-mark__sub,
.site-nav:not(.is-scrolled) .nav-links a {
  color: var(--ivory);
  text-shadow: 0 1px 16px rgba(0,0,0,0.25);
}
.site-nav:not(.is-scrolled) .nav-mark__letters .amp {
  color: var(--terracotta-l);
}
.site-nav:not(.is-scrolled) .nav-toggle span {
  background: var(--ivory);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-rsvp {
  padding: 9px 18px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
  letter-spacing: 0.22em !important;
}
.nav-rsvp::after { display: none; }
.nav-rsvp:hover {
  background: var(--terracotta);
  color: var(--ivory) !important;
  border-color: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 18px; margin-left: 4px; }
.nav-toggle span:nth-child(3) { width: 22px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 110;
  transform: translateY(-101%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.nav-drawer.is-open {
  transform: translateY(0);
}
.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px var(--pad-x) 40px;
}
.nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer__close {
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  padding: 4px 8px;
}
.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: auto 0;
  align-items: flex-start;
}
.nav-drawer__links a {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  color: var(--ink);
  padding: 8px 0;
  letter-spacing: -0.01em;
  position: relative;
}
.nav-drawer__links a:hover {
  font-style: italic;
  color: var(--terracotta-d);
}
.nav-drawer__foot {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-l);
}
.date-stack { letter-spacing: 0.4em; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ivory);
  padding: 120px var(--pad-x) 90px;
  overflow: hidden;
  isolation: isolate;
  gap: clamp(32px, 5vh, 60px);
}

@media (max-width: 720px) {
  .hero {
    min-height: 88svh;
    padding: 110px var(--pad-x) 80px;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 30s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,16,0.32) 0%, rgba(20,18,16,0.12) 35%, rgba(20,18,16,0.55) 100%),
    radial-gradient(120% 80% at 50% 40%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
}

/* nothing here - kept clean to avoid overlap with countdown */

/* hero side rail */
.hero-rail {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 2;
}
.rail-line {
  width: 1px;
  height: 80px;
  background: rgba(251, 247, 238, 0.55);
}
.rail-date {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
}
@media (max-width: 720px) {
  .hero-rail { display: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: heroFade 1.6s var(--ease) both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .overline {
  color: var(--terracotta-l);
  margin: 0 0 36px;
}

.hero-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 13vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 18px);
}
.hero-title__amp {
  color: var(--terracotta-l);
  font-size: 0.7em;
  font-style: italic;
  margin: 0 0.1em;
  transform: translateY(-0.05em);
}

.hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0.005em;
  text-transform: none;
  line-height: 1.45;
  margin: 36px auto 0;
  max-width: 560px;
  color: rgba(251, 247, 238, 0.96);
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 36px;
  color: var(--terracotta-l);
}
.hero-rule span {
  display: block;
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero-intro {
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 52px;
  color: rgba(251, 247, 238, 0.96);
}

/* buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ivory);
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-primary::after {
  content: "→";
  font-family: var(--body);
  letter-spacing: 0;
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn-primary:hover::after {
  transform: translateX(4px);
}
.btn-primary--solid {
  background: var(--terracotta);
  color: var(--ivory);
  border-color: var(--terracotta);
}
.btn-primary--solid:hover {
  background: var(--terracotta-d);
  color: var(--ivory);
  border-color: var(--terracotta-d);
}

/* countdown */
.countdown {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
  color: var(--ivory);
}
.countdown__inner {
  border-top: 1px solid rgba(251, 247, 238, 0.35);
  border-bottom: 1px solid rgba(251, 247, 238, 0.35);
  padding: 26px 12px;
}
.countdown__label,
.countdown__sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.8);
}
.countdown__label { margin-bottom: 18px; }
.countdown__sub   { margin-top: 18px; }

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.count {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.count + .count::before {
  content: "·";
  position: absolute;
  left: -8px;
  top: 0;
  color: rgba(251, 247, 238, 0.6);
  font-size: 24px;
}
.count__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.count__lbl {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.78);
}

@media (max-width: 720px) {
  .count + .count::before { display: none; }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ivory);
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue__line {
  width: 1px;
  height: 40px;
  background: rgba(251, 247, 238, 0.6);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--ivory);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(300%); }
}
.scroll-cue__word {
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .scroll-cue { display: none; }
}

/* =====================================================
   COUPLE INTRO
   ===================================================== */
.couple {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
}
.couple__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.couple__img {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.couple__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.couple__img:hover img { transform: scale(1.04); }
.couple__img--a { transform: translateY(-30px); }
.couple__img--b { transform: translateY(30px); }

.couple__text {
  text-align: center;
  padding: 0 8px;
}
.couple__date {
  font-style: normal;
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: 0.02em;
  margin: 18px 0 0;
  font-variant-numeric: tabular-nums;
}
.couple__date em {
  font-style: italic;
  color: var(--terracotta-d);
  margin: 0 0.04em;
}
.couple__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
  color: var(--terracotta);
}
.couple__rule span {
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.couple__tag {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}

@media (max-width: 880px) {
  .couple__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .couple__text {
    grid-column: 1 / -1;
    order: -1;
    padding-bottom: 12px;
  }
  .couple__img--a,
  .couple__img--b {
    transform: none;
  }
}

/* =====================================================
   DETAILS SECTION
   ===================================================== */
.info-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}
.info-grid__item {
  text-align: left;
}
.info-grid__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.info-grid__title em { font-style: italic; color: var(--terracotta-d); }
.info-grid__body {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}
.info-grid__map {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.info-grid__divider {
  width: 1px;
  height: 100%;
  min-height: 120px;
  background: var(--hairline);
  justify-self: center;
}

@media (max-width: 880px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-grid__divider {
    width: 60px;
    height: 1px;
    min-height: 0;
    margin: 8px 0;
  }
}

/* photo strip */
.photo-strip {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  grid-template-rows: 380px;
  gap: 18px;
}
.photo-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream-deep);
}
.photo-strip__tall {
  border-top-left-radius: 240px;
  border-top-right-radius: 240px;
}
.photo-strip__wide  { transform: translateY(40px); }
.photo-strip__small { transform: translateY(-20px); }

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.photo-strip figure:hover img { transform: scale(1.04); }

.photo-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

@media (max-width: 880px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .photo-strip__tall { grid-column: 1 / -1; grid-row: 1; border-radius: 0; }
  .photo-strip__wide  { transform: none; }
  .photo-strip__small { transform: none; }
}

/* timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--hairline);
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 36px 1fr;
  align-items: start;
  padding: 24px 0;
}
.timeline__time {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--terracotta-d);
  line-height: 1;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.timeline__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--terracotta);
  margin-top: 8px;
  position: relative;
  z-index: 1;
  justify-self: center;
}
.timeline__item:hover .timeline__dot {
  background: var(--terracotta);
}
.timeline__body h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 6px;
}
.timeline__body p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

@media (max-width: 600px) {
  .timeline::before { left: 60px; }
  .timeline__item {
    grid-template-columns: 56px 22px 1fr;
    gap: 6px;
  }
  .timeline__time { font-size: 20px; }
}

/* ornament */
.ornament {
  display: flex;
  justify-content: center;
  margin: 100px 0 60px;
  color: var(--olive);
  opacity: 0.7;
}

/* day 2 pool card */
.pool-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--hairline-l);
  overflow: hidden;
  margin-top: 20px;
}
.pool-card__media {
  position: relative;
  min-height: 440px;
}
.pool-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.pool-card__body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pool-card__body p {
  max-width: 460px;
  color: var(--ink-soft);
  margin: 18px 0 28px;
  font-size: 15.5px;
}
.pool-card__meta {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--hairline-l);
  padding-top: 24px;
  margin: 0;
}
.pool-card__meta div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
}
.pool-card__meta dt {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}
.pool-card__meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .pool-card { grid-template-columns: 1fr; }
  .pool-card__media { min-height: 280px; }
}

/* =====================================================
   IMAGE BREAK
   ===================================================== */
.image-break {
  position: relative;
  height: clamp(360px, 55vh, 560px);
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.25) 0%, rgba(20,18,16,0.15) 50%, rgba(20,18,16,0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break__caption {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 24px rgba(0,0,0,0.3);
}
.image-break__caption em {
  font-style: italic;
  color: var(--terracotta-l);
}

/* =====================================================
   TRAVEL SECTION
   ===================================================== */
.travel-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.travel-card {
  padding: 44px 36px;
  border-right: 1px solid var(--hairline);
}
.travel-card:last-child { border-right: none; }
.travel-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 14px;
  line-height: 1.1;
}
.travel-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 880px) {
  .travel-grid { grid-template-columns: 1fr; }
  .travel-card { border-right: none; border-bottom: 1px solid var(--hairline); }
  .travel-card:last-child { border-bottom: none; }
}

/* hotels */
.hotels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) {
  .hotels { grid-template-columns: 1fr; gap: 56px; }
}

.hotel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.hotel__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hotel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.hotel:hover .hotel__media img { transform: scale(1.04); }

.hotel__carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hotel__track {
  display: flex;
  height: 100%;
  width: 100%;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.hotel__track::-webkit-scrollbar { display: none; }
.hotel__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}
.hotel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 2;
}
.hotel__nav--prev { left: 14px; }
.hotel__nav--next { right: 14px; }
.hotel:hover .hotel__nav { opacity: 1; }
.hotel__nav:hover { background: var(--ivory); }

.hotel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hotel__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.5);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hotel__dots span.is-active {
  background: var(--ivory);
  transform: scale(1.3);
}

.hotel__body {
  padding: 26px 4px 0;
}
.hotel__body h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 12px;
  line-height: 1.1;
}
.hotel__body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  line-height: 1.65;
}

/* taxi callout */
.callout {
  margin: clamp(60px, 8vw, 100px) auto 80px;
  max-width: 960px;
  background: var(--cream);
  border: 1px solid var(--hairline-l);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 60px);
  padding: clamp(36px, 5vw, 60px);
  position: relative;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--terracotta);
}
.callout__head .display {
  margin-top: 12px;
}
.callout__body p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.callout__body p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .callout { grid-template-columns: 1fr; padding: 32px 28px; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 14px; color: var(--ink); }
.link-arrow:hover span { transform: translateX(3px); }

/* =====================================================
   DRESS SECTION
   ===================================================== */
.dress-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .dress-grid { grid-template-columns: 1fr; gap: 64px; }
}

.dress-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--hairline-l);
  overflow: hidden;
}
.dress-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.dress-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.dress-card:hover .dress-card__media img { transform: scale(1.04); }

/* split media: two portraits side-by-side */
.dress-card__media--split {
  aspect-ratio: 16 / 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-deep);
}
.dress-card__media--split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dress-card__content {
  padding: clamp(28px, 4vw, 44px);
}
.dress-card__theme {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--olive-d);
  margin: 14px 0 28px;
}
.dress-list {
  margin: 0;
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-l);
}
.dress-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
}
.dress-list dt {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}
.dress-list dd {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
}
.dress-list dd.dont {
  color: var(--terracotta-d);
  font-style: italic;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq {
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
}
.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 6px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
  transition: transform 0.4s var(--ease);
}
.faq__icon::after {
  transform: rotate(90deg);
}
.faq__item[open] .faq__icon::after {
  transform: rotate(0deg);
}
.faq__item[open] .faq__q {
  font-style: italic;
  color: var(--terracotta-d);
}
.faq__a {
  overflow: hidden;
  padding-bottom: 26px;
  max-width: 700px;
  animation: faqOpen 0.5s var(--ease);
}
.faq__a p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 36px;
  position: relative;
}
.site-foot .overline { color: var(--terracotta-l); }

.foot-mark {
  text-align: center;
  margin-bottom: 64px;
}
.foot-mark__letters {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.foot-mark__letters .amp {
  color: var(--terracotta-l);
  margin: 0 0.04em;
}
.foot-mark__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 239, 230, 0.78);
  margin: 18px 0 0;
}

.foot-rule {
  height: 1px;
  background: rgba(245, 239, 230, 0.18);
  margin: 0 0 60px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr; gap: 48px; }
}
.foot-block p {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: rgba(245, 239, 230, 0.78);
  line-height: 1.65;
}
.foot-block .link-arrow {
  color: var(--terracotta-l);
}
.foot-block .link-arrow:hover {
  color: var(--cream);
}
.foot-block--date { text-align: center; }
.foot-date {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--cream);
  margin: 0 !important;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.foot-date span {
  color: var(--terracotta-l);
  margin: 0 6px;
}
.foot-date-sub {
  font-size: 11px !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta-l) !important;
  margin-top: 10px !important;
}

.foot-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.foot-nav a {
  font-size: 14px;
  color: rgba(245, 239, 230, 0.78);
  transition: color 0.3s var(--ease);
}
.foot-nav a:hover { color: var(--terracotta-l); }

.foot-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.5);
}
.foot-base p { margin: 0; }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.22s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-image { animation: none; transform: none; }
  .scroll-cue__line::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* selection */
::selection {
  background: var(--terracotta);
  color: var(--ivory);
}
