/* Inaya Advisory — design system per Website Vision v2 */

@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/NeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}

:root {
  --cream: #F5F2EB;
  --cream-deep: #EDEADE;
  --charcoal: #1C1C1C;
  --navy: #1B2734;
  --gold: #A6A29A; /* former gold accent, now muted warm gray */
  --divider: #CCCCCC;
  --muted: #999999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- section label ---------- */
.label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}

/* ---------- boxed CTA (thin gold border, no fill, no radius) ---------- */
.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--charcoal);
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 38px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* ---------- nav (transparent at top, frosted on scroll) ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
nav.is-scrolled {
  background: rgba(245, 242, 235, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--divider);
}
html.has-intro nav {
  opacity: 0;
  animation: navDrop 0.8s ease 2.1s forwards;
}
@keyframes navDrop { to { opacity: 1; } }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
nav .wordmark {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  margin-right: -0.42em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 13px;
  letter-spacing: 1px;
}
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* ---------- sections ---------- */
section { padding: 110px 0; }
section.tight { padding: 80px 0; }

.divider-top { border-top: 1px solid var(--divider); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 150px;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 76px);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero p {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--charcoal);
}
.hero .btn-row { text-align: center; margin-top: 48px; }

/* ---------- dark hero (home) ---------- */
.hero-dark {
  background: #0B0B09;
  color: var(--cream);
  /* fill the full first screen at any window size (nav is ~77px and in flow above) */
  min-height: calc(100svh - 77px);
  display: flex;
  align-items: center;
  padding: 110px 0 100px;
}
.hero-dark .wrap { width: 100%; max-width: 100%; margin: 0; padding: 0 6vw; }
.hero-dark h1 {
  text-align: left;
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.08;
}
.hero-dark .label { text-align: left; margin-bottom: 28px; }
.hero-dark p {
  text-align: left;
  margin: 28px 0 0;
  max-width: 600px;
  color: #98948B;
}
.hero-dark .btn-row { text-align: left; margin-top: 40px; }
.hero-dark .btn { color: var(--cream); border-color: rgba(245, 242, 235, 0.35); }
.hero-dark .btn:hover { background: var(--cream); color: #0B0B09; border-color: var(--cream); }
/* mark bleeds off the right edge, roughly a third cropped */
.hero-mark-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(30%, -50%);
  height: 118vh;
  width: auto;
  pointer-events: none;
  overflow: visible;
}
.hero-mark-bg path, .hero-mark-bg rect {
  fill: none;
  stroke: rgba(245, 242, 235, 0.07);
  stroke-width: 0.6;
}
/* ---------- nav over dark hero ---------- */
nav.on-dark { color: var(--cream); }
nav.on-dark .nav-inner { max-width: 100%; padding-left: 6vw; padding-right: 6vw; }
nav.on-dark.is-scrolled {
  background: rgba(11, 11, 9, 0.82);
  border-bottom-color: rgba(245, 242, 235, 0.12);
}
nav.on-dark .nav-cta:hover {
  background: var(--cream);
  color: #0B0B09;
  border-color: var(--cream);
}

/* ---------- two pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 64px;
  align-items: start;
}
.pillars .gold-rule { background: var(--gold); width: 1px; height: 100%; }
.pillar h3 { font-size: 30px; margin-bottom: 20px; }
.pillars-connect {
  margin-top: 72px;
  max-width: 860px;
}

/* ---------- funnel flow (scroll-activated timeline) ---------- */
.funnel-flow { padding: 110px 0 130px; }
.funnel-heading { font-size: clamp(30px, 3.2vw, 46px); margin-bottom: 72px; }
.flow-steps {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 42px;
  bottom: 64px;
  width: 1px;
  background: rgba(245, 242, 235, 0.15);
}
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: start;
  padding: 26px 0;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}
.flow-step.active { opacity: 1; }
.flow-node {
  width: 11px;
  height: 11px;
  margin-top: 8px;
  background: #0B0B09;
  border: 1px solid rgba(245, 242, 235, 0.5);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.flow-step.active .flow-node {
  background: var(--cream);
  border-color: var(--cream);
}
.flow-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 8px;
}
.flow-body p { font-size: 15px; color: #98948B; max-width: 480px; }
.funnel-cta { text-align: center; margin-top: 80px; }
.flow-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(245, 242, 235, 0.15);
  padding: 7px 14px;
  margin-top: 4px;
  white-space: nowrap;
}

