/* ==========================================================================
   Senior Residence Solutions — shared design system (v2)
   Palette and type follow assets/css/home-v2.css (owned by Codex) so the
   inner pages and the home page read as one product.
   RTL / Hebrew-first. Logical properties only. WCAG AA.
   Ownership: Codex. See AGENTS.md before editing.
   ========================================================================== */

:root {
  /* Core palette — matches home-v2.css */
  --forest:      #183d32;
  --forest-deep: #102820;
  --ink:         #163128;
  --cream:       #f4f0e7;
  --cream-2:     #e8e2d6;
  --paper:       #fffdf8;
  --gold:        #d7a75e;
  --gold-soft:   #f3c783;
  --gold-deep:   #78551f;   /* AA-safe gold for text on paper/cream/cream-2 */
  --line:        #c7c5bc;
  --line-soft:   #d8d4ca;
  --muted:       #5d6a61;

  --font: "Heebo", "Assistant", "Segoe UI", system-ui, sans-serif;
  --font-display: "Newsreader", "Heebo", Georgia, serif;

  --shell: 1180px;
  --shell-narrow: 780px;
  --header-h: 92px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: 500ms;

  --shadow-sm: 0 6px 20px rgba(16, 40, 32, .07);
  --shadow-md: 0 18px 50px rgba(16, 40, 32, .13);
  --shadow-lg: 0 30px 80px rgba(16, 40, 32, .28);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Anchor targets must clear the fixed header instead of hiding under it. */
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--forest-deep);
  color: #fff;
  padding: .85rem 1.4rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* The root scroll-padding above is the single source of truth for anchor
   clearance. Do not also add scroll-margin to targets: both offsets stack. */

/* ==========================================================================
   Everything below is scoped to body.v2 (the inner pages) so it cannot
   interfere with index.html, which uses body.home-v2 + home-v2.css.
   ========================================================================== */

body.v2 {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.v2 * { box-sizing: border-box; }
body.v2 a { color: inherit; }
body.v2 h1, body.v2 h2, body.v2 h3, body.v2 h4 { margin: 0; line-height: 1.1; letter-spacing: -.03em; }
body.v2 p { margin: 0 0 1.1em; }
body.v2 p:last-child { margin-bottom: 0; }

.v2 .shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}
.v2 .shell-narrow { width: min(var(--shell-narrow), calc(100% - 48px)); }

.v2 .section { padding-block: clamp(70px, 9vw, 130px); }
.v2 .section-sm { padding-block: clamp(50px, 6vw, 80px); }

.v2 .band-paper { background: var(--paper); }
.v2 .band-cream { background: var(--cream); }
.v2 .band-cream2 { background: var(--cream-2); }
.v2 .band-forest { background: var(--forest); color: #fff; }

/* ---------- Typography ---------- */
.v2 .kicker {
  display: block;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.on-dark .kicker, .v2 .band-forest .kicker { color: var(--gold-soft); }

.v2 h1 { font-size: clamp(38px, 5.4vw, 72px); }
.v2 h2 { font-size: clamp(32px, 4.4vw, 58px); }
.v2 h3 { font-size: clamp(21px, 1.6vw, 27px); letter-spacing: -.02em; }

.v2 .display { font-family: var(--font-display); font-weight: 600; }
.v2 em.display { font-style: italic; color: var(--gold); }

.v2 .lede { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.55; max-width: 40ch; }

.v2 .section-head { margin-bottom: clamp(40px, 5vw, 70px); max-width: 46rem; }
.v2 .section-head p { color: var(--muted); margin-top: 1.1rem; }
.on-dark .section-head p { color: rgba(255,255,255,.82); }

/* Brand emphasis inside body copy */
.v2 .hl { color: var(--gold-deep); font-weight: 700; }
.on-dark .hl, .v2 .band-forest .hl { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 250ms var(--ease), background-color 250ms var(--ease),
              color 250ms var(--ease), border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.v2 .btn:hover { transform: translateY(-2px); }
.v2 .btn:active { transform: translateY(0); }
.v2 .btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

.v2 .btn-primary { background: var(--gold); color: #10271f; box-shadow: var(--shadow-sm); }
.v2 .btn-primary:hover { background: var(--gold-soft); box-shadow: var(--shadow-md); }

.v2 .btn-dark { background: var(--forest); color: #fff; }
.v2 .btn-dark:hover { background: var(--forest-deep); }

.v2 .btn-outline { background: transparent; color: var(--ink); border-color: rgba(22,49,40,.35); }
.v2 .btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.on-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); }
.on-dark .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.v2 .btn-sm { min-height: 44px; padding: 0 22px; font-size: 15px; }

.v2 .text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  transition: gap 250ms var(--ease);
}
.v2 .text-link:hover { gap: 18px; }
.on-dark .text-link { border-bottom-color: var(--gold-soft); }

.v2 .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 2rem; }

/* ---------- Header (mirrors home-v2.css so all pages match) ---------- */
.v2 .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.v2 .site-header.is-scrolled {
  background: rgba(18, 43, 36, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,.13);
  color: #fff;                      /* scrolled bar is always dark */
}

/* The header floats over the hero with no background of its own, so its text
   colour must match the hero beneath it. Pages whose hero is light
   (.page-hero-light) put .on-light on the header. Forgetting this renders the
   entire nav white-on-cream — it has been a real bug, do not remove. */
.v2 .site-header.on-light:not(.is-scrolled) { color: var(--ink); }
.v2 .site-header.on-light:not(.is-scrolled) .nav-toggle { color: var(--ink); }
.v2 .site-header .shell {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 38px;
  width: min(var(--shell), calc(100% - 48px));
}

.v2 .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  margin-inline-end: auto;
  text-decoration: none;
  flex: 0 0 auto;
}
.v2 .brand span {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.v2 .brand .brand-leaf::before {
  content: "";
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 14px;
  width: 16px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(34deg);
}
.v2 .brand .brand-leaf::after {
  content: "";
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 24px;
  width: 2px;
  height: 24px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(34deg);
  transform-origin: top center;
}
.v2 .brand .brand-leaf,
.v2-brand .brand-leaf {
  width: 56px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: url("../img/thailand-living-lotus-logo.svg") center / contain no-repeat;
}
.v2 .brand .brand-leaf::before,
.v2 .brand .brand-leaf::after,
.v2-brand .brand-leaf::before,
.v2-brand .brand-leaf::after { content: none; }
.v2 .brand b { font-size: 15px; line-height: 1.1; letter-spacing: .04em; white-space: nowrap; }
.v2 .brand b small { display: block; margin-block-start: 4px; font-size: 9px; font-weight: 500; letter-spacing: 0; direction: rtl; }

.v2 .nav-list {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  flex-wrap: nowrap;
}
.v2 .nav-list li { flex: 0 0 auto; }
.v2 .nav-list a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  opacity: .88;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: opacity 200ms var(--ease), border-color 200ms var(--ease);
}
.v2 .nav-list a:hover { opacity: 1; }
.v2 .nav-list a[aria-current="page"] { opacity: 1; border-bottom-color: var(--gold); }

