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

:root {
  --ivory:    #f9f7f4;
  --white:    #ffffff;
  --linen:    #ede8e0;
  --gold:     #a8845a;
  --gold-lt:  #c4a078;
  --ink:      #0f0e0d;
  --stone:    #857d75;
  --rule:     #d8d2c9;

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

  --max-w:    1240px;
  --pad:      5rem;
  --section-gap: 168px;
}

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

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C6A46C;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #C6A46C;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.6vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: #111111;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid #111111;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.btn:hover {
  background: #C6A769;
  border-color: #C6A769;
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(198,167,105,0.28);
}

.btn--outline {
  background: transparent;
  color: #111111;
  border-color: #111111;
}

.btn--outline:hover {
  background: #c6a27e;
  border-color: #c6a27e;
  color: #ffffff;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem var(--pad);
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #7a5c35;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.75rem;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a342e;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links a:hover { color: var(--ink); }

.nav__actions {
  display: flex;
  align-items: center;
}

.nav__cta {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  margin-right: 0.5rem;
}

.nav__cta:hover {
  background: var(--ink);
  color: var(--ivory);
}

.lang-switcher {
  background: none;
  border: none;
  border-left: 1px solid var(--rule);
  padding: 0 0 0 1.25rem;
  margin-left: 0.5rem;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a342e;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.82;
  transition: opacity 0.2s;
}

.lang-switcher:hover { opacity: 1; }

/* ─────────────────────────────────────────
   AVAILABILITY STRIP
───────────────────────────────────────── */
.avail-strip {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.875rem 2rem;
  text-align: center;
}

.avail-strip p {
  font-family: var(--sans);
  font-size: 0.575rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,247,244,0.62);
}

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

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  text-align: center;
}

.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

.stat__rule {
  width: 1px;
  height: 44px;
  background: var(--rule);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   DESTINATIONS
───────────────────────────────────────── */
.destinations {
  background: var(--ivory);
  padding: var(--section-gap) var(--pad);
}

.destinations__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.destinations__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
  align-items: end;
  margin-bottom: 4.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--rule);
}

.destinations__header .section-label {
  grid-column: 1 / -1;
  margin-bottom: 1.75rem;
}

.destinations__header .section-heading {
  align-self: start;
}

.destinations__lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.7;
  align-self: end;
  padding-bottom: 0.2rem;
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.destinations__place {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.75rem 2rem 2.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s ease;
}

.destinations__place:hover {
  background: var(--white);
}

.destinations__country {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}

.destinations__cities {
  display: block;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 2;
}

.destinations__place--more .destinations__country {
  font-style: italic;
  color: var(--gold);
}

.destinations__place--more .destinations__cities {
  color: var(--gold-lt);
  letter-spacing: 0.14em;
  text-transform: none;
  font-size: 0.6rem;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* ── Full-width background image, anchored right ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

/* White gradient — opaque on the left (text), fades right (image) */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.82) 22%,
    rgba(255,255,255,0.28) 38%,
    rgba(255,255,255,0.00) 52%
  );
}

/* ── Foreground editorial content ── */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 9rem var(--pad) 5.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top: monogram + eyebrow */
.hero__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ML monogram — bordered serif emblem */
.hero__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(168,132,90,0.38);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: border-color 0.35s;
  user-select: none;
}

.hero__monogram:hover {
  border-color: rgba(168,132,90,0.65);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.575rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3a342e;
}

/* Center: name */
.hero__name {
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__name em {
  font-style: italic;
  color: var(--gold);
}

/* Bottom: gold rule + tagline/actions row */
.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero__hline {
  display: none;
}

.hero__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: #2d2926;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.hero__scroll {
  font-size: 0.54rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.88;
  text-shadow: 0 1px 6px rgba(0,0,0,0.22), 0 2px 14px rgba(0,0,0,0.14);
}

.hero__scroll::after {
  content: '';
  width: 38px;
  height: 1px;
  background: var(--gold-lt);
  animation: scrollRule 2s ease-in-out infinite;
}

@keyframes scrollRule {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  background-image:
    linear-gradient(to right,
      rgba(10, 9, 8, 0.90) 0%,
      rgba(10, 9, 8, 0.74) 42%,
      rgba(10, 9, 8, 0.35) 68%,
      rgba(10, 9, 8, 0.10) 100%
    ),
    url('images/IMG_9499.JPG');
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
  padding: var(--section-gap) var(--pad);
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__inner {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  align-items: center;
  min-height: 680px;
}

/* ── Text column ── */
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.about__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.about__meta .section-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #C6A46C;
  margin-bottom: 0;
}

.about__meta .section-label::before {
  background: #C6A46C;
}

.about__heading {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 4.3vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #F5F5F5;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.about__heading em {
  font-style: italic;
  font-weight: 300;
  color: #C6A46C;
}

.about__body {
  font-size: 1.35rem;
  font-weight: 400;
  color: #F5F5F5;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.about__body:last-of-type {
  margin-bottom: 3rem;
}