/* ---------- network profiles marquee ---------- */
.network-band { padding: 96px 0; }
.network-band .wrap { width: 100%; max-width: 100%; margin: 0; padding: 0 6vw; }
.network-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.network-heading { font-size: clamp(30px, 3.2vw, 46px); }
.network-mark { height: 54px; width: auto; fill: var(--cream); flex-shrink: 0; transform: translateY(-10px); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee + .marquee { margin-top: 18px; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 40s linear infinite;
}
.marquee.reverse .marquee-track { animation: marqueeRight 46s linear infinite; }
.chip {
  border: 1px solid rgba(245, 242, 235, 0.18);
  background: rgba(18, 17, 16, 0.55);
  color: #C9C5BC;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  white-space: nowrap;
  margin-right: 16px;
}
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

/* ---------- service switcher (clickable cards swap text + image) ---------- */
.svc-switch {
  scroll-margin-top: 80px;
  /* remade texture: soft gray tonal blobs drawn in CSS, no upscaled image */
  background:
    radial-gradient(1100px 700px at 72% 24%, rgba(64, 62, 58, 0.45), transparent 70%),
    radial-gradient(900px 600px at 22% 75%, rgba(54, 52, 48, 0.5), transparent 70%),
    radial-gradient(700px 500px at 90% 85%, rgba(44, 42, 39, 0.4), transparent 70%),
    #151412;
  padding: 72px 0 84px;
}
.svc-stage { display: grid; margin-bottom: 76px; }
.svc-panel {
  /* every panel sits in the same grid cell — the stage sizes to the tallest one
     and never changes height when toggling, so the image and tabs never shift */
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.svc-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.svc-script {
  height: 96px;
  width: auto;
  display: block;
  transform: rotate(-3deg);
  margin-bottom: 20px;
}
.svc-text { align-self: end; }  /* text dropped to the bottom of the stage — last line sits level with the image's bottom edge, same place on every toggle */
.svc-text h3 { font-size: clamp(26px, 2.8vw, 40px); margin-bottom: 14px; }
.svc-text p { font-size: 16px; color: #98948B; }
.svc-text p + p { margin-top: 12px; }
.svc-image { margin-top: -116px; }
.svc-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}
.svc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-tab {
  border: 1px solid rgba(245, 242, 235, 0.18);
  background: rgba(18, 17, 16, 0.55);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.svc-tab:hover { border-color: rgba(245, 242, 235, 0.4); }
.svc-tab.active {
  background: rgba(245, 242, 235, 0.08);
  border-color: rgba(245, 242, 235, 0.55);
}

/* ---------- full-bleed photo band ---------- */
.full-photo { line-height: 0; }
.full-photo img {
  width: 100%;
  height: 74vh;
  object-fit: cover;
  filter: grayscale(1);
}

/* ---------- split section (Kadenwood-style: photo + dark navy panel) ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-photo {
  min-height: 540px;
  overflow: hidden;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.split-panel {
  background: var(--navy);
  color: var(--cream);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-panel h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 28px;
}
.split-panel p { font-size: 15px; max-width: 480px; }
.split-panel .label { margin-bottom: 24px; }

/* ---------- contrast (traditional vs Inaya) ---------- */
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--divider);
}
.contrast-col { padding: 56px 48px; }
.contrast-col.them { background: var(--cream-deep); }
.contrast-col.us { background: var(--navy); color: var(--cream); }
.contrast-col h3 { font-size: 26px; margin-bottom: 28px; }
.contrast-col.us h3 { color: var(--cream); }
.contrast-item {
  padding: 18px 0;
  border-top: 1px solid var(--divider);
  font-size: 15px;
}
.contrast-col.us .contrast-item { border-top-color: #3a3a3a; }
.contrast-item .ci-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contrast-col.us .ci-label { color: var(--gold); }

/* ---------- numbered principles ---------- */
.principles { max-width: 860px; }
.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-top: 1px solid var(--divider);
}
.principle:last-child { border-bottom: 1px solid var(--divider); }
.principle .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
}
.principle h3 { font-size: 24px; margin-bottom: 12px; }

