
:root {
  --cream: #f8f2e8;
  --cream-2: #efe3d4;
  --ink: #261f18;
  --muted: rgba(38, 31, 24, 0.68);
  --sage: #444623;
  --sage-2: #5b6b45;
  --turquoise: #328b86;
  --earth: #a8662f;
  --terracotta: #9c563d;
  --line: rgba(38, 31, 24, 0.14);
  --shadow: 0 26px 80px rgba(31, 27, 20, 0.18);
  --radius-lg: 34px;
  --radius-xl: 46px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  font-family: Assistant, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(50, 139, 134, 0.26); }

.georgia-page {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(50, 139, 134, 0.16), transparent 30vw),
    radial-gradient(circle at 90% 28%, rgba(168, 102, 47, 0.14), transparent 26vw),
    linear-gradient(180deg, #fbf7ef 0%, #f6edde 44%, #fffaf2 100%);
}
.section-shell {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--earth);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.96rem;
}
.kicker::before,
.kicker::after {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(168, 102, 47, 0.42);
}
.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.cta-button {
  background: linear-gradient(135deg, var(--sage), #283318);
  color: #fff;
  box-shadow: 0 22px 48px rgba(68, 70, 35, 0.28);
}
.cta-button:hover,
.ghost-button:hover { transform: translateY(-3px); }
.ghost-button {
  color: #fff;
  border-color: rgba(255,255,255,0.44);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.journey-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #111;
  color: #fff;
}
.hero-image,
.hero-gradient,
.hero-noise,
.hero-map-line { position: absolute; inset: 0; }
.hero-image {
  background-image: url('../journeys/georgia/hero_lake.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroBreath 16s ease-in-out infinite alternate;
  z-index: -4;
}
.hero-gradient {
  background:
    linear-gradient(90deg, rgba(5, 9, 5, 0.16) 0%, rgba(9, 18, 12, 0.62) 72%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.42));
  z-index: -3;
}
.hero-noise {
  opacity: 0.28;
  z-index: -2;
  background-image:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(255,255,255,0.13) 0 1px, transparent 1px);
  background-size: 54px 54px, 72px 72px;
}
.hero-map-line {
  z-index: -1;
  opacity: 0.56;
  background:
    radial-gradient(circle at 68% 34%, rgba(255,255,255,0.12), transparent 3px),
    radial-gradient(circle at 57% 48%, rgba(255,255,255,0.12), transparent 3px),
    radial-gradient(circle at 45% 58%, rgba(255,255,255,0.10), transparent 3px);
}
.hero-content {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 140px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.74fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}
.hero-copy {
  max-width: 770px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-weight: 800;
}
.hero-title {
  margin: 24px 0 18px;
  font-size: clamp(3.4rem, 8vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-shadow: 0 18px 52px rgba(0,0,0,0.34);
}
.hero-title span {
  display: block;
  color: #e8c4a3;
}
.hero-subtitle {
  max-width: 670px;
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.76rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.90);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 760px;
}
.hero-fact {
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(12px);
}
.hero-fact small {
  display: block;
  color: rgba(255,255,255,0.70);
  margin-bottom: 4px;
}
.hero-fact strong { font-size: 1.04rem; }
.hero-photo-stack {
  position: relative;
  min-height: 560px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.10);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.one {
  width: 74%; height: 56%;
  right: 4%; top: 4%;
  transform: rotate(-3deg);
}
.hero-card.two {
  width: 58%; height: 42%;
  left: 0; bottom: 12%;
  transform: rotate(5deg);
}
.hero-floating-note {
  position: absolute;
  right: 2%; bottom: 0;
  width: min(310px, 78%);
  padding: 24px;
  border-radius: 28px;
  color: var(--ink);
  background: rgba(248, 242, 232, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.56);
  backdrop-filter: blur(14px);
}
.hero-floating-note strong {
  display: block;
  font-size: 1.28rem;
  color: var(--sage);
  margin-bottom: 8px;
}
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 700;
}
.hero-scroll span {
  width: 24px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #fff;
  animation: scrollDot 1.5s infinite;
}