.v2 .nav-toggle {
  display: none;
  flex: 0 0 48px;
  width: 48px; min-width: 48px; height: 48px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}

.v2 .mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 10px 24px 25px;
  background: var(--forest-deep);
}
.v2 .mobile-nav.is-open { display: flex; }
.v2 .mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.v2 .mobile-nav .btn { margin-top: 12px; }

@media (max-width: 1100px) {
  .v2 .nav-list, .v2 .site-header .btn { display: none; }
  .v2 .nav-toggle { display: block; }
  .v2 .site-header .shell { height: 74px; }
  :root { --header-h: 74px; }
}

/* ---------- Page hero (inner pages) ---------- */
.v2 .page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62svh;
  padding-block: calc(var(--header-h) + 60px) clamp(50px, 7vw, 90px);
  background: var(--forest);
  color: #fff;
  overflow: hidden;
}
.v2 .page-hero::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-end: -10%;
  width: 60%;
  background: radial-gradient(closest-side, rgba(215,167,94,.16), transparent 70%);
  pointer-events: none;
}
.v2 .page-hero .shell { position: relative; z-index: 1; }
.v2 .page-hero h1 { margin-bottom: 1.1rem; }
.v2 .page-hero .lede { color: rgba(255,255,255,.9); }

.v2 .page-hero-light {
  background: var(--cream);
  color: var(--ink);
  min-height: 46svh;
}
.v2 .page-hero-light::after { display: none; }
.v2 .page-hero-light .lede { color: var(--muted); }

.v2 .hero-split { display: grid; gap: clamp(32px, 5vw, 70px); align-items: center; }
@media (min-width: 900px) { .v2 .hero-split { grid-template-columns: 1.05fr .95fr; } }

/* ---------- Cards / editorial grid ---------- */
.v2 .grid { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.v2 .grid > * { background: var(--paper); }
@media (min-width: 700px)  { .v2 .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .v2 .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) and (max-width: 999px) { .v2 .grid-3 { grid-template-columns: repeat(2, 1fr); } }

.v2 .cell { padding: clamp(30px, 3vw, 46px) clamp(22px, 2.2vw, 34px); }
.v2 .cell .num { color: var(--gold-deep); font-weight: 700; font-size: 15px; }
.v2 .cell h3 { margin: 12px 0; }
.v2 .cell p { color: var(--muted); font-size: 16.5px; }
.v2 .band-cream .cell, .v2 .band-cream2 .cell { background: transparent; }
.v2 .band-cream .grid > *, .v2 .band-cream2 .grid > * { background: transparent; }

/* Plain card grid (gap-based, as opposed to the 1px editorial .grid) */
.v2 .cards { display: grid; gap: 20px; }
@media (min-width: 700px)  { .v2 .cards-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .v2 .cards-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) and (max-width: 999px) { .v2 .cards-3 { grid-template-columns: repeat(2, 1fr); } }

.v2 .card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(26px, 2.6vw, 40px);
  box-shadow: var(--shadow-sm);
}
.v2 .card h3 { margin-bottom: .7rem; }
.v2 .card p { color: var(--muted); }