/* ---------- engagement preview / closing CTA ---------- */
.closing {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing h2 { font-size: clamp(30px, 3.6vw, 44px); }
.closing ul { list-style: none; margin-top: 36px; }
.closing li {
  padding: 14px 0;
  border-top: 1px solid var(--divider);
  font-size: 15px;
}
.closing-cta {
  border: 1px solid var(--gold);
  padding: 64px 48px;
  text-align: center;
}
.closing-cta p { margin-bottom: 28px; font-size: 15px; }
.text-link { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.text-link:hover { color: var(--charcoal); }

/* ---------- page header (interior pages) ---------- */
.page-head { padding: 110px 0 0; }
.page-head h1 { font-size: clamp(36px, 5vw, 60px); max-width: 880px; }
.page-head .sub { max-width: 640px; margin-top: 28px; }

/* ---------- conviction ---------- */
.conviction h2 { font-size: clamp(34px, 4.4vw, 54px); max-width: 920px; }
.conviction p { max-width: 720px; margin-top: 32px; }

/* ---------- service lists ---------- */
.svc {
  padding: 28px 0;
  border-top: 1px solid var(--divider);
}
.svc:last-child { border-bottom: 1px solid var(--divider); }
.svc h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 6px;
}
.svc p { font-size: 15px; color: var(--charcoal); }

/* ---------- funnel ---------- */
.funnel { max-width: 720px; margin: 0 auto; }
.funnel-step {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  margin: 0 auto 10px;
  padding: 16px 12px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.funnel-step span { color: var(--muted); margin-right: 12px; }
.funnel-step.final { background: var(--gold); color: var(--charcoal); }
.funnel-step.final span { color: var(--charcoal); }

/* ---------- accordion ---------- */
.network {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.acc-item { border-top: 1px solid var(--divider); }
.acc-item:last-child { border-bottom: 1px solid var(--divider); }
.acc-head {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--charcoal);
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-head .arrow {
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.acc-item.open .arrow { transform: rotate(90deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-body p { padding: 0 0 24px; font-size: 15px; max-width: 540px; }
.network-visual {
  background: var(--cream-deep);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.network-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: grayscale(1);
}

/* ---------- team ---------- */
.cities-bar {
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 6px;
  padding: 56px 0;
  border-bottom: 1px solid var(--divider);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  max-width: 760px;
  margin: 0 auto;
}
.team-card { cursor: pointer; }
.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  filter: grayscale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.team-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--muted);
}
.team-card h3 { font-size: 28px; margin-top: 24px; }
.team-card .title { font-size: 14px; margin-top: 4px; }
.team-card .city { font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: 1px; }
.team-card .more { display: inline-block; margin-top: 14px; color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* ---------- modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
  z-index: 100;
  padding: 40px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; align-items: center; justify-content: center; }
.modal {
  background: var(--cream);
  max-width: 920px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  position: relative;
}
.modal-photo { background: var(--cream-deep); min-height: 420px; }
.modal-photo .team-photo { height: 100%; aspect-ratio: auto; }
.modal-body { padding: 56px 56px 48px; }
.modal-body h3 { font-size: 32px; }
.modal-body .gold-underline {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0 24px;
}
.modal-body .title { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.modal-body p { font-size: 15px; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
}
.modal-linkedin {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold);
}
.modal-linkedin:hover { color: var(--charcoal); }
.modal-linkedin svg { display: block; }

/* ---------- transactions ---------- */
.tx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tx-card {
  background: var(--cream-deep);
  padding: 40px 32px;
  border-top: 1px solid transparent;
  transition: border-color 0.3s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.tx-card:hover { border-top-color: var(--gold); }
.tx-card.closed { border-top-color: var(--gold); }
.tx-card h3 { font-size: 26px; margin-bottom: 14px; }
.tx-tags { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.tx-card p { font-size: 14px; }
.tx-card.placeholder {
  background: none;
  border: 1px solid var(--divider);
  color: var(--muted);
  justify-content: center;
  text-align: center;
  font-size: 13px;
}

/* ---------- circle ---------- */
.geo-band { text-align: center; }
.geo-line {
  position: relative;
  height: 1px;
  background: var(--divider);
  max-width: 880px;
  margin: 80px auto 0;
}
.geo-cities {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.geo-city { position: relative; padding-top: 26px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.geo-city::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--gold);
}
.gatherings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gathering {
  background: var(--cream-deep);
  padding: 0;
}
.gathering .g-photo {
  position: relative;
  height: 220px;
  background: var(--charcoal);
  overflow: hidden;
}
.gathering .g-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.gathering .g-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.25);
}
.gathering .g-photo span {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--cream);
}
.gathering .g-body { padding: 28px; }
.gathering .g-date { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.gathering h3 { font-size: 23px; margin-bottom: 10px; }
.gathering p { font-size: 14px; }

/* ---------- forms ---------- */
.form-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--divider);
  align-items: stretch;
}
/* during the booking flow the panel is locked to one height (set in JS);
   both columns share it so nothing ever resizes between loading, calendar
   and the booked confirmation. */
.form-split.cal-active { align-items: stretch; }
.form-body.receipt-mode.cal-mode { justify-content: flex-start; }
.form-visual {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.form-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.form-body { padding: 64px 56px; }
.straight-dash { font-family: 'DM Sans', sans-serif; font-weight: 300; }
.form-body h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 40px; }
.field { margin-bottom: 28px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--divider);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--charcoal);
  padding: 10px 0;
  outline: none;
}
.field select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2398948B' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding: 10px 28px 10px 0;
  cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.form-consent {
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}
.form-consent span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.form-receipt { width: 100%; animation: receiptIn 0.6s ease; }
@keyframes receiptIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
/* loading state: heading hidden, content centered in the column */
.form-body.receipt-mode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 48px;
}
.cal-back {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.25s ease;
}
.cal-back:hover { color: var(--cream); }
.form-body.receipt-mode .form-receipt { max-width: 420px; }
.form-body.receipt-mode .form-receipt.has-cal { max-width: 100%; }
.form-body.receipt-mode .form-receipt.has-cal .receipt-msg {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 31px;
  letter-spacing: 0.5px;
  text-align: left;
  width: 100%;
  margin-top: -16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream);
  animation: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
