/* =========================================================
   Lumière — Romantic Event Studio
   Palette inspired by mindyweiss.com:
   #F4C6DA (pink) · #CEE4E8 (blue) · #93AE76 (sage)
   #215D64 (teal) · #393C42 (ink) · #EC705E (coral)
   ========================================================= */

:root {
  --bg:        #faf6f1;   /* warm cream */
  --bg-soft:   #ffffff;
  --bg-warm:   #f4ede4;   /* darker cream */
  --bg-pink:   #fbecf2;   /* whisper pink */
  --bg-blue:   #eef5f6;   /* whisper blue */

  --ink:       #2a2c33;
  --ink-soft:  #393C42;
  --muted:     rgba(57, 60, 66, 0.58);
  --hairline:  rgba(57, 60, 66, 0.10);
  --line:      rgba(57, 60, 66, 0.14);
  --line-strong: rgba(57, 60, 66, 0.22);

  --pink:      #F4C6DA;
  --pink-deep: #e9a8c4;
  --blue:      #CEE4E8;
  --sage:      #93AE76;
  --teal:      #215D64;
  --teal-deep: #174149;
  --coral:     #EC705E;

  --grad-soft: linear-gradient(135deg, #F4C6DA 0%, #CEE4E8 100%);
  --grad-warm: linear-gradient(135deg, #F4C6DA 0%, #EC705E 100%);
  --grad-hero: linear-gradient(180deg, rgba(250, 246, 241, 0.15) 0%, rgba(250, 246, 241, 0.55) 55%, rgba(250, 246, 241, 0.98) 100%);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease:  cubic-bezier(0.6, 0.05, 0.1, 0.95);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; color: var(--teal); font-family: var(--serif); font-weight: 400; }

::selection { background: var(--pink); color: var(--teal-deep); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

.section { padding: 140px 0; position: relative; }
@media (max-width: 900px) { .section { padding: 90px 0; } }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor__dot {
  position: fixed; width: 6px; height: 6px; background: #fff;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out), width 0.25s, height 0.25s;
}
.cursor__ring {
  position: fixed; width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, opacity 0.3s;
}
.cursor.is-hover .cursor__dot { width: 0; height: 0; }
.cursor.is-hover .cursor__ring { width: 60px; height: 60px; border-color: #fff; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__mark {
  font-family: var(--serif); font-size: 56px; color: var(--teal);
  margin-bottom: 18px; letter-spacing: 0.04em;
}
.loader__bar { width: 180px; height: 1px; background: var(--line); overflow: hidden; }
.loader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-soft);
  animation: load 1.2s var(--ease-out) forwards;
}
@keyframes load { to { width: 100%; } }

/* ---------- Noise (subtle on light bg) ---------- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 14px 32px;
  border-bottom-color: var(--hairline);
}
@media (max-width: 720px) { .header, .header.is-scrolled { padding: 16px 22px; } }

.header__brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); color: var(--ink); }
.header__mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px;
  background: var(--teal); color: #fff;
  letter-spacing: 0;
}
.header__name { font-size: 21px; letter-spacing: 0.04em; font-weight: 500; color: var(--ink); }

.nav__list { display: flex; gap: 36px; list-style: none; }
.nav__link {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color 0.3s var(--ease-out); font-weight: 500;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--teal); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 1000px) { .nav { display: none; } }

.header__cta { padding: 12px 18px; font-size: 11px; }
@media (max-width: 1000px) { .header__cta { display: none; } }

.menu-toggle {
  display: none; width: 36px; height: 36px;
  position: relative; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1000px) { .menu-toggle { display: flex; } }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 90;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 24px; padding: 80px 30px 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.5s var(--ease-out), visibility 0.5s, transform 0.5s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a { font-family: var(--serif); font-size: 38px; color: var(--ink); font-weight: 400; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu__foot { margin-top: 40px; color: var(--muted); font-size: 13px; text-align: center; }
.mobile-menu__foot p { letter-spacing: 0.08em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 60px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), color 0.4s, box-shadow 0.4s, border-color 0.4s;
  position: relative; overflow: hidden;
}
.btn svg { transition: transform 0.4s var(--ease-out); }
.btn--solid {
  background: var(--ink); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(57, 60, 66, 0.45);
}
.btn--solid:hover {
  background: var(--teal); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(33, 93, 100, 0.45);
}
.btn--solid:hover svg { transform: translateX(4px); }
.btn--ghost {
  color: var(--ink); border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); background: #fff; }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn--text {
  padding: 14px 4px; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-strong); border-radius: 0;
}
.btn--text:hover { color: var(--teal); border-bottom-color: var(--teal); }
.btn--full { width: 100%; justify-content: center; padding: 18px 24px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); position: relative; font-weight: 500;
}
.link-arrow span { position: relative; }
.link-arrow span::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--ink); transform: scaleX(1); transform-origin: right;
  transition: transform 0.5s var(--ease-out), background 0.4s;
}
.link-arrow:hover { color: var(--teal); }
.link-arrow:hover span::after { background: var(--teal); transform: scaleX(0); transform-origin: left; }
.link-arrow svg { transition: transform 0.4s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  background: var(--bg);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease-out) forwards;
  filter: brightness(1.05) saturate(0.95);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg-veil {
  position: absolute; inset: 0;
  background: var(--grad-hero),
              radial-gradient(ellipse at 80% 20%, rgba(244, 198, 218, 0.45) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 90%, rgba(206, 228, 232, 0.4) 0%, transparent 55%);
}

.hero__inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 140px 32px 160px;
  position: relative;
}
@media (max-width: 720px) { .hero__inner { padding: 120px 22px 140px; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 36px; font-weight: 500;
  padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 60px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 10px rgba(236, 112, 94, 0.7);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.96; letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 1100px;
  color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__inner {
  display: block; transform: translateY(110%);
  animation: rise 1.2s var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) .line__inner { animation-delay: 0.15s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: 0.3s; }
@keyframes rise { to { transform: translateY(0); } }

.hero__lede {
  max-width: 540px; color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px); margin-bottom: 44px;
}

.hero__cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-bottom: 80px; }

.hero__meta {
  display: flex; gap: 64px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero__meta-item .num {
  font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--teal);
}
.hero__meta-item .lbl {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
@media (max-width: 720px) { .hero__meta { gap: 36px; } .hero__meta-item .num { font-size: 36px; } }

.hero__scroll {
  position: absolute; right: 32px; bottom: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); writing-mode: vertical-rl; font-weight: 500;
}
.hero__scroll .line-vert {
  display: block; width: 1px; height: 60px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.hero__scroll .line-vert::after {
  content: ""; position: absolute; top: -60px; left: 0; right: 0; height: 60px;
  background: var(--teal); animation: scrollLine 2.4s var(--ease-out) infinite;
}
@keyframes scrollLine { 0% { top: -60px; } 100% { top: 60px; } }
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* Marquee */
.marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 0; border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(10px);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 48px; align-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--ink-soft);
  letter-spacing: 0.16em; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee__track .sep { color: var(--coral); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: 80px; max-width: 900px; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  max-width: var(--container); margin-bottom: 80px;
}
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-head__label { justify-content: center; }
.section-head__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px; font-weight: 600;
}
.section-head__label .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
}
.section-head__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 88px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  -webkit-text-wrap: balance;
}