.intro-section { padding: 110px 0 76px; position: relative; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}
.intro-copy h2,
.section-heading h2,
.suitability-copy h2,
.institute-copy h2,
.lead-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--sage);
}
.intro-copy p,
.section-heading p,
.suitability-copy p,
.institute-copy p,
.lead-copy p {
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 1.55vw, 1.36rem);
  line-height: 1.9;
  color: var(--muted);
}
.intro-panel {
  position: relative;
  min-height: 530px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}
.intro-panel img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.intro-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.54));
}
.intro-panel-text {
  position: absolute;
  inset-inline: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(12px);
}
.intro-panel-text strong { font-size: 1.3rem; display: block; margin-bottom: 6px; }

.pillars-section { padding: 58px 0 100px; }
.section-heading { text-align: center; max-width: 830px; margin: 0 auto 46px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pillar-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(68,70,35,0.12);
  box-shadow: 0 20px 54px rgba(31,27,20,0.08);
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -30% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(50,139,134,0.11);
}
.pillar-icon {
  width: 76px; height: 76px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(68,70,35,0.12), rgba(168,102,47,0.10));
  color: var(--sage);
  font-size: 2.2rem;
  margin-bottom: 28px;
}
.pillar-card h3 { margin: 0 0 14px; color: var(--sage); font-size: 1.75rem; }
.pillar-card p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 1.08rem; }

.route-section {
  --route-progress: 0;
  position: relative;
  height: 600vh;
  background: #10150e;
  color: #fff;
  overflow: clip;
}
.route-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.route-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.route-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 780ms ease, transform 1400ms ease;
}
.route-bg img.is-active { opacity: 1; transform: scale(1.02); }
.route-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,12,7,0.16), rgba(8,12,7,0.76) 78%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.38));
}
.route-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 72px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.route-heading {
  align-self: start;
  padding-top: 20px;
}
.route-heading .kicker { color: #e8c4a3; }
.route-heading .kicker::before,
.route-heading .kicker::after { background: rgba(232,196,163,0.55); }
.route-heading h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 5.6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.route-heading p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 1.22rem;
  line-height: 1.8;
  max-width: 520px;
}
.route-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.route-mini-stats span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}
.route-visual {
  position: relative;
  min-height: 640px;
}
.route-map {
  position: absolute;
  z-index: 1;
  inset: 2% 0 0 4%;
  width: 100%;
  height: 96%;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,0.28));
}
.route-path-base,
.route-path-fill {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.route-path-base {
  stroke: rgba(255,255,255,0.18);
  stroke-width: 6;
}
.route-path-fill {
  stroke: #e8c4a3;
  stroke-width: 7;
  stroke-dasharray: var(--path-length, 1000);
  stroke-dashoffset: calc(var(--path-length, 1000) * (1 - var(--route-progress)));
  transition: stroke-dashoffset 80ms linear;
}
.route-dots {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.route-dot {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  transform: translate(50%, -50%) scale(0.86);
  transition: transform 340ms ease, background 340ms ease, color 340ms ease, box-shadow 340ms ease;
}
.route-dot.is-active {
  color: var(--ink);
  background: #f6ddc4;
  transform: translate(50%, -50%) scale(1.06);
  box-shadow: 0 0 0 12px rgba(246,221,196,0.14), 0 20px 46px rgba(0,0,0,0.28);
}
.route-dot:nth-child(1) { right: 18%; top: 13%; }
.route-dot:nth-child(2) { right: 56%; top: 22%; }
.route-dot:nth-child(3) { right: 35%; top: 47%; }
.route-dot:nth-child(4) { right: 72%; top: 62%; }
.route-dot:nth-child(5) { right: 23%; top: 83%; }
.route-card {
  position: absolute;
  z-index: 4;
  width: min(540px, 88%);
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  padding: 28px 30px;
  border-radius: 32px;
  background: rgba(248,242,232,0.98);
  color: var(--ink);
  box-shadow: 0 28px 92px rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  overflow: auto;
  max-height: min(76vh, 690px);
}
.route-card::-webkit-scrollbar { width: 8px; }
.route-card::-webkit-scrollbar-thumb { background: rgba(68,70,35,0.25); border-radius: 999px; }
.route-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--turquoise), #e8c4a3, var(--earth));
}
.route-day-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--earth);
  font-weight: 900;
}
.route-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.75rem, 2.55vw, 2.75rem);
  line-height: 1.05;
  color: var(--sage);
}
.route-card p {
  margin: 0;
  color: rgba(38,31,24,0.78);
  font-size: 1.02rem;
  line-height: 1.68;
  font-weight: 650;
}
.route-date {
  margin-top: 8px;
  color: rgba(68,70,35,0.78);
  font-weight: 850;
  font-size: 0.98rem;
}
.route-detail-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.route-detail-list li {
  position: relative;
  padding-right: 22px;
  color: rgba(38,31,24,0.72);
  line-height: 1.56;
  font-size: 0.98rem;
}
.route-detail-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), #e8c4a3);
  box-shadow: 0 0 0 5px rgba(68,70,35,0.08);
}
.route-question {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  color: var(--sage);
  background: rgba(68,70,35,0.08);
  font-weight: 850;
  line-height: 1.45;
}
.route-photo-chip {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 4%;
  width: 176px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 24px 58px rgba(0,0,0,0.32);
  transform: translateX(-12%) rotate(-5deg);
  pointer-events: none;
}
.route-photo-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.route-photo-chip img { width: 100%; height: 210px; object-fit: cover; }
.route-progress-label {
  position: absolute;
  z-index: 1;
  left: 5%; top: 7%;
  color: rgba(255,255,255,0.66);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: -0.08em;
}