/* logo base sits on the text baseline and grows upward from it */
.cal-head-mark svg { height: 62px; width: auto; display: block; margin-bottom: 6px; }
.cal-head-mark svg path, .cal-head-mark svg rect { fill: var(--cream); }
.cal-home-link {
  display: block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.cal-home-link:hover { color: var(--cream); }
/* booked state — everything lands together, tight stack, centered */
/* fully static logo: no pulse, every stroke solid cream */
.booked-mark { margin: 0 0 30px; animation: stageIn 0.6s ease both; }
.booked-mark svg { width: 42px; height: auto; display: block; margin: 0 auto; }
.booked-mark svg path, .booked-mark svg rect { fill: var(--cream); }
.form-receipt.booked .receipt-msg { animation: stageIn 0.6s ease both; }
.booked-note {
  margin-top: 4px !important;
  animation: stageIn 0.6s ease both !important;
}
.booked-home {
  margin-top: 22px;
  padding: 13px 30px;
  font-size: 12px;
  align-self: center;
  animation: stageIn 0.6s ease both;
}
.form-body.receipt-mode .redirect-bar { width: 100%; }
/* submission loading state — distinct, staged text */
.form-body.receipt-mode .receipt-msg {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 0;
  animation: stageIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.loader-mini { margin: 40px 0; animation: stageIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both; }
.loader-mini svg { width: 42px; height: auto; display: block; margin: 0 auto; overflow: visible; }
.loader-mini .mini-bracket { fill: rgba(245, 242, 235, 0.3); }
.loader-mini .mini-bar {
  fill: var(--cream);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: miniPulse 1.4s ease-in-out infinite;
}
.loader-mini .mb1 { animation-delay: 0s; }
.loader-mini .mb2 { animation-delay: 0.18s; }
.loader-mini .mb3 { animation-delay: 0.36s; }
@keyframes miniPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.45); }
  40% { opacity: 1; transform: scaleY(1); }
}
@keyframes stageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.redirect-line {
  font-family: 'Neue Montreal', 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(245, 242, 235, 0.75);
  margin-top: 0;
  animation: stageIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}