.about__footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.42), transparent);
  border-radius: 6px;
}

.about__footer .btn--outline {
  color: rgba(249,247,244,0.92);
  border-color: rgba(249,247,244,0.45);
  background: transparent;
}

.about__footer .btn--outline:hover {
  background: #C6A46C;
  border-color: #C6A46C;
  color: #111111;
}

/* ── Stats row — full width below the split ── */
.about__stats {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 3.5rem var(--pad);
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.32);
}

.about__stats .stat__num {
  color: #ffffff;
}

.about__stats .stat__label {
  color: rgba(249,247,244,0.55);
}

.about__stats .stat__rule {
  background: rgba(255,255,255,0.14);
}

.about__credential {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C6A769;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
  background: var(--ivory);
  padding: var(--section-gap) var(--pad);
}

.services__header {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
}

.services__list {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  grid-template-columns: 64px 240px 1fr;
  gap: 0 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.45s ease, padding 0.35s ease, color 0.45s ease, border-color 0.45s ease;
}

.service-row:hover {
  background: #7a5c35;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.service-row:hover .service-row__num,
.service-row:hover .service-row__title,
.service-row:hover .service-row__desc {
  color: rgba(255, 255, 255, 0.92);
}

.service-row__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rule);
  letter-spacing: 0.1em;
}

.service-row__title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.service-row__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 2.0;
  max-width: 540px;
}

.service-row__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 540px;
}

.service-row__desc-wrap .service-row__desc {
  margin: 0;
}

.service-row--featured {
  display: grid !important;
  grid-template-columns: 340px 1fr !important;
  gap: 0 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  align-items: start;
}

.service-row__featured-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  padding-top: 0.15rem;
  width: 340px;
  min-width: 340px;
  max-width: 340px;
}

.service-row__featured-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 660px;
}

.service-row--featured .service-row__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  width: 340px;
  max-width: 340px;
  display: block;
}

.service-row--featured .service-row__num {
  color: var(--gold);
}

.service-row--featured .service-row__desc {
  line-height: 1.95;
}

/* ─────────────────────────────────────────
   BRIDAL EXPERIENCE
───────────────────────────────────────── */
.experience {
  padding: var(--section-gap) var(--pad);
  background-image:
    linear-gradient(to right,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.20) 75%,
      rgba(0,0,0,0.05) 100%),
    url('images/bridal-experience.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.experience__editorial {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6rem;
  align-items: start;
}

/* LEFT — paragraphs */
.experience__editorial-body {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 500px;
}

/* RIGHT — sticky title */
.experience__editorial-header {
  padding-top: 0.2rem;
  position: sticky;
  top: 120px;
}

.experience__editorial-header .section-label {
  color: rgba(250, 246, 240, 0.55);
}

.experience__editorial-header .section-label::before {
  background: #d4a96a;
}