.not-trip-section { padding: 110px 0; background: #fffaf2; }
.not-trip-card {
  position: relative;
  overflow: hidden;
  border-radius: 46px;
  padding: clamp(34px, 6vw, 78px);
  background: linear-gradient(135deg, rgba(68,70,35,0.96), rgba(31,45,24,0.94));
  color: #fff;
  box-shadow: var(--shadow);
}
.not-trip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../journeys/georgia/gallery_stream.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: screen;
}
.not-trip-content { position: relative; z-index: 1; max-width: 860px; }
.not-trip-card h2 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 5.8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.not-trip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
}
.not-trip-item {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}
.not-trip-item strong { display: block; margin-bottom: 8px; color: #f6ddc4; font-size: 1.18rem; }
.not-trip-item span { color: rgba(255,255,255,0.78); line-height: 1.65; }

.suitability-section { padding: 108px 0; }
.suitability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.suitability-list {
  display: grid;
  gap: 14px;
}
.fit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(38,31,24,0.10);
  box-shadow: 0 16px 42px rgba(31,27,20,0.07);
}
.fit-item span {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(50,139,134,0.12);
  color: var(--turquoise);
  font-weight: 900;
}
.fit-item strong { display: block; color: var(--sage); margin-bottom: 4px; font-size: 1.14rem; }
.fit-item p { margin: 0; color: var(--muted); line-height: 1.65; }
.suitability-note {
  margin-top: 22px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(168,102,47,0.10);
  color: rgba(38,31,24,0.76);
  line-height: 1.75;
}

.gallery-section { padding: 108px 0; background: #fffaf2; overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  grid-auto-rows: 230px;
  gap: 16px;
  margin-top: 40px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 22px 58px rgba(31,27,20,0.12);
  background: #ddd;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(.19,1,.22,1); }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile.large { grid-row: span 2; }
.gallery-tile.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.institute-section { padding: 108px 0; }
.institute-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 48px;
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow);
  border: 1px solid rgba(38,31,24,0.10);
}
.institute-image {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  overflow: hidden;
}
.institute-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.institute-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.institute-values span {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--sage);
  background: rgba(68,70,35,0.10);
  font-weight: 800;
}

.faq-section { padding: 105px 0; background: #fffaf2; }
.faq-wrap { max-width: 920px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(38,31,24,0.12);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--sage);
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-align: right;
}
.faq-question::after {
  content: '+';
  width: 36px; height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--earth);
  border: 1px solid rgba(168,102,47,0.28);
  transition: transform 240ms ease;
}
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 330ms ease;
}
.faq-answer p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