/* ---------- Intro ---------- */
.intro { background: var(--bg); padding-top: 180px; }
.intro__grid {
  display: grid; grid-template-columns: 200px 1fr 1fr; gap: 60px; align-items: start;
}
.intro__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); display: inline-flex; align-items: center; gap: 10px; padding-top: 18px; font-weight: 600; }
.intro__label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.intro__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 56px); line-height: 1.1; letter-spacing: -0.015em;
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.intro__body { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.intro__body p { margin-bottom: 28px; }
@media (max-width: 1000px) {
  .intro__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Services ---------- */
.services { background: var(--bg-pink); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline);
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(57, 60, 66, 0.18);
}
.service-card {
  position: relative; padding: 36px 30px 32px;
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  transition: background 0.6s var(--ease-out);
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--bg-soft);
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244, 198, 218, 0.55) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.service-card:hover { background: #fffafc; }
.service-card:hover::before { opacity: 1; }
.service-card__num {
  font-family: var(--serif); font-size: 13px;
  color: var(--coral); margin-bottom: 22px; letter-spacing: 0.1em;
  font-weight: 500;
}
.service-card__icon {
  width: 42px; height: 42px; color: var(--teal);
  margin-bottom: 18px;
  transition: transform 0.6s var(--ease-out), color 0.4s;
}
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.05); color: var(--coral); }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; margin-bottom: 10px; line-height: 1.1; color: var(--ink);
}
.service-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.service-card__more {
  display: inline-block; margin-top: 14px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  font-weight: 600;
}
.service-card:hover .service-card__more { opacity: 1; transform: translateY(0); }
@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } .service-card { min-height: auto; } }