/* Pull-quote / emphasised client message */
.v2 .msg {
  margin-top: 1.4rem;
  padding: 1.1rem 1.3rem;
  border-inline-start: 3px solid var(--gold);
  background: rgba(215,167,94,.10);
  font-weight: 700;
}
.on-dark .msg { background: rgba(255,255,255,.07); }

/* ---------- Numbered steps ---------- */
.v2 .step {
  display: grid;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
  padding-block: clamp(40px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
}
.v2 .step:last-of-type { border-bottom: 0; }
.v2 .step-num {
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 88px);
  line-height: .9;
  color: var(--gold);
  opacity: .55;
  direction: ltr;
}
.v2 .step h3 { margin-bottom: 1rem; }
.v2 .step p { color: var(--muted); }
@media (min-width: 950px) {
  .v2 .step { grid-template-columns: 140px 1fr .85fr; }
  .v2 .step:nth-of-type(even) .step-visual { order: -1; }
}

/* ---------- Comparison table ---------- */
.v2 .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.v2 .compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--paper);
}
.v2 .compare-table th, .v2 .compare-table td {
  padding: 1.2rem 1.3rem;
  text-align: start;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.v2 .compare-table thead th {
  background: var(--forest);
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.v2 .compare-table tbody th { font-weight: 700; background: var(--cream); white-space: nowrap; }
.v2 .compare-table .col-thailand { background: rgba(215,167,94,.13); font-weight: 700; }

@media (max-width: 760px) {
  .v2 .compare-table { min-width: 0; }
  .v2 .compare-table thead { display: none; }
  .v2 .compare-table tbody, .v2 .compare-table tr,
  .v2 .compare-table th, .v2 .compare-table td { display: block; width: 100%; }
  .v2 .compare-table tr { margin-bottom: 1.2rem; border: 1px solid var(--line); }
  .v2 .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: .3rem;
  }
}

/* "No deposit" — required beside every price */
.v2 .no-deposit {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 800;
  font-size: 15px;
  color: #10271f;
  background: var(--gold);
  padding: .4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.v2 .price-line { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.v2 .price-label { width: 100%; color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.v2 .price-value { font-size: 26px; font-weight: 700; font-family: var(--font-display); }

.v2 .badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: .32rem .85rem;
  border-radius: 999px;
  background: var(--gold);
  color: #10271f;
}
.v2 .badge-soon { background: var(--line); color: #3d4a41; }

.v2 .tag {
  padding: .45rem 1.05rem;
  border-radius: 999px;
  background: rgba(215,167,94,.16);
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 15px;
}
.on-dark .tag { background: rgba(255,255,255,.12); color: #fff; }
.v2 .tag-row { display: flex; flex-wrap: wrap; gap: .6rem; }

.v2 .check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.v2 .check-list li { position: relative; padding-inline-start: 1.9rem; }
.v2 .check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.on-dark .check-list li::before { color: var(--gold-soft); }

/* ---------- Trust bar ---------- */
.v2 .trust-bar { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 700px) { .v2 .trust-bar { grid-template-columns: repeat(4, 1fr); } }
.v2 .trust-item { background: var(--paper); padding: 34px 20px; text-align: center; }
.v2 .band-cream .trust-item, .v2 .band-cream2 .trust-item { background: transparent; }
.v2 .trust-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  color: var(--gold-deep);
  direction: ltr;
}
.v2 .trust-label { margin-top: .6rem; font-weight: 600; font-size: 16px; }

/* ---------- Accordion ---------- */
.v2 .accordion { border-top: 1px solid var(--line); }
.v2 .accordion-item { border-bottom: 1px solid var(--line); }
.v2 .accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1.3rem .2rem;
  background: none;
  border: 0;
  text-align: start;
  font-weight: 700;
  font-size: 19px;
  cursor: pointer;
}
.v2 .accordion-trigger .chev {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(215,167,94,.18);
  color: var(--gold-deep);
  transition: transform 300ms var(--ease);
}
.v2 .accordion-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.v2 .accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease); }
.v2 .accordion-panel > div { overflow: hidden; }
.v2 .accordion-panel.is-open { grid-template-rows: 1fr; }
.v2 .accordion-panel .inner,
.v2 .accordion-panel > div > * { color: var(--muted); max-width: 62ch; }
.v2 .accordion-panel > div > *:last-child { margin-bottom: 1.6rem; }

/* ---------- Gallery + lightbox ---------- */
.v2 .gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32vw);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.v2 .gallery-rail > * { scroll-snap-align: start; }
.v2 .gallery-item {
  border: 0; background: none; padding: 0; width: 100%;
  cursor: zoom-in; overflow: hidden; border-radius: 3px;
}
.v2 .gallery-caption { font-size: 15px; color: var(--muted); margin-top: .5rem; text-align: start; }
.v2 .thumb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 760px) { .v2 .thumb-grid { grid-template-columns: repeat(5, 1fr); } }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 1.5rem;
  background: rgba(8, 20, 15, .94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 280ms var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: min(1100px, 92vw); width: 100%; }