.lead-section {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(248,242,232,0.84), rgba(248,242,232,0.96)),
    url('../journeys/georgia/route_day5.webp') center/cover fixed;
}
.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.lead-card {
  padding: clamp(28px, 4.5vw, 48px);
  border-radius: 42px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(38,31,24,0.10);
  backdrop-filter: blur(18px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: grid; gap: 8px; margin-bottom: 14px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--sage); font-weight: 900; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(38,31,24,0.12);
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 15px;
  outline: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-field textarea { min-height: 116px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(50,139,134,0.65);
  box-shadow: 0 0 0 4px rgba(50,139,134,0.12);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
  margin: 6px 0 18px;
}
.consent input { margin-top: 5px; }
.form-note {
  margin: 12px 0 0;
  color: var(--turquoise);
  font-weight: 800;
}
.direct-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(38,31,24,0.12);
  background: rgba(255,255,255,0.58);
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  background: #232617;
  color: rgba(255,255,255,0.70);
  text-align: center;
}
.site-footer strong { color: #fff; }

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(.19,1,.22,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.float-soft { animation: floatSoft 7s ease-in-out infinite; }
@keyframes heroBreath {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1.16) translate3d(-1.4%, 1.1%, 0); }
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  25%, 65% { opacity: 1; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}


@media (max-width: 1240px) and (min-width: 981px) {
  .route-photo-chip { display: none; }
  .route-card { width: min(560px, 94%); }
}

@media (max-width: 980px) {
  .hero-content,
  .intro-grid,
  .suitability-layout,
  .institute-card,
  .lead-layout,
  .route-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo-stack { min-height: 460px; max-width: 560px; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pillars-grid,
  .not-trip-grid { grid-template-columns: 1fr; }
  .route-section { height: auto; }
  .route-sticky { position: relative; min-height: auto; }
  .route-inner { padding: 92px 0; }
  .route-visual { min-height: auto; display: grid; gap: 18px; }
  .route-map,
  .route-dots,
  .route-progress-label,
  .route-photo-chip { display: none; }
  .route-card {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
  }
  .route-bg img { opacity: 1; }
  .route-bg img:not(:first-child) { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-tile.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .section-shell { width: min(100% - 28px, 1180px); }
  .journey-hero { min-height: 100svh; }
  .hero-content { padding-top: 120px; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .ghost-button, .cta-button { width: 100%; }
  .hero-photo-stack { min-height: 350px; }
  .hero-floating-note { width: 86%; }
  .intro-section, .pillars-section, .not-trip-section, .suitability-section, .gallery-section, .institute-section, .faq-section, .lead-section { padding: 72px 0; }
  .intro-panel, .institute-image { min-height: 380px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-tile.wide, .gallery-tile.large { grid-column: auto; grid-row: auto; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition-duration: 1ms !important; }
  .hero-image { transform: none; }
}

/* V4 - route as a real scrolling journey line */
.route-road-section {
  --route-progress: 0;
  position: relative;
  height: auto;
  min-height: 100vh;
  padding: 0;
  background: #10150e;
  color: #fff;
  overflow: clip;
}
.route-road-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  z-index: 0;
  overflow: hidden;
}
.route-road-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 800ms ease, transform 1600ms ease;
}
.route-road-bg img.is-active { opacity: 1; transform: scale(1.02); }
.route-road-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(246,221,196,0.12), transparent 34%),
    linear-gradient(90deg, rgba(8,12,7,0.78), rgba(8,12,7,0.52) 48%, rgba(8,12,7,0.82)),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.44));
}
.route-road-shell {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
}
.route-road-intro {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  text-align: right;
}
.route-road-intro .kicker { color: #e8c4a3; }
.route-road-intro .kicker::before,
.route-road-intro .kicker::after { background: rgba(232,196,163,0.58); }
.route-road-intro h2 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 7.1rem);
  line-height: .96;
  letter-spacing: -0.055em;
}
.route-road-intro p {
  margin: 0;
  max-width: 670px;
  color: rgba(255,255,255,0.82);
  font-size: 1.25rem;
  line-height: 1.85;
}
.route-road-wrap {
  position: relative;
  padding: 36px 0 80px;
}
.route-line-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  z-index: 1;
  pointer-events: none;
}
.route-road-map {
  position: absolute;
  left: 50%;
  top: 5vh;
  width: min(34vw, 420px);
  height: 90vh;
  transform: translateX(-50%);
  opacity: .98;
  filter: drop-shadow(0 22px 35px rgba(0,0,0,.32));
}
.route-road-section .route-path-base,
.route-road-section .route-path-fill {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.route-road-section .route-path-base {
  stroke: rgba(255,255,255,0.20);
  stroke-width: 13;
}
.route-road-section .route-path-fill {
  stroke: #e8c4a3;
  stroke-width: 14;
  stroke-dasharray: var(--path-length, 1000);
  stroke-dashoffset: calc(var(--path-length, 1000) * (1 - var(--route-progress)));
  transition: stroke-dashoffset 90ms linear;
}
.route-road-dots {
  position: absolute;
  left: 50%;
  top: 5vh;
  width: min(34vw, 420px);
  height: 90vh;
  transform: translateX(-50%);
}
.route-road-section .route-dot {
  position: absolute;
  left: 50%;
  right: auto;
  top: var(--dot-y);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(15px);
  transform: translate(-50%, -50%) scale(.88);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
  transition: transform 320ms ease, background 320ms ease, color 320ms ease, box-shadow 320ms ease;
}
.route-road-section .route-dot.is-active {
  color: var(--ink);
  background: #f6ddc4;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 13px rgba(246,221,196,0.15), 0 24px 54px rgba(0,0,0,0.32);
}
.route-road-section .route-progress-label {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.09);
  font-weight: 900;
  font-size: clamp(7rem, 18vw, 18rem);
  letter-spacing: -0.1em;
}
.route-stop {
  position: relative;
  z-index: 3;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  opacity: .72;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.route-stop.is-active {
  opacity: 1;
  transform: translateY(0);
}
.route-stop-pin {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--ink);
  background: #f6ddc4;
  box-shadow: 0 0 0 16px rgba(246,221,196,.12), 0 25px 55px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.62);
}
.route-stop-card {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  padding: clamp(26px, 3.2vw, 44px);
  border-radius: 34px;
  background: rgba(248,242,232,0.97);
  color: var(--ink);
  box-shadow: 0 28px 92px rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.66);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.route-stop-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--turquoise), #e8c4a3, var(--earth));
}
.route-stop-image {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 28px 82px rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.22);
  transform: rotate(-2deg);
}
.route-stop-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1100ms ease;
}
.route-stop.is-active .route-stop-image img { transform: scale(1); }
.route-stop-alt .route-stop-card { grid-column: 1; }
.route-stop-alt .route-stop-image { grid-column: 3; transform: rotate(2deg); }
.route-road-section .route-day-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--earth);
  font-weight: 900;
}
.route-road-section .route-date {
  color: rgba(68,70,35,0.72);
  font-weight: 900;
  font-size: .98rem;
  margin-bottom: 12px;
}
.route-road-section h3 {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.route-road-section p {
  margin: 0 0 18px;
  color: rgba(47,45,35,0.82);
  font-size: 1.08rem;
  line-height: 1.85;
}
.route-road-section .route-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.route-road-section .route-detail-list li {
  position: relative;
  padding-right: 28px;
  color: rgba(47,45,35,0.78);
  line-height: 1.72;
  font-weight: 650;
}
.route-road-section .route-detail-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: .66em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 6px rgba(50,139,134,0.10);
}
.route-road-section .route-question {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(68,70,35,0.10);
  color: var(--sage);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .route-stop {
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    gap: 20px;
  }
  .route-stop-image { min-height: 310px; }
  .route-stop-pin { width: 64px; height: 64px; }
}