/* ---------- Events ---------- */
.events { background: var(--bg); }
.events__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.event-card { grid-column: span 2; display: flex; flex-direction: column; gap: 18px; }
.event-card--lg { grid-column: span 2; }
.event-card__media {
  position: relative; display: block; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px -25px rgba(57, 60, 66, 0.3);
}
.event-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(57, 60, 66, 0.25) 100%);
  transition: opacity 0.5s;
}
.event-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
}
.event-card:hover .event-card__media img { transform: scale(1.06); }
.event-card__meta { padding: 6px 4px; }
.event-card .tag {
  display: inline-block; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 12px; font-weight: 600;
}
.event-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.2; margin-bottom: 12px; color: var(--ink);
  text-wrap: balance;
}
@media (max-width: 900px) {
  .events__grid { grid-template-columns: 1fr; }
  .event-card, .event-card--lg { grid-column: span 1; }
}

/* ---------- Process ---------- */
.process { background: var(--bg-blue); }
.process__list {
  list-style: none; max-width: 920px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.process__step {
  display: grid; grid-template-columns: 120px 1fr; gap: 40px;
  padding: 44px 24px; border-bottom: 1px solid var(--line);
  position: relative;
}
.process__step::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 2px; height: 0;
  background: var(--teal); transform: translateY(-50%);
  transition: height 0.6s var(--ease-out);
}
.process__step:hover::before { height: calc(100% - 32px); }

.process__num {
  font-family: var(--serif); color: var(--coral);
  font-size: 22px; letter-spacing: 0.08em; font-weight: 500;
  transition: color 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.process__step h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 38px; line-height: 1.1; margin-bottom: 10px; color: var(--ink);
  transition: transform 0.6s var(--ease-out), color 0.5s var(--ease-out);
}
.process__step p {
  color: var(--ink-soft); max-width: 580px;
  transition: transform 0.6s var(--ease-out);
  transition-delay: 0.04s;
}
.process__step:hover .process__num { color: var(--teal); transform: translateX(6px); }
.process__step:hover h3 { color: var(--teal); transform: translateX(10px); }
.process__step:hover p { transform: translateX(10px); }
@media (max-width: 720px) {
  .process__step { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .process__step h3 { font-size: 28px; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  grid-auto-rows: 260px; grid-auto-flow: dense;
}
.gallery__item {
  overflow: hidden; position: relative; border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 15px 40px -20px rgba(57, 60, 66, 0.25);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(244, 198, 218, 0) 0%, rgba(244, 198, 218, 0) 100%);
  transition: background 0.5s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { background: linear-gradient(180deg, rgba(244, 198, 218, 0.15) 0%, rgba(206, 228, 232, 0.25) 100%); }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 2; }
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-pink); }
.testimonials__track {
  position: relative;
  display: flex;
  max-width: 880px; margin: 0 auto;
  min-height: 280px;
}
.testimonial {
  position: absolute; inset: 0;
  text-align: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}