.lightbox-close {
  position: absolute; inset-block-start: 1.25rem; inset-inline-end: 1.25rem;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 1.5rem; cursor: pointer; display: grid; place-items: center;
}

/* ---------- Timeline ---------- */
.v2 .timeline { position: relative; display: grid; gap: 6px; }
.v2 .timeline::before {
  content: "";
  position: absolute; inset-block: 0; inset-inline-start: 27px;
  width: 1px; background: var(--line);
}
.v2 .tl-item { position: relative; padding-inline-start: 76px; padding-block: 14px 30px; }
.v2 .tl-day {
  position: absolute; inset-inline-start: 0; inset-block-start: 10px;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest); color: #fff;
  font-weight: 700; font-size: 14px; line-height: 1.1; text-align: center;
  box-shadow: 0 0 0 8px var(--cream);
}
.v2 .band-paper .tl-day { box-shadow: 0 0 0 8px var(--paper); }
.v2 .tl-meta { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.v2 .tl-item h3 { margin: .4rem 0 .6rem; }
.v2 .tl-item p { color: var(--muted); }

/* ---------- Placeholders ---------- */
.ph {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: var(--ph-ratio, 3 / 2);
  width: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(24,61,50,.055) 0 14px, rgba(24,61,50,.02) 14px 28px),
    var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
  padding: 1.2rem;
}
.ph-name {
  font-family: ui-monospace, Consolas, monospace;
  font-size: clamp(.7rem, .55rem + .6vw, .9rem);
  font-weight: 700; letter-spacing: .04em;
  color: var(--gold-deep); direction: ltr; word-break: break-all;
}
.ph-meta { font-size: .78rem; color: var(--muted); margin-top: .35rem; direction: ltr; }
.ph-note { font-size: .8rem; color: var(--muted); margin-top: .5rem; max-width: 32ch; }

/* ---------- Forms ---------- */
.v2 .form-shell { width: min(820px, calc(100% - 48px)); margin-inline: auto; }

.v2 .fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.v2 .fieldset > legend {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  padding: 0;
  margin-bottom: .5rem;
}
.v2 .fieldset-note { color: var(--muted); font-size: 16px; margin-bottom: 2rem; }