@media (max-width: 820px) {
  .route-road-shell { padding: 90px 0 84px; }
  .route-road-intro {
    min-height: auto;
    margin: 0 0 60px;
  }
  .route-road-wrap { padding: 0; }
  .route-line-wrap {
    position: absolute;
    top: 0;
    right: 18px;
    left: auto;
    height: 100%;
    margin-bottom: 0;
  }
  .route-road-map {
    left: auto;
    right: 0;
    top: 0;
    width: 72px;
    height: 100%;
    transform: none;
    display: none;
  }
  .route-road-dots,
  .route-road-section .route-progress-label { display: none; }
  .route-road-wrap::before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    right: 20px;
    width: 4px;
    border-radius: 99px;
    background: linear-gradient(180deg, #e8c4a3, rgba(232,196,163,0.18));
    opacity: .9;
  }
  .route-stop,
  .route-stop-alt {
    min-height: auto;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 54px;
    opacity: 1;
    transform: none;
  }
  .route-stop-pin {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    font-size: .9rem;
    position: sticky;
    top: 92px;
  }
  .route-stop-card,
  .route-stop-alt .route-stop-card {
    grid-column: 2;
    grid-row: 1;
  }
  .route-stop-image,
  .route-stop-alt .route-stop-image {
    grid-column: 2;
    grid-row: 2;
    min-height: 260px;
    transform: none;
    border-radius: 28px;
  }
  .route-road-section h3 { font-size: clamp(2rem, 10vw, 3.2rem); }
}