.testimonial.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.35;
  margin-bottom: 36px; color: var(--ink);
}
.testimonial p::before, .testimonial p::after { content: '"'; color: var(--coral); font-weight: 500; }
.testimonial footer { display: flex; flex-direction: column; gap: 4px; }
.testimonial strong { font-weight: 500; letter-spacing: 0.04em; color: var(--teal); }
.testimonial span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.testimonials__dots {
  display: flex; justify-content: center; gap: 12px; margin-top: 48px;
}
.testimonials__dots button {
  width: 28px; height: 1px; background: var(--line-strong);
  transition: background 0.4s, width 0.4s var(--ease-out);
}
.testimonials__dots button.is-active { background: var(--teal); width: 44px; }

/* ---------- CTA ---------- */
.cta { background: var(--bg); padding-bottom: 100px; }
.cta__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 80px;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 100px -50px rgba(57, 60, 66, 0.25);
}
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.cta__card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(244, 198, 218, 0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(206, 228, 232, 0.55) 0%, transparent 50%);
  pointer-events: none;
}
.cta__copy { position: relative; }
.cta__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.2vw, 64px); line-height: 1.04; letter-spacing: -0.015em;
  margin: 24px 0 24px; color: var(--ink);
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.cta__lede { color: var(--ink-soft); max-width: 460px; margin-bottom: 40px; }
.cta__meta { display: flex; flex-direction: column; gap: 18px; padding-top: 24px; border-top: 1px solid var(--line); }
.cta__meta .lbl {
  display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px; font-weight: 600;
}
.cta__meta a { color: var(--teal); transition: color 0.3s; font-weight: 500; }
.cta__meta a:hover { color: var(--coral); }

.cta__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-content: start;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); font-weight: 600;
}
.field input, .field select, .field textarea {
  background: transparent; border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0; font: inherit; font-size: 15px; color: var(--ink);
  font-family: var(--sans); resize: vertical;
  line-height: 1.4;
  height: 42px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.4s var(--ease-out);
}
.field textarea { height: auto; min-height: 80px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23215D64' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-bottom-color: var(--teal);
}
.field select { cursor: pointer; }
.field select option { background: #fff; color: var(--ink); }

.field input[type="date"] { cursor: pointer; color-scheme: light; }
.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.55;
  filter: invert(28%) sepia(33%) saturate(745%) hue-rotate(140deg) brightness(92%) contrast(89%);
  transition: opacity 0.3s var(--ease-out);
}
.field input[type="date"]:hover::-webkit-calendar-picker-indicator,
.field input[type="date"]:focus::-webkit-calendar-picker-indicator { opacity: 1; }
.cta__form .btn { grid-column: span 2; margin-top: 8px; }
.cta__success {
  grid-column: span 2;
  font-size: 13px; color: var(--sage); letter-spacing: 0.04em; font-weight: 500;
  opacity: 0; height: 0; overflow: hidden;
  transition: opacity 0.5s var(--ease-out);
}
.cta__form.is-sent .cta__success { opacity: 1; height: auto; margin-top: 10px; }

@media (max-width: 1000px) {
  .cta__card { grid-template-columns: 1fr; padding: 50px 30px; gap: 40px; }
}
@media (max-width: 640px) {
  .cta__form { grid-template-columns: 1fr; }
  .field--full, .cta__form .btn, .cta__success { grid-column: span 1; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-warm);
  padding: 80px 0 30px;
  border-top: 1px solid var(--hairline);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; font-family: var(--serif); color: var(--ink); }
.footer__brand p { color: var(--ink-soft); font-size: 14px; margin-top: 8px; font-family: var(--sans); }
.footer h4 {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 20px; font-weight: 600;
}
.footer__grid a, .footer__grid span:not(.header__mark) {
  display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 10px;
  transition: color 0.3s;
}
.footer__grid a:hover { color: var(--teal); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--hairline);
  font-size: 12px; color: var(--muted); letter-spacing: 0.06em;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .hero__title .line__inner { transform: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================
   Responsive polish — component-by-component audit
   Breakpoints: 1600 / 1200 / 1000 / 768 / 640 / 480 / 360
   Plus landscape-phone and touch-pointer adjustments.
   =========================================================== */

/* Ultra-wide (≥1600px) — keep proportions, not sparse */
@media (min-width: 1600px) {
  :root { --container: 1360px; }
  .section { padding: 160px 0; }
}

/* Laptop (≤1200px) */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .header { padding: 20px 28px; }
  .header.is-scrolled { padding: 12px 28px; }
  .nav__list { gap: 28px; }
  .hero__meta { gap: 48px; }
  .hero__scroll { right: 24px; bottom: 110px; }
}