.v2 .field { margin-bottom: 1.6rem; }
.v2 .field > label, .v2 .field-label {
  display: block;
  font-weight: 600;
  margin-bottom: .55rem;
}
.v2 .req { color: #a33d2f; }

.v2 .input, .v2 .select, .v2 .textarea {
  width: 100%;
  min-height: 58px;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.v2 .input:focus, .v2 .select:focus, .v2 .textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215,167,94,.22);
  outline: none;
}
.v2 .textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
.v2 .input[aria-invalid="true"] { border-color: #a33d2f; }

.v2 .error-msg { display: none; color: #a33d2f; font-size: 15px; margin-top: .4rem; font-weight: 600; }
.v2 .error-msg.is-visible { display: block; }

.v2 .option-grid { display: grid; gap: .7rem; }
@media (min-width: 620px) { .v2 .option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .v2 .option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.v2 .option {
  display: flex; align-items: center; gap: .8rem;
  min-height: 58px;
  padding: .8rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease);
}
.v2 .option:hover { border-color: var(--gold); }
.v2 .option input { width: 22px; height: 22px; accent-color: var(--forest); flex: 0 0 auto; }
.v2 .option:has(input:checked) { border-color: var(--gold); background: rgba(215,167,94,.12); }

.v2 .form-note { font-size: 15px; color: var(--muted); margin-top: 1rem; }
.v2 .form-status {
  display: none;
  padding: 1.2rem 1.4rem;
  border-radius: 3px;
  margin-top: 1.4rem;
  font-weight: 600;
}
.v2 .form-status.is-visible { display: block; }
.v2 .form-status.is-success { background: rgba(24,61,50,.10); color: var(--forest); }
.v2 .form-status.is-error { background: rgba(163,61,47,.10); color: #8a3025; }

/* ---------- Multi-step form ---------- */
.v2 .steps-bar { margin-bottom: clamp(30px, 4vw, 52px); }
.v2 .steps-track {
  position: relative;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.v2 .steps-fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 420ms var(--ease);
}
.v2 .steps-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .8rem;
  font-size: 15px;
}
.v2 .steps-count { font-weight: 700; color: var(--gold-deep); direction: ltr; }
.v2 .steps-name { font-weight: 700; }

.v2 .form-step { display: none; }
.v2 .form-step.is-active { display: block; animation: stepIn 420ms var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.v2 .step-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.v2 .step-nav .spacer { margin-inline-start: auto; }

.v2 .summary-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .5rem; }
.v2 .summary-list li {
  display: flex; gap: 1rem; justify-content: space-between;
  padding: .7rem 0; border-bottom: 1px solid var(--line-soft); font-size: 16px;
}
.v2 .summary-list .k { color: var(--muted); }
.v2 .summary-list .val { font-weight: 700; text-align: end; }

/* ---------- FAQ ---------- */
.v2 .faq-item { padding-block: 1.5rem; border-bottom: 1px solid var(--line); }
.v2 .faq-item:last-child { border-bottom: 0; }
.v2 .faq-q { font-weight: 700; font-size: 19px; margin-bottom: .5rem; }
.v2 .faq-a { color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.v2 .cta-band { text-align: center; }
.v2 .cta-band .actions { justify-content: center; }
.v2 .cta-band p { max-width: 46ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.v2 .site-footer { padding: 70px 0 25px; background: var(--forest-deep); color: #fff; }
.v2 .site-footer .brand { color: #fff; margin-inline-end: 0; }
.v2 .footer-top { display: grid; gap: 40px; align-items: start; }
@media (min-width: 800px) { .v2 .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
.v2 .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v2 .site-footer nav a { text-decoration: none; opacity: .85; min-height: 44px; display: flex; align-items: center; }
.v2 .site-footer nav a:hover { opacity: 1; text-decoration: underline; }
.v2 .footer-contact p { margin: 0 0 .45rem; }
.v2 .footer-contact p:last-child { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.v2 .footer-contact a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.v2 .footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  margin-top: 55px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px; opacity: .75;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  z-index: 80;
  inset-block-end: 22px;
  inset-inline-end: 22px;
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #082e19;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  transition: transform 250ms var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .v2 .form-step.is-active { animation: none; }
}

@media print {
  .v2 .site-header, .v2 .mobile-nav, .wa-float, .lightbox { display: none !important; }
  body.v2 { background: #fff; color: #000; }
}

/* ---------- Real editorial photography ---------- */
.v2 .hero-photo,
.v2 .editorial-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-2);
  box-shadow: var(--shadow-lg);
}
.v2 .hero-photo picture,
.v2 .hero-photo img,
.v2 .editorial-photo picture,
.v2 .editorial-photo img { width: 100%; }
.v2 .hero-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.v2 .editorial-photo img { aspect-ratio: 3 / 2; object-fit: cover; }
.v2 .hero-photo figcaption,
.v2 .editorial-photo figcaption {
  padding: 10px 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.v2 .page-hero .hero-photo figcaption {
  background: rgba(8,31,24,.92);
  color: rgba(255,255,255,.78);
}
.v2 .page-hero-light .hero-photo figcaption {
  background: var(--paper);
  color: var(--muted);
}
.v2 .photo-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .v2 .photo-grid.cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (min-width: 900px) { .v2 .photo-grid.cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); } }
.v2 .step-visual .editorial-photo { box-shadow: var(--shadow-md); }
.v2 .step-visual .editorial-photo img { aspect-ratio: 4 / 3; }

/* ---------- Around Ban Sabai map ---------- */
.v2 .nearby-map-grid { display: grid; gap: 28px; align-items: stretch; }
@media (min-width: 900px) { .v2 .nearby-map-grid { grid-template-columns: 1.12fr .88fr; } }
.v2 .nearby-map {
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.v2 .nearby-map iframe { display: block; width: 100%; height: 100%; min-height: 540px; border: 0; }
.v2 .nearby-list { display: grid; gap: 12px; }
.v2 .nearby-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  padding: 21px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.v2 .nearby-time { color: var(--gold-deep); font-weight: 800; font-size: 15px; line-height: 1.35; }
.v2 .nearby-card h3 { font-size: 21px; margin-bottom: 7px; }
.v2 .nearby-card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.v2 .source-note { margin-top: 24px; color: var(--muted); font-size: 14px; }
.v2 .source-note a { font-weight: 700; }
@media (max-width: 620px) {
  .v2 .hero-photo img { aspect-ratio: 16 / 10; }
  .v2 .nearby-map,.v2 .nearby-map iframe { min-height: 380px; }
  .v2 .nearby-card { grid-template-columns: 72px 1fr; padding: 17px; gap: 13px; }
}

/* ===========================================================================
   Premium inner-page system — 2026 refresh
   Each tab keeps its own story while sharing one calm, high-trust visual
   language. Type and touch sizes are intentionally generous for ages 50–70.
   ========================================================================== */
body.v2 {
  --sage: #6f8f6a;
  --sage-dark: #3f654f;
  background:
    radial-gradient(circle at 9% 22%, rgba(215,167,94,.07), transparent 24rem),
    var(--paper);
}

.v2 .nav-list a,
.v2 .site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.v2 .page-hero {
  min-height: min(820px, 84svh);
  padding-block: calc(var(--header-h) + 54px) 74px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 45%),
    var(--forest-deep);
}
.v2 .page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(260px, 34vw, 560px);
  aspect-ratio: 1;
  inset-inline-start: -10vw;
  inset-block-end: -48%;
  border: 1px solid rgba(243,199,131,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(243,199,131,.025), 0 0 0 140px rgba(243,199,131,.018);
}
.v2 .page-hero::after {
  inset-inline: auto -8%;
  width: 56%;
  opacity: .85;
}
.v2 .page-hero .hero-split {
  grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr);
  gap: clamp(48px, 6vw, 96px);
}
.v2 .page-hero .hero-copy { max-width: 610px; }
.v2 .page-hero .hero-copy > p:not(.lede) {
  max-width: 56ch;
  color: rgba(255,255,255,.83);
}
.v2 .page-hero h1 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}
.v2 .page-hero .hero-photo {
  position: relative;
  border-radius: 28px 8px 28px 8px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 32px 90px rgba(0,0,0,.35);
  transform: rotate(-.6deg);
}
.v2 .page-hero .hero-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(243,199,131,.48);
  border-radius: inherit;
}
.v2 .page-hero .hero-photo img {
  aspect-ratio: 5 / 5.4;
  min-height: 490px;
  object-fit: cover;
}
.v2 .page-hero .hero-photo figcaption {
  padding: 13px 18px;
  font-size: 14px;
}

.v2.page-compare .page-hero { background: linear-gradient(130deg,#102a22 0%,#1c4639 58%,#41351f 120%); }
.v2.page-choosing .page-hero {
  padding-block: calc(var(--header-h) + 36px) 58px;
  background: linear-gradient(130deg,#162b24 0%,#254b3e 62%,#594221 125%);
}
.v2.page-choosing .page-hero h1 { font-size: clamp(42px,4vw,58px); }
.v2.page-choosing .page-hero .actions { margin-top: 1rem; }
.v2.page-discovery .page-hero { background: linear-gradient(130deg,#0f2e2b 0%,#1d5045 62%,#6b4a20 130%); }
.v2.page-center .page-hero { background: linear-gradient(130deg,#0e2b22 0%,#285143 58%,#44331e 120%); }
.v2.page-inquiry .page-hero-light {
  min-height: 680px;
  background: linear-gradient(135deg,#f5f0e5 0%,#ece4d5 54%,#dfd8c9 100%);
  color: var(--ink);
}
.v2.page-inquiry .page-hero-light .hero-copy > p { color: var(--muted); }
.v2.page-inquiry .page-hero-light .hero-photo { border-color: rgba(22,49,40,.14); }
.v2.page-inquiry .page-hero-light .hero-photo figcaption { background: var(--paper); }

.v2 .page-hero + .section {
  position: relative;
  z-index: 2;
  border-radius: 32px 32px 0 0;
  margin-top: -28px;
}
.v2 .section-head { max-width: 760px; }
.v2 .section-head h2 { text-wrap: balance; }
.v2 .section-head p { max-width: 68ch; font-size: 18px; }

.v2 .card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22,49,40,.09);
  border-radius: 22px;
  box-shadow: 0 16px 46px rgba(16,40,32,.09);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.v2 .card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  inset-inline-end: -58px;
  inset-block-start: -58px;
  border-radius: 50%;
  background: rgba(215,167,94,.12);
}
.v2 .card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(16,40,32,.14); border-color: rgba(215,167,94,.48); }
.v2 .card h3 { position: relative; z-index: 1; font-size: clamp(23px,2vw,30px); }
.v2 .card p { max-width: 62ch; }

.v2.page-compare .page-hero + .section .section-head { margin-bottom: 44px; }
.v2.page-compare .page-hero + .section .cards { gap: 22px; }
.v2.page-compare .page-hero + .section .card { min-height: 330px; display: flex; flex-direction: column; }
.v2.page-compare .page-hero + .section .card .msg { margin-top: auto; }
.v2.page-compare .page-hero + .section .card .actions { display: none; }
@media (min-width: 980px) {
  .v2.page-compare .page-hero + .section .cards-2 { grid-template-columns: repeat(12,minmax(0,1fr)); }
  .v2.page-compare .page-hero + .section .card:nth-child(4n + 1),
  .v2.page-compare .page-hero + .section .card:nth-child(4n + 4) { grid-column: span 7; }
  .v2.page-compare .page-hero + .section .card:nth-child(4n + 2),
  .v2.page-compare .page-hero + .section .card:nth-child(4n + 3) { grid-column: span 5; }
}

.v2 .table-scroll {
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(16,40,32,.12);
  border: 1px solid rgba(22,49,40,.1);
}
.v2 .compare-table th, .v2 .compare-table td { padding: 1.45rem 1.5rem; }
.v2 .compare-table tbody tr:last-child > * { border-bottom: 0; }

.v2.page-choosing main > .section:nth-of-type(2) .hero-split {
  padding: clamp(32px,5vw,64px);
  background: var(--paper);
  border: 1px solid rgba(22,49,40,.09);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.v2.page-choosing main > .section:nth-of-type(2) svg { stroke: var(--sage-dark); }
.v2 .step {
  position: relative;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(24px,3.2vw,52px);
  margin-bottom: 24px;
  padding: clamp(68px,6vw,88px) clamp(34px,4.2vw,58px) clamp(34px,4.2vw,58px);
  background: linear-gradient(145deg,var(--paper),#faf7f0);
  border: 1px solid rgba(22,49,40,.10);
  border-radius: 26px;
  box-shadow: 0 16px 48px rgba(16,40,32,.07);
}
.v2 .step:last-of-type { border-bottom: 1px solid rgba(22,49,40,.10); }
.v2 .step-num {
  position: absolute;
  inset-block-start: 24px;
  inset-inline-start: clamp(34px,4.2vw,58px);
  font-size: clamp(42px,4.6vw,68px);
  color: var(--gold-deep);
  opacity: .38;
}
.v2 .step:nth-of-type(even) .step-visual { order: initial; }
.v2 .step h3 { font-size: clamp(24px,2.1vw,32px); text-wrap: balance; }
.v2 .step-visual .editorial-photo { border-radius: 18px; box-shadow: 0 16px 40px rgba(16,40,32,.14); }
.v2 .step-visual .card { padding: 26px; border-radius: 18px; }

.v2 .timeline { max-width: 920px; margin-inline: auto; gap: 18px; }
.v2 .tl-item {
  border-radius: 20px;
  border: 1px solid rgba(22,49,40,.09);
  box-shadow: 0 12px 34px rgba(16,40,32,.07);
}
.v2 .tl-item p { max-width: 68ch; }
.v2 .source-note { max-width: 76ch; font-size: 16px; line-height: 1.7; }

.v2 .form-shell {
  width: min(900px, calc(100% - 48px));
  padding: clamp(28px,5vw,64px);
  background: var(--paper);
  border: 1px solid rgba(22,49,40,.1);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(16,40,32,.11);
}
.v2 .fieldset + .fieldset {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line-soft);
}
.v2 .context-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.4rem;
  padding: .55rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit !important;
  font-size: 15px;
  font-weight: 700;
}
.v2.page-inquiry main > .section { background: linear-gradient(180deg,var(--cream),var(--paper)); }
.v2 .step-nav { flex-wrap: wrap; }
.v2 .summary-list .val { overflow-wrap: anywhere; }
.v2 .option:has(input:disabled) { opacity: .48; cursor: not-allowed; background: var(--cream); }
.v2 .privacy-consent { margin-top: 1.5rem; padding: 1rem 1.1rem; background: var(--cream); border-radius: 14px; }
.v2 .privacy-consent label { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.55; }
.v2 .privacy-consent input { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--forest); }
.v2 .field-help { display: block; margin-top: .5rem; color: var(--muted); font-size: 14px; line-height: 1.55; }

.v2 .editorial-photo { border-radius: 20px; }
.v2 .photo-grid { gap: 22px; }
.v2 .photo-grid .editorial-photo { transition: transform 280ms var(--ease), box-shadow 280ms var(--ease); }
.v2 .photo-grid .editorial-photo:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(16,40,32,.16); }
.v2 .photo-grid .editorial-photo[role="button"] { cursor: zoom-in; }
.v2 .photo-grid .editorial-photo[role="button"]:focus-visible { outline: 4px solid var(--gold); outline-offset: 5px; }
.v2 .nearby-map { border-radius: 22px; }
.v2 .nearby-card { border-radius: 16px; transition: transform 240ms var(--ease), border-color 240ms var(--ease); }
.v2 .nearby-card:hover { transform: translateX(-4px); border-color: rgba(215,167,94,.56); }
.v2 .trust-bar { overflow: hidden; border-radius: 22px; border: 1px solid var(--line); }
.v2 .cta-band { position: relative; overflow: hidden; }
.v2 .cta-band h2 { text-wrap: balance; }

@media (max-width: 949px) {
  .v2 .page-hero { min-height: auto !important; }
  .v2 .page-hero .hero-split { grid-template-columns: 1fr; }
  .v2 .page-hero .hero-copy { max-width: 760px; }
  .v2 .page-hero h1 { max-width: 14ch; }
  .v2 .page-hero .hero-photo { width: min(680px,100%); margin-inline: auto; transform: none; }
  .v2 .page-hero .hero-photo img { aspect-ratio: 16 / 10; min-height: 0; }
  .v2 .step { grid-template-columns: 1fr; }
  .v2 .step-visual { grid-column: 1 / -1; }
  .v2 .step:nth-of-type(even) .step-visual { order: initial; }
}

@media (min-width: 950px) and (max-height: 850px) {
  .v2 .page-hero {
    min-height: 100svh;
    padding-block: calc(var(--header-h) + 26px) 34px;
  }
  .v2 .page-hero .hero-split { gap: clamp(34px,4vw,58px); }
  .v2 .page-hero h1 { font-size: clamp(42px,4.15vw,60px); }
  .v2 .page-hero .hero-copy > p { line-height: 1.55; }
  .v2 .page-hero .hero-photo img {
    min-height: 0;
    max-height: 470px;
    aspect-ratio: 16 / 13;
  }
  .v2.page-choosing .page-hero { padding-block: calc(var(--header-h) + 24px) 32px; }
  .v2.page-inquiry .page-hero-light { min-height: 100svh; }
}

@media (max-width: 620px) {
  body.v2 { font-size: 17px; }
  .v2 .shell, .v2 .shell-narrow { width: min(100% - 32px,var(--shell)); }
  .v2 .page-hero { padding-block: calc(var(--header-h) + 34px) 58px; }
  .v2 .page-hero h1 { font-size: clamp(38px,11vw,52px); }
  .v2 .page-hero .hero-photo::before { inset: 12px -10px -12px 10px; }
  .v2 .page-hero + .section { margin-top: -20px; border-radius: 22px 22px 0 0; }
  .v2 .section { padding-block: 64px; }
  .v2 .card { border-radius: 18px; }
  .v2 .step { display: block; padding: 28px 22px; border-radius: 20px; }
  .v2 .step-num { position: static; margin-bottom: 18px; }
  .v2 .step-visual { margin-top: 28px; }
  .v2 .form-shell { width: calc(100% - 24px); padding: 26px 18px; border-radius: 20px; }
  .v2 .step-nav { display: grid; grid-template-columns: 1fr; }
  .v2 .step-nav .spacer { margin-inline-start: 0; }
  .v2 .step-nav .btn { width: 100%; }
  .v2 .nearby-card { grid-template-columns: 66px 1fr; }
  .v2.page-choosing .step .actions .btn {
    width: 100%;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }
}

/* Correction brief, 22 Aug 2026. */
.v2 .comparison-value {
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: 24px 44px;
  align-items: start;
  margin-top: 24px;
  padding: 28px 30px;
  border-radius: 18px;
  background: var(--forest);
  color: #fff;
}
.v2 .comparison-value strong { font-size: clamp(22px,2.2vw,30px); line-height: 1.25; }
.v2 .comparison-value p { color: #dbe5e0; font-size: 15.5px; line-height: 1.65; }
.v2 .nearby-list-wide { grid-template-columns: repeat(2,minmax(0,1fr)); }
.v2.page-discovery .page-hero .hero-photo img { aspect-ratio: 2 / 1; }

@media (max-width: 700px) {
  .v2 .comparison-value { grid-template-columns: 1fr; padding: 24px 20px; }
  .v2 .nearby-list-wide { grid-template-columns: 1fr; }
}

/* Keep photography clean; meaningful descriptions remain in alt text. */
figure figcaption { display: none !important; }

/* ---------- Clear footer contacts + five-stage discovery collage ---------- */
.v2 .footer-contact-links {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-block: 14px 16px;
}
.v2 .site-footer .footer-contact-item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 10px;
  min-height: 46px;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  direction: rtl;
  text-decoration: none;
}
.v2 .site-footer .footer-contact-item:hover {
  border-color: rgba(243,199,131,.78);
  background: rgba(255,255,255,.1);
}
.v2 .footer-contact-label {
  font-weight: 700;
  white-space: nowrap;
}
.v2 .footer-contact-value {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
  text-align: start;
}

.v2.page-discovery .page-hero .hero-photo {
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 20px;
}
.v2.page-discovery .page-hero .hero-photo picture {
  position: relative;
  display: block;
  isolation: isolate;
}
.v2.page-discovery .page-hero .hero-photo picture::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(20% - 1.5px), rgba(255,253,248,.96) calc(20% - 1.5px) calc(20% + 1.5px), transparent calc(20% + 1.5px)),
    linear-gradient(90deg, transparent calc(40% - 1.5px), rgba(255,253,248,.96) calc(40% - 1.5px) calc(40% + 1.5px), transparent calc(40% + 1.5px)),
    linear-gradient(90deg, transparent calc(60% - 1.5px), rgba(255,253,248,.96) calc(60% - 1.5px) calc(60% + 1.5px), transparent calc(60% + 1.5px)),
    linear-gradient(90deg, transparent calc(80% - 1.5px), rgba(255,253,248,.96) calc(80% - 1.5px) calc(80% + 1.5px), transparent calc(80% + 1.5px));
  box-shadow: inset 0 0 0 1px rgba(8,31,24,.26);
}

@media (max-width: 620px) {
  .v2 .footer-contact-links { width: 100%; }
  .v2 .site-footer .footer-contact-item {
    width: min(100%, 330px);
    grid-template-columns: minmax(82px,auto) minmax(0,1fr);
    font-size: 16px;
  }
  .v2 .footer-contact-value { font-size: 16px; }
}