.experience__title {
  font-family: var(--serif);
  font-size: clamp(2.65rem, 3.85vw, 3.85rem);
  font-weight: 600;
  line-height: 1.1;
  color: #F5F5F5;
  letter-spacing: -0.01em;
  margin-top: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.experience__editorial-p {
  font-size: 1.35rem;
  font-weight: 400;
  color: #F5F5F5;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.experience__editorial-p--lead {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: #F5F5F5;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.experience__editorial-p--closing {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: #e2b97e;
  font-size: 1.125rem;
  line-height: 1.75;
  text-shadow: 0px 2px 8px rgba(0,0,0,0.4);
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery {
  max-width: var(--max-w);
  margin: var(--section-gap) auto;
  padding: 0 var(--pad);
}

.gallery__header {
  margin-bottom: 4rem;
}

.gallery__header .section-label {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery__item {
  overflow: hidden;
  position: relative;
  background: var(--linen);
  height: 480px;
}

.gallery__item--hero {
  grid-column: span 2;
  height: 620px;
}

.gallery__item--wide {
  grid-column: span 2;
  height: 420px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,14,13,0.08);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery__item:hover::after { opacity: 0; }
.gallery__item:hover img    { transform: scale(1.04); }

.gallery__item--hero img {
  object-position: center 30%;
}

/* slot 2 — bride-2.jpg (face zoom) */
.gallery__grid > div:nth-child(2) img {
  object-position: center 30%;
}

/* slot 3 — bride-1.jpg (face zoom) */
.gallery__grid > div:nth-child(3) img {
  object-position: center 30%;
}

/* slot 5 — bride-6.jpg (window, face-focused) */
.gallery__grid > div:nth-child(5) img {
  object-position: center 40%;
}

/* slot 4 — bride-7.jpg (wide) */
.gallery__grid > div:nth-child(4) img {
  object-position: center 30%;
}

/* slot 6 — bride-5.jpg (bouquet) */
.gallery__grid > div:nth-child(6) img {
  object-position: center 10%;
}

/* ─────────────────────────────────────────
   QUOTE
───────────────────────────────────────── */
.quote {
  text-align: center;
  padding: calc(var(--section-gap) * 1.1) var(--pad);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.6;
  max-width: 860px;
}

.quote cite {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #C6A769;
  margin-top: 0.75rem;
}

/* ─────────────────────────────────────────
   FLOATING CTA
───────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  box-shadow: 0 8px 32px rgba(15,14,13,0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease,
              background 0.25s, color 0.25s, border-color 0.25s;
}

.float-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact {
  background: var(--ink);
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── Panels ── */
.contact__panel {
  padding: var(--section-gap) var(--pad);
}

.contact__panel--dark {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact__panel--light {
  background: var(--ivory);
  display: flex;
  align-items: flex-start;
}

/* ── Left panel content ── */
.contact__label::before { background: var(--gold); }
.contact__label {
  color: #C6A769;
  font-size: 1rem;
  letter-spacing: 0.44em;
  font-weight: 500;
}

.contact__heading {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.contact__heading em {
  font-style: italic;
  color: #C6A769;
}

.contact__body {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1.6vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(249,247,244,0.92);
  line-height: 2.0;
  max-width: 460px;
}

.contact__note {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(249,247,244,0.68);
  line-height: 1.95;
  max-width: 420px;
  border-left: 1px solid rgba(198,167,105,0.45);
  padding-left: 1.25rem;
}

.contact__avail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact__avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(168,132,90,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(168,132,90,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(168,132,90,0); }
}

.contact__avail span:last-child {
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
  padding-top: 0.5rem;
}

.contact__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.step__num {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(168,132,90,0.36);
  letter-spacing: 0.08em;
}

.step__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step__body h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(249,247,244,0.92);
  line-height: 1.25;
}

.step__body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(249,247,244,0.60);
  line-height: 1.82;
}

/* ── Right panel: form ── */
.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #111111;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-optional {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.65rem;
  color: var(--rule);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #b5aca2;
  padding: 0.95rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: #1a1714;
  outline: none;
  transition: border-color 0.25s;
  resize: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(80,70,62,0.65);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.wedding-date-group {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.wedding-date-group select {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #b5aca2;
  padding: 0.95rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: #1a1714;
  outline: none;
  cursor: pointer;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s;
}

.wedding-date-group select:focus {
  border-bottom-color: var(--gold);
}

.wedding-date-group select option {
  color: #1a1714;
  background: var(--ivory);
}

.wedding-date-group select:invalid,
.wedding-date-group select option[value=""] {
  color: rgba(80,70,62,0.55);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.contact__submit {
  align-self: flex-start;
}

.contact__privacy {
  font-size: 0.54rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rule);
  font-weight: 300;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  padding: 5rem var(--pad) 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #111;
  margin-bottom: 0;
}

.footer__tagline {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: #555;
  letter-spacing: 0.03em;
}

.footer__copy {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
  margin-top: 0.25rem;
}

.footer__social {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333;
}

.footer__social a {
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.footer__social a:hover { color: #C6A769; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 3.25rem; }
  .service-row { grid-template-columns: 48px 220px 1fr; gap: 0 2rem; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .destinations__grid { grid-template-columns: repeat(2, 1fr); }
  .destinations__header { grid-template-columns: 1fr; gap: 1.5rem 0; }
}

@media (max-width: 768px) {
  :root { --section-gap: 88px; --pad: 1.75rem; }

  .nav__links { gap: 1.5rem; }
  .nav__links a { font-size: 0.65rem; }

  .hero__inner { padding: 7.5rem var(--pad) 4.5rem; }
  .hero__bottom-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero__actions { align-items: flex-start; }

  .about__inner { grid-template-columns: 1fr; min-height: auto; }
  .about { min-height: auto; background-position: 70% center; }
  .about__stats { padding: 3rem var(--pad); }

  .services__list { border-top: 1px solid var(--rule); }
  .service-row { grid-template-columns: 1fr; gap: 0.75rem; padding: 2.25rem 0; }
  .service-row:hover { padding-left: 0; padding-right: 0; margin: 0; background: transparent; }
  .service-row__num { display: none; }

  .gallery__grid { gap: 0.75rem; }
  .gallery__item { height: 340px; }
  .gallery__item--hero { height: 440px; }
  .gallery__item--wide { height: 300px; }

  .contact__split { grid-template-columns: 1fr; }
  .contact__steps { margin-top: 0; }
  .form-row { grid-template-columns: 1fr; gap: 2.25rem; }

  .stats__inner { flex-wrap: wrap; gap: 2rem 0; }
  .destinations__grid { grid-template-columns: 1fr 1fr; }
  .stat { min-width: 50%; }
  .stat__rule { display: none; }


  .avail-strip__dot { display: none; }
  .avail-strip p { font-size: 0.52rem; }

  .float-cta { bottom: 1.25rem; right: 1.25rem; padding: 0.8rem 1.5rem; }

  .nav__cta { display: none; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--hero, .gallery__item--wide { grid-column: auto; height: 300px; }
  .gallery__item { height: 300px; }
}