.redirect-line .dot {
  opacity: 0;
  animation: dotPulse 1.2s infinite;
}
.redirect-line .dot:nth-child(2) { animation-delay: 0.2s; }
.redirect-line .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }
.redirect-bar {
  position: relative;
  height: 1px;
  margin-top: 26px;
  background: rgba(245, 242, 235, 0.12);
  overflow: hidden;
  animation: stageIn 0.9s ease 0.7s both;
}
.redirect-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  animation: redirectFill 8.7s cubic-bezier(0.4, 0, 0.6, 1) 1.2s forwards;
}
@keyframes redirectFill { to { transform: scaleX(1); } }
.cal-frame {
  width: 100%;
  height: 880px;
  border: 1px solid rgba(245, 242, 235, 0.12);
  background: #121110;
  display: block;
  margin-top: 22px;
}
.cal-frame.cal-embed {
  height: 850px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ---------- custom in-design calendar ---------- */
.cal-mount { width: 100%; margin-top: 22px; }
.inaya-cal { width: 100%; }
.ic-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}
.ic-loading svg { width: 44px; height: auto; overflow: visible; }
.ic-loading .mini-bracket { fill: rgba(245, 242, 235, 0.3); }
.ic-loading .mini-bar {
  fill: var(--cream);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: miniPulse 1.4s ease-in-out infinite;
}
.ic-loading .mb2 { animation-delay: 0.18s; }
.ic-loading .mb3 { animation-delay: 0.36s; }

.ic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.12);
}
.ic-title { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 24px; color: var(--cream); }
.ic-navwrap { display: flex; gap: 8px; }
.ic-nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 242, 235, 0.2);
  background: none;
  color: var(--cream);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.ic-nav:hover:not(:disabled) { background: rgba(245, 242, 235, 0.08); border-color: rgba(245, 242, 235, 0.5); }
.ic-nav:disabled { opacity: 0.22; cursor: default; }

.ic-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.ic-dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  padding-bottom: 12px;
}
.ic-day {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.ic-day.is-blank { border: none; cursor: default; }
.ic-day.is-empty { color: rgba(245, 242, 235, 0.22); cursor: default; }
.ic-day.is-available { border-color: rgba(245, 242, 235, 0.18); }
.ic-day.is-available:hover { background: rgba(245, 242, 235, 0.08); border-color: rgba(245, 242, 235, 0.5); }
.ic-day.is-selected { background: var(--cream); color: #0B0B09; border-color: var(--cream); }

/* the area below the grid claims a fixed height up front, big enough for the
   times list AND the confirm row — so clicking through never resizes anything */
.ic-below { min-height: 380px; }
.ic-empty-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(245, 242, 235, 0.3);
}
.ic-times { margin-top: 28px; }
.ic-times-head { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); margin-bottom: 20px; }
.ic-slot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-height: 175px;
  overflow-y: auto;
}
.ic-slot {
  padding: 13px 8px;
  border: 1px solid rgba(245, 242, 235, 0.18);
  background: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.ic-slot:hover { background: rgba(245, 242, 235, 0.08); border-color: rgba(245, 242, 235, 0.5); }
.ic-slot.is-selected { background: var(--cream); color: #0B0B09; border-color: var(--cream); }

.ic-confirm {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 242, 235, 0.12);
}
.ic-confirm-line { font-size: 14px; color: #98948B; margin-bottom: 18px; }
.ic-error { color: #c98b7a; font-size: 13px; margin-top: 14px; min-height: 16px; }

/* smooth entrance for grid / times / confirm */
.ic-anim-in { animation: icFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes icFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.ic-day, .ic-slot { will-change: background-color, border-color; }
.receipt-msg { font-size: 15px; color: #98948B; margin-bottom: 28px; }
.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-top: 1px solid rgba(245, 242, 235, 0.12);
}
.receipt-row span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
  white-space: nowrap;
}
.receipt-row strong {
  font-weight: 300;
  font-size: 14px;
  color: var(--cream);
  text-align: right;
  overflow-wrap: anywhere;
}
.receipt-cal { margin-top: 36px; }
.form-success {
  display: none;
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--gold);
  font-size: 14px;
}

/* qualifies / does not qualify */
.quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.qual-col h3 { font-size: 24px; margin-bottom: 20px; }
.qual-col ul { list-style: none; }
.qual-col li {
  padding: 14px 0;
  border-top: 1px solid var(--divider);
  font-size: 15px;
}
.qual-col.no li { color: var(--muted); }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--divider);
  padding: 72px 0 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}
.footer-brand .wordmark { font-size: 22px; }
.footer-brand a { display: block; font-size: 14px; color: var(--muted); margin-top: 8px; }
.footer-brand a:hover { color: var(--gold); }
.footer-social a { display: inline-block; color: var(--charcoal); }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { display: block; }
.footer-legal {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- scroll reveal (blur-up + rise) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  html.has-intro nav { opacity: 1; transform: none; animation: none; }
}