@media (max-width: 560px) {
  .route-road-intro h2 { font-size: clamp(3.1rem, 16vw, 4.9rem); }
  .route-road-intro p { font-size: 1.08rem; }
  .route-stop-card { padding: 24px 20px; border-radius: 26px; }
  .route-stop-image { min-height: 220px; }
}
.route-road-section .route-road-map { display: block; }
.route-road-section .route-road-bg img { display: block; }
@media (max-width: 820px) {
  .route-road-section .route-road-map { display: none; }
}

/* v5 - stronger registration flow and cleaner route experience */
.quick-lead-section {
  padding: 0 0 58px;
  position: relative;
  z-index: 4;
}
.quick-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(50,139,134,.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(248,242,232,.96));
  box-shadow: 0 28px 90px rgba(68,70,35,.14);
  border: 1px solid rgba(255,255,255,.78);
}
.quick-lead-copy h2 {
  margin: 16px 0 12px;
  color: var(--sage);
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.quick-lead-copy p {
  max-width: 640px;
  color: rgba(47,45,35,.74);
  font-size: 1.18rem;
  line-height: 1.75;
  margin: 0;
}
.quick-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(68,70,35,.10);
}
.quick-lead-form .form-field { margin: 0; }
.quick-lead-form .cta-button,
.quick-lead-form .ghost-dark-button,
.quick-lead-form .form-note { grid-column: 1 / -1; }
.ghost-dark-button {
  min-height: 50px;
  border: 1px solid rgba(68,70,35,.18);
  border-radius: 999px;
  background: rgba(68,70,35,.07);
  color: var(--sage);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}
.ghost-dark-button:hover { transform: translateY(-2px); background: rgba(68,70,35,.11); }

.floating-lead-cta {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  transition: transform .28s ease, opacity .28s ease;
}
.floating-lead-button {
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 999px;
  background: linear-gradient(135deg, #328b86, #444623);
  color: #fff;
  box-shadow: 0 20px 48px rgba(0,0,0,.24);
  font: inherit;
  cursor: pointer;
  text-align: right;
}
.floating-lead-button span { font-size: .86rem; opacity: .84; font-weight: 700; }
.floating-lead-button strong { font-size: 1.05rem; font-weight: 900; }
.floating-lead-button:hover { transform: translateY(-3px); }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,18,11,.62);
  backdrop-filter: blur(10px);
}
.lead-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: rgba(248,242,232,.98);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 38px 120px rgba(0,0,0,.36);
  transform: translateY(18px) scale(.98);
  transition: transform .28s ease;
}
.lead-modal.is-open .lead-modal-panel { transform: translateY(0) scale(1); }
.lead-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(68,70,35,.14);
  background: rgba(255,255,255,.78);
  color: var(--sage);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.lead-modal-copy h2 {
  margin: 16px 0 10px;
  color: var(--sage);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.lead-modal-copy p {
  margin: 0 0 20px;
  color: rgba(47,45,35,.75);
  font-size: 1.12rem;
  line-height: 1.65;
}
.modal-lead-form .cta-button { width: 100%; }

.route-road-bg::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(246,221,196,.22), transparent 35%),
    linear-gradient(90deg, rgba(10,15,9,.52), rgba(10,15,9,.32) 46%, rgba(10,15,9,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.24));
}
.route-road-intro {
  min-height: 56vh;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 38px;
  background: rgba(248,242,232,.88);
  color: var(--ink);
  box-shadow: 0 24px 74px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
}
.route-road-intro .kicker { color: var(--earth); }
.route-road-intro .kicker::before,
.route-road-intro .kicker::after { background: rgba(168,102,47,.42); }
.route-road-intro h2 { color: var(--sage); text-shadow: none; }
.route-road-intro p { color: rgba(47,45,35,.78); }
.route-mini-stats span {
  color: var(--sage);
  background: rgba(68,70,35,.08);
  border-color: rgba(68,70,35,.12);
}
.route-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.route-cta-primary,
.route-cta-secondary {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}
.route-cta-primary {
  background: linear-gradient(135deg, var(--turquoise), var(--sage));
  color: #fff;
  box-shadow: 0 16px 36px rgba(50,139,134,.24);
}
.route-cta-secondary {
  border: 1px solid rgba(68,70,35,.18);
  background: rgba(255,255,255,.52);
  color: var(--sage);
}
.route-road-section .route-progress-label { display: none; }
.route-road-section .route-dot {
  width: 38px;
  height: 38px;
  color: transparent;
  opacity: .42;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.route-road-section .route-dot.is-active {
  width: 74px;
  height: 74px;
  opacity: 1;
  color: var(--ink);
  background: #f6ddc4;
  border-color: rgba(255,255,255,.78);
  transform: translate(-50%, -50%) scale(1.02);
  box-shadow: 0 0 0 14px rgba(246,221,196,.18), 0 26px 56px rgba(0,0,0,.30);
}
.route-stop-pin {
  display: none;
}
.route-stop-card {
  min-height: 0;
}
.route-stop.is-active .route-stop-card {
  box-shadow: 0 34px 104px rgba(0,0,0,.34), 0 0 0 1px rgba(232,196,163,.28);
}

@media (max-width: 820px) {
  .quick-lead-card { grid-template-columns: 1fr; }
  .quick-lead-form { grid-template-columns: 1fr; }
  .floating-lead-cta { left: 14px; right: 14px; bottom: 14px; }
  .floating-lead-button { width: 100%; text-align: center; justify-items: center; }
  .route-road-intro { margin-bottom: 48px; }
  .route-road-section .route-bg::after { background: rgba(10,15,9,.38); }
  .route-stop-pin { display: grid; }
}
@media (max-width: 560px) {
  .lead-modal { padding: 12px; }
  .lead-modal-panel { border-radius: 26px; }
}

/* lead email fields */
.quick-lead-form .form-field{min-width:0}

/* v28 - unified lead form layout */
.modal-lead-form,
.quick-lead-form,
.final-form,
form.lead-card,
form[data-lead-form] .form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px 16px;
  align-items: end;
}