/* Tablet landscape (≤1000px) */
@media (max-width: 1000px) {
  .section { padding: 100px 0; }
  .section-head { margin-bottom: 60px; }
  .section-head--row { flex-wrap: wrap; gap: 18px; }
  .hero__inner { padding: 130px 28px 140px; }
  .hero__title { font-size: clamp(44px, 9vw, 96px); }
  .hero__cta { margin-bottom: 60px; }
  .hero__meta-item .num { font-size: 38px; }
  .intro { padding-top: 120px; }
  .cta__card { padding: 50px 36px; }
  .events__grid { gap: 16px; }
}

/* Tablet portrait (≤768px) */
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }
  .header { padding: 16px 22px; }
  .header.is-scrolled { padding: 12px 22px; }
  .header__name { font-size: 19px; }

  .hero { min-height: auto; }
  .hero__inner { padding: 120px 22px 130px; }
  .hero__title { font-size: clamp(40px, 10vw, 80px); line-height: 0.98; }
  .hero__eyebrow { margin-bottom: 26px; font-size: 10px; padding: 7px 14px; letter-spacing: 0.16em; }
  .hero__lede { font-size: 15px; margin-bottom: 36px; }
  .hero__cta { margin-bottom: 50px; gap: 14px; }
  .hero__meta { gap: 28px; padding-top: 28px; }
  .hero__meta-item .num { font-size: 32px; }
  .hero__meta-item .lbl { font-size: 10px; }

  .marquee { padding: 14px 0; }
  .marquee__track { font-size: 16px; gap: 32px; }

  .intro { padding-top: 90px; }
  .intro__title { font-size: clamp(28px, 5.8vw, 48px); }
  .intro__body { font-size: 15.5px; }

  .section-head { margin-bottom: 48px; }
  .section-head__title { font-size: clamp(32px, 6.2vw, 60px); }
  .section-head__label { font-size: 10px; letter-spacing: 0.18em; }

  .service-card { padding: 32px 24px 28px; }
  .service-card__num { margin-bottom: 18px; }
  .service-card h3 { font-size: 24px; }
  .service-card p { font-size: 14.5px; }
  .service-card__more { opacity: 1; transform: none; margin-top: 12px; }

  .event-card h3 { font-size: 22px; }
  .event-card .tag { font-size: 10px; letter-spacing: 0.2em; }

  .process__step { padding: 32px 16px; }
  .process__step h3 { font-size: 26px; }
  .process__step::before { display: none; }
  .process__step:hover .process__num,
  .process__step:hover h3,
  .process__step:hover p { transform: none; }

  .gallery__grid { gap: 10px; grid-auto-rows: 200px; }

  .testimonials__track { min-height: 320px; }
  .testimonial p { font-size: clamp(19px, 4.4vw, 28px); }

  .cta__card { padding: 44px 28px; gap: 36px; }
  .cta__title { font-size: clamp(28px, 6vw, 44px); }
  .cta__lede { font-size: 15px; }

  .footer { padding: 60px 0 24px; }
  .footer__grid { gap: 36px; margin-bottom: 40px; }

  .mobile-menu nav { gap: 20px; }
  .mobile-menu a { font-size: 30px; }
}

/* Large phone (≤640px) */
@media (max-width: 640px) {
  .events__grid { gap: 14px; }
  .gallery__grid { grid-auto-rows: 170px; }
}