/* ---------- hero word stagger ---------- */
.hero h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: wordUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--intro-delay, 0.1s) + var(--i, 0) * 80ms);
}
html { --intro-delay: 0.1s; }
html.has-intro { --intro-delay: 2.3s; }
@keyframes wordUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .w { opacity: 1; transform: none; animation: none; }
}

/* ---------- hairline + ticks motif ---------- */
.rule-ticks {
  position: relative;
  height: 1px;
  background: var(--divider);
}
.rule-ticks::before, .rule-ticks::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 20px;
  height: 3px;
  background: var(--gold);
}
.rule-ticks::before { left: 0; }
.rule-ticks::after { right: 0; }

/* ---------- about / firm statement ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: stretch;
}
.about-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-left h2 { flex-grow: 1; }
.about h2 { font-size: clamp(32px, 3.4vw, 48px); }
.about-cta {
  align-self: flex-start;
  margin: 48px 0 24px 0;
  border-color: var(--gold) !important;
}
.about-body { align-self: end; }
.about-body p { font-size: 16px; color: #98948B; }
.about-body p + p { margin-top: 24px; }

/* ---------- stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat { border-top: 1px solid var(--charcoal); padding-top: 22px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1;
}
.stat-num sup { font-size: 0.5em; color: var(--gold); }
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- closing band (statement + boxed CTA between hairlines) ---------- */
.closing-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 64px;
  padding: 72px 0;
}
.closing-band .band-mark { width: 40px; fill: var(--charcoal); flex-shrink: 0; }
.closing-band h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  max-width: 560px;
}

/* ---------- gold criteria block ---------- */
.criteria-block {
  background: var(--gold);
  color: var(--charcoal);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.criteria-item {
  border-left: 1px solid rgba(28, 28, 28, 0.35);
  padding: 0 28px;
}
.criteria-item .cnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  display: block;
  margin-bottom: 18px;
}
.criteria-item h3 { font-size: 20px; margin-bottom: 14px; }
.criteria-item p { font-size: 13px; line-height: 1.6; }

/* ---------- dark band with watermark wordmark ---------- */
.dark-band {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 130px 0 200px;
}
.dark-band .label { color: var(--gold); }
.dark-band h2 { color: var(--cream); }
.band-wordmark {
  position: absolute;
  bottom: -0.18em;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17vw;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 235, 0.05);
  pointer-events: none;
  user-select: none;
}

/* ---------- footer wordmark moment ---------- */
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(80px, 15vw, 210px);
  line-height: 0.9;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  color: var(--charcoal);
  opacity: 0.07;
  user-select: none;
  margin-top: 64px;
}

/* ---------- transaction gold square bullet ---------- */
.tx-tags::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  margin-right: 10px;
}