.modal-lead-form .form-field,
.quick-lead-form .form-field,
.final-form .form-field,
form.lead-card .form-field,
form[data-lead-form] .form-grid .form-field {
  min-width: 0;
}

.modal-lead-form .email-field,
.quick-lead-form .email-field,
.final-form .email-field,
form.lead-card .email-field,
form[data-lead-form] .form-grid .email-field,
.modal-lead-form .full,
.quick-lead-form .full,
.final-form .full,
form.lead-card .full,
form[data-lead-form] .form-grid .full {
  grid-column: 1 / -1;
}

.modal-lead-form .consent,
.quick-lead-form .consent,
.final-form .consent,
form.lead-card .consent,
form[data-lead-form] > .consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0 18px;
  line-height: 1.55;
}

.modal-lead-form .consent input,
.quick-lead-form .consent input,
.final-form .consent input,
form.lead-card .consent input,
form[data-lead-form] > .consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--turquoise, #328b86);
}

.modal-lead-form .consent span,
.quick-lead-form .consent span,
.final-form .consent span,
form.lead-card .consent span,
form[data-lead-form] > .consent span {
  font-size: .92rem;
  font-weight: 700;
}

.modal-lead-form .cta-button,
.final-form .cta-button,
form.lead-card .cta-button,
form[data-lead-form] > .cta-button {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.quick-lead-form .cta-button,
.quick-lead-form .ghost-dark-button {
  grid-column: auto;
  width: 100%;
  margin-top: 2px;
}

.modal-lead-form .form-note,
.quick-lead-form .form-note,
.final-form .form-note,
form.lead-card .form-note,
form[data-lead-form] > .form-note {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .modal-lead-form,
  .quick-lead-form,
  .final-form,
  .lead-card,
  form[data-lead-form] .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-lead-form .cta-button,
  .quick-lead-form .ghost-dark-button {
    grid-column: 1 / -1;
  }
}



/* v31: single clear CTA in lead forms */
.quick-lead-form .cta-button {
  grid-column: 1 / -1 !important;
  width: 100%;
}
.quick-lead-form .ghost-dark-button {
  display: none !important;
}