/* Standard phone (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }

  .header { padding: 14px 18px; }
  .header.is-scrolled { padding: 10px 18px; }
  .header__name { font-size: 17px; letter-spacing: 0.02em; }
  .header__mark { width: 32px; height: 32px; font-size: 19px; }

  .hero__inner { padding: 100px 18px 120px; }
  .hero__title { font-size: clamp(34px, 11vw, 56px); }
  .hero__lede { font-size: 14.5px; margin-bottom: 32px; }
  .hero__cta { gap: 12px; margin-bottom: 44px; }
  .hero__cta .btn--solid { width: 100%; justify-content: center; }
  .hero__cta .btn--text { padding: 10px 0; }
  .hero__meta { gap: 20px 30px; padding-top: 24px; }
  .hero__meta-item .num { font-size: 28px; }
  .hero__meta-item .lbl { font-size: 9px; letter-spacing: 0.18em; }

  .marquee { padding: 12px 0; }
  .marquee__track { font-size: 14px; gap: 24px; }
  .marquee__track .sep { font-size: 10px; }

  .intro { padding-top: 70px; }
  .intro__title { font-size: clamp(26px, 7vw, 38px); }
  .intro__body p { margin-bottom: 22px; }

  .section-head { margin-bottom: 40px; }
  .section-head__title { font-size: clamp(28px, 7.4vw, 44px); }

  .service-card { padding: 26px 20px 22px; }
  .service-card h3 { font-size: 22px; }
  .service-card__num { margin-bottom: 16px; font-size: 12px; }
  .service-card__icon { width: 36px; height: 36px; margin-bottom: 14px; }

  .event-card h3, .event-card--lg h3 { font-size: 20px; }
  .event-card .tag { margin-bottom: 8px; }

  .process__step { padding: 26px 0; gap: 8px; }
  .process__step h3 { font-size: 22px; }
  .process__num { font-size: 18px; }

  .gallery__grid { gap: 8px; grid-auto-rows: 140px; }

  .testimonials__track { min-height: 360px; }
  .testimonial p { font-size: 18px; line-height: 1.4; margin-bottom: 28px; }
  .testimonials__dots { margin-top: 32px; }

  .cta__card { padding: 32px 22px; gap: 28px; border-radius: 14px; }
  .cta__title { font-size: clamp(26px, 7.6vw, 38px); }
  .cta__lede { font-size: 14.5px; margin-bottom: 28px; }
  .field input, .field select, .field textarea { font-size: 14px; }
  .field label { font-size: 10px; }

  .footer { padding: 50px 0 20px; }
  .footer__grid { gap: 32px; margin-bottom: 32px; }
  .footer h4 { margin-bottom: 14px; }
  .footer__bottom { font-size: 11px; gap: 8px; flex-direction: column; align-items: flex-start; }

  .btn { padding: 14px 22px; font-size: 11px; letter-spacing: 0.14em; }
  .btn--full { padding: 16px 22px; }

  .mobile-menu nav { gap: 16px; }
  .mobile-menu a { font-size: 26px; }
  .mobile-menu__foot { font-size: 12px; }
}

/* Small phone (≤360px) */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: 30px; line-height: 1; }
  .hero__lede { font-size: 14px; }
  .hero__meta-item .num { font-size: 24px; }
  .section-head__title { font-size: 26px; }
  .service-card h3, .event-card h3 { font-size: 19px; }
  .process__step h3 { font-size: 20px; }
  .testimonial p { font-size: 16px; }
  .cta__title { font-size: 26px; }
  .btn { padding: 12px 18px; font-size: 10.5px; letter-spacing: 0.12em; }
}

/* Landscape phones — keep hero usable when viewport is short */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero__inner { padding: 100px 32px 110px; }
  .hero__title { font-size: clamp(34px, 6vw, 52px); }
  .hero__lede { margin-bottom: 28px; }
  .hero__cta { margin-bottom: 32px; }
  .hero__meta { padding-top: 20px; gap: 32px; }
  .hero__meta-item .num { font-size: 26px; }
  .marquee { padding: 10px 0; }
  .marquee__track { font-size: 13px; }
  .hero__scroll { display: none; }
}

/* Touch / no-hover devices — surface hover content by default */
@media (hover: none), (pointer: coarse) {
  .service-card__more { opacity: 1; transform: none; }
  .nav__link::after { display: none; }
}

/* Prevent any accidental horizontal scroll */
html, body { max-width: 100%; }