/* ---------- page transition curtain (post-booking exit only) ---------- */
.page-trans {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #0B0B09;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.page-trans.show { opacity: 1; }
.pt-mark svg { width: 46px; height: auto; display: block; overflow: visible; }
.pt-mark .mini-bracket { fill: rgba(245, 242, 235, 0.3); }
.pt-mark .mini-bar {
  fill: var(--cream);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: miniPulse 1.4s ease-in-out infinite;
}
.pt-mark .mb1 { animation-delay: 0s; }
.pt-mark .mb2 { animation-delay: 0.18s; }
.pt-mark .mb3 { animation-delay: 0.36s; }

/* ---------- entrance loader ---------- */
html.intro-lock { overflow: hidden; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
}
.loader-curtain {
  position: absolute;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: loaderLift 0.7s cubic-bezier(0.77, 0, 0.18, 1) 1.9s forwards;
}
/* mark strokes wipe in through masks, staggered (Harrington recipe) */
.loader-inner { position: relative; }
.loader-mark {
  width: 116px;
  height: auto;
  display: block;
  margin: 0 auto;
  fill: var(--cream);
  overflow: visible;
}
.lm-bar, .lm-bracket {
  transform-box: fill-box;
  transform-origin: center;
  clip-path: inset(100% 0 0 0);
  animation: lmWipe 0.55s cubic-bezier(0.4, 0, 0.2, 1) var(--dl, 0s) forwards;
}
.lm-left  { --dl: 0s;    --br: -7deg; animation-name: lmWipeRot; }
.lm-b1    { --dl: 0.09s; }
.lm-b2    { --dl: 0.18s; }
.lm-b3    { --dl: 0.27s; }
.lm-right { --dl: 0.36s; --br: 7deg;  animation-name: lmWipeRot; }
@keyframes lmWipe {
  from { clip-path: inset(100% 0 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes lmWipeRot {
  from { clip-path: inset(100% 0 0 0); transform: rotate(var(--br, -7deg)); }
  to   { clip-path: inset(0 0 0 0); transform: rotate(0deg); }
}
@keyframes loaderLift { to { transform: translateY(-100%); } }

/* ---------- dark page theme ---------- */
body.dark {
  background: #0B0B09;
  color: var(--cream);
}
body.dark .divider-top { border-top-color: rgba(245, 242, 235, 0.12); }
body.dark .btn { color: var(--cream); border-color: rgba(245, 242, 235, 0.35); }
body.dark .btn:hover { background: var(--cream); color: #0B0B09; border-color: var(--cream); }
body.dark .text-link:hover { color: var(--cream); }
body.dark .stat { border-top-color: rgba(245, 242, 235, 0.6); }
body.dark .contrast { border-color: rgba(245, 242, 235, 0.12); }
body.dark .contrast-col.them { background: #141312; }
body.dark .contrast-col.them .contrast-item { border-top-color: rgba(245, 242, 235, 0.12); }
body.dark .principle { border-top-color: rgba(245, 242, 235, 0.12); }
body.dark .principle:last-child { border-bottom-color: rgba(245, 242, 235, 0.12); }
body.dark .closing-band li,
body.dark li { border-top-color: rgba(245, 242, 235, 0.12); }
body.dark .rule-ticks { background: rgba(245, 242, 235, 0.15); }
body.dark .band-mark { fill: var(--cream); }
body.dark footer { border-top-color: rgba(245, 242, 235, 0.12); }
body.dark .footer-brand a { color: var(--muted); }
body.dark .footer-social a { color: var(--cream); }
body.dark .footer-social a:hover { color: var(--gold); }
body.dark .footer-wordmark { color: var(--cream); opacity: 0.06; }
body.dark .field input, body.dark .field select, body.dark .field textarea {
  color: var(--cream);
  border-bottom-color: rgba(245, 242, 235, 0.25);
}
body.dark .field input:focus, body.dark .field select:focus, body.dark .field textarea:focus {
  border-bottom-color: var(--cream);
}
body.dark .form-split { border-color: rgba(245, 242, 235, 0.12); }
body.dark .form-visual { background: #121110; }
body.dark .field select option { background: #121110; color: var(--cream); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  section { padding: 80px 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .pillars { grid-template-columns: 1fr; gap: 48px; }
  .pillars .gold-rule { width: 100%; height: 1px; }
  .contrast { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-photo { min-height: 300px; }
  .split-panel { padding: 64px 32px; }
  .hero-mark-bg { display: none; }
  .hero-dark { min-height: calc(100svh - 77px); padding: 100px 0 90px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .svc-panel { grid-template-columns: 1fr; gap: 36px; }
  .svc-image { margin-top: 0; }
  .svc-image img { height: 280px; }
  .svc-tabs { grid-template-columns: 1fr; gap: 14px; }
  .svc-tab { padding: 22px 16px; }
  .closing-band { grid-template-columns: 1fr; gap: 32px; text-align: left; padding: 56px 0; }
  .closing-band .band-mark { display: none; }
  .criteria-block { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
  .criteria-item { border-left: none; border-top: 1px solid rgba(28, 28, 28, 0.35); padding: 24px 0 0; }
  .closing { grid-template-columns: 1fr; gap: 48px; }
  .network { grid-template-columns: 1fr; gap: 48px; }
  .network-visual { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .modal { grid-template-columns: 1fr; }
  .modal-photo { min-height: 280px; }
  .tx-grid { grid-template-columns: repeat(2, 1fr); }
  .gatherings {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gathering { min-width: 280px; }
  .form-split { grid-template-columns: 1fr; }
  .form-visual { min-height: 220px; }
  .quals { grid-template-columns: 1fr; gap: 40px; }
  .geo-cities { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .principle { grid-template-columns: 48px 1fr; gap: 20px; }
  .footer-top { flex-direction: column; gap: 32px; }
}
