/* ===== RO BADRUM — luxury bathrooms (Figma BRCibOteBxjpXGRPJGdYN8, node 1:3387, 1280 x 5251) =====
 *
 * Tokens read off the design: a deep brand navy (#091d34) over white and a
 * warm off-white (#faf9f6), a brass/gold accent (#c5a880), a mid blue for
 * active states (#04497d) and a dusty blue (#99b5c1) that tints the hero's
 * glassmorphism cards. Display type is Cormorant Garamond (hero) and
 * Playfair Display italic (pull quote); everything else is Plus Jakarta
 * Sans over Inter. Desktop frame is 1280 wide; one column under 900.
 */
:root {
  --navy: #091d34;
  --navy-deep: #061322;
  --panel: #0f172a;
  --panel-in: #111a24;
  --blue: #04497d;
  --dusty: #99b5c1;
  --gold: #c5a880;
  --gold-dark: #9e8058;
  --ink: #1e293b;
  --body: #475569;
  --muted: #64748b;
  --soft: #94a3b8;
  --paper: #faf9f6;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --line-2: #cbd5e1;
  --amber: #f59e0b;
  --display: "Cormorant Garamond", Georgia, serif;
  --quote: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;

  /* The shared booking wizard follows the design. */
  --vs-accent: var(--navy);
  --vs-accent-ink: #ffffff;
  --vs-ink: var(--navy);
  --vs-muted: var(--body);
  --vs-bg: #ffffff;
  --vs-surface: var(--paper);
  --vs-radius: 12px;
  --vs-line: var(--line);
  --vs-font: var(--sans);
  --vs-ok: #15803d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font: 16px/1.6 var(--sans); color: var(--body); background: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, dl, dd, dt, figure, blockquote { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(1280px, 100% - 2rem); margin-inline: auto; }
.wrap--narrow { width: min(860px, 100% - 2rem); }
@media (min-width: 900px) { .wrap { width: min(1280px, 100% - 4rem); } }

.skip { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }

/* Type scale */
.eyebrow { font: 700 12px/16px var(--sans); letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.eyebrow--gold { color: var(--gold); font-size: 14px; letter-spacing: 1.2px; }
.link--navy { color: var(--navy); letter-spacing: .6px; }
.btn__arrow { flex: none; }
.eyebrow--center { text-align: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; height: 41px; padding: 5px 17px; margin-bottom: 24px; border-radius: 999px; background: var(--dusty); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px); font: 500 clamp(11px, 1.2vw, 15px)/16px var(--sans); letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.h2 { font: 700 clamp(24px, 3.2vw, 36px)/1.2 var(--sans); letter-spacing: -.7px; color: var(--navy); }
.h2--serif { font-family: var(--display); font-size: clamp(28px, 3.8vw, 42px); letter-spacing: -.4px; }
.lede { max-width: 640px; margin-top: 12px; font: 400 15px/24px var(--sans); color: var(--muted); }
.arrow { font-style: normal; margin-inline-start: .3em; }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 32px; }

/* Buttons and links */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 46px; padding: 13px 26px; border: 1px solid transparent; border-radius: 12px;
  font: 600 12px/1.4 var(--sans); letter-spacing: 1.2px; text-transform: uppercase;
  text-decoration: none; color: var(--navy); transition: filter .15s, background .15s, color .15s;
}
.btn:hover { filter: brightness(1.08); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--white { background: #fff; border-color: var(--line-2); color: #334155; }
.btn--hero { height: 63px; padding: 14px 28px; font: 600 clamp(14px, 1.6vw, 20px)/20px var(--sans); letter-spacing: .35px; text-transform: uppercase; }
.btn--outline { background: transparent; border-color: #334155; color: #fff; border-radius: 999px; }
.btn--outline:hover { background: rgba(255,255,255,.1); filter: none; }
.btn--sm { min-height: 38px; padding: 10px 18px; font-size: 11px; }
.link { display: inline-flex; align-items: center; font: 600 12px/1.4 var(--sans); letter-spacing: 1px; text-transform: uppercase; color: var(--blue); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* HEADER */
.hd { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(226,232,240,.8); }
.hd__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding-inline: 1rem; }
@media (min-width: 900px) { .hd__inner { min-height: 80px; padding-inline: 32px; } }
.hd__brand { display: flex; align-items: center; flex-shrink: 0; gap: 14px; text-decoration: none; white-space: nowrap; }
.hd__logo { width: 134px; height: 56px; object-fit: contain; }
.hd__rule { display: none; width: 1px; height: 24px; background: #d6d3cd; }
.hd__meta { display: none; flex-direction: column; gap: 2px; }
@media (min-width: 640px) { .hd__meta { display: flex; } .hd__rule { display: block; } }
.hd__part { font: 700 9px/11px var(--sans); letter-spacing: 1.8px; text-transform: uppercase; color: var(--navy); }
.hd__part b { color: var(--dusty); }
.hd__sub { font: 400 8px/12px var(--sans); letter-spacing: 1.3px; text-transform: uppercase; color: var(--muted); }
.hd__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 11px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.hd__toggle span { display: block; height: 2px; background: var(--navy); }
.hd__nav { display: none; }
.hd__nav > a { position: relative; font: 500 14px/20px var(--sans); color: var(--body); text-decoration: none; white-space: nowrap; }
.hd__nav > a:hover { color: var(--navy); }
.hd__nav > a.is-active, .hd.is-home .hd__link--home, .hd.is-projekt .hd__link--projekt, .hd.is-blogg .hd__link--blogg, .hd.is-post .hd__link--blogg, .hd.is-kontakt .hd__link--kontakt { color: var(--blue); font-weight: 600; }
.hd.is-home .hd__link--home::after, .hd.is-projekt .hd__link--projekt::after, .hd.is-blogg .hd__link--blogg::after, .hd.is-post .hd__link--blogg::after, .hd.is-kontakt .hd__link--kontakt::after { content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; background: var(--blue); }
.hd__nav.is-open { display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 14px; padding: 1.25rem 1rem 1.5rem; background: #fff; border-bottom: 1px solid var(--line); }
.hd__nav.is-open > a::after { display: none; }
.hd__right { display: flex; align-items: center; flex-shrink: 0; gap: 20px; }
.hd__langs { display: inline-flex; align-items: center; font: 600 12px/16px var(--sans); letter-spacing: .6px; }
.hd__lang { text-decoration: none; color: var(--soft); }
.hd__lang--current { font-weight: 700; color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); }
.hd__slash { padding: 0 6px; color: var(--line-2); }
.hd__nav .btn--sm { font: 500 14px/20px var(--sans); letter-spacing: .35px; text-transform: uppercase; padding: 10px 20px; }
@media (min-width: 1200px) {
  .hd__toggle { display: none; }
  .hd__nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
}

/* HERO (1:3858): under the 80px header the photo shows 660px of the 740px
   gradient area; the copy is centred in it; two 45° diamond thumbnails sit
   at the right; the three glass cards start 65px above the photo's bottom. */
.hero { position: relative; background: #fff; padding-bottom: 32px; }
.hero__bg { position: relative; width: 100%; min-height: 460px; overflow: hidden; display: flex; flex-direction: column; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero__gradient { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; }
.hero__gem { display: none; }
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: min(1024px, 100% - 2rem); margin: 0 auto; padding: 40px 0 48px; text-align: center; }
.hero__title { max-width: 900px; font: 700 clamp(34px, 5.6vw, 72px)/1 var(--display); letter-spacing: -.015em; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,.45); }
.hero__lead { max-width: 672px; margin-top: 24px; font: 700 clamp(15px, 1.9vw, 24px)/1.6 var(--sans); color: rgba(255,255,255,.9); text-shadow: 0 4px 20px rgba(0,0,0,.45); }
.hero__lead:empty { display: none; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }
@media (min-width: 1024px) {
  .hero__bg { min-height: 51.5vw; }
  .hero__gem { display: block; position: absolute; z-index: 2; aspect-ratio: 1; transform: rotate(45deg); border: 3px solid rgba(255,255,255,.85); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,.2), 0 10px 10px -5px rgba(0,0,0,.1); }
  .hero__gem img { width: 142%; height: 142%; max-width: none; margin: -21%; object-fit: cover; transform: rotate(-45deg); }
  .hero__gem--1 { left: 83.1%; top: 15.6%; width: 11.25%; }
  .hero__gem--2 { left: 84.5%; top: 37%; width: 10%; }
  .hero__inner { padding: 8.8vw 0 112px; }
  .hero__lead { line-height: 55px; }
}
.glass { position: relative; z-index: 3; display: grid; gap: 16px; grid-template-columns: 1fr; width: min(1232px, 100% - 2rem); margin: 24px auto 0; }
@media (min-width: 900px) { .glass { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .glass { margin-top: -65px; } }
.gcard {
  display: flex; flex-direction: column; min-height: 292px; padding: 29px; border-radius: 16px; text-decoration: none;
  background: rgba(153,181,193,.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 16px 20px rgba(0,0,0,.25), 0 25px 16px rgba(0,0,0,.25), inset 0 0 1px 2px rgba(255,255,255,.8);
  transition: transform .15s;
}
.gcard--lead { border-color: var(--blue); backdrop-filter: blur(40px); }
.gcard:hover { transform: translateY(-3px); }
.gcard__ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 12px; border-radius: 12px; background: rgba(241,245,249,.8); border: 1px solid rgba(226,232,240,.5); }
.gcard__ico img { width: 24px; height: 24px; }
.gcard b { display: block; margin-bottom: 8px; font: 700 24px/28px var(--sans); color: var(--navy); }
.gcard p { margin-bottom: 24px; font: 400 16px/22.75px var(--sans); color: var(--body); }
.gcard__link { margin-top: auto; font: 700 12px/16px var(--sans); letter-spacing: .6px; text-transform: uppercase; color: var(--navy); }
@media (max-width: 1023px) {
  .gcard { background: rgba(153,181,193,.2); border-color: rgba(9,29,52,.12); box-shadow: 0 6px 18px rgba(9,29,52,.08); }
}

/* SERVICES */
.svc { background: #fff; border-top: 1px solid var(--line-soft); padding: 64px 0; }
.svc .h2 { margin-bottom: 32px; max-width: 640px; }
.svc__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .svc__grid { grid-template-columns: repeat(3, 1fr); } }
.scard { display: block; padding: 16px 16px 20px; background: var(--paper); border: 1px solid rgba(226,232,240,.7); border-radius: 16px; text-decoration: none; transition: border-color .15s, transform .15s; }
.scard:hover { border-color: var(--blue); transform: translateY(-2px); }
.scard__media { display: block; overflow: hidden; border-radius: 12px; background: var(--line); margin-bottom: 14px; }
.scard__media img { width: 100%; height: 192px; object-fit: cover; }
.scard b { display: block; margin-bottom: 8px; font: 700 17px/1.3 var(--sans); color: var(--navy); }
.scard > span:last-child { display: block; font: 400 13px/21px var(--sans); color: var(--muted); }
.svc__list { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.svc__list:empty { display: none; }
.svc__list li { font: 500 13px/1.4 var(--sans); color: var(--body); }
.svc__list li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 9px; vertical-align: middle; }

/* PROCESS */
.proc { background: var(--paper); padding: 56px 0; }
.steps { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { padding: 22px 20px 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 1px 2px rgba(9,29,52,.05); }
.steps__num { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 50%; background: var(--navy); font: 700 13px/1 var(--sans); color: #fff; }
.steps b { display: block; margin-bottom: 8px; font: 700 16px/1.3 var(--sans); color: var(--navy); }
.steps p { font: 400 13px/21px var(--sans); color: var(--muted); }

/* PRECISION BENEATH THE SURFACE */
.ben { background: #fff; border-top: 1px solid var(--line-soft); padding: 60px 0; }
.ben__grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .ben__grid { grid-template-columns: 5fr 7fr; gap: 56px; } }
.ben .h2 { margin-bottom: 16px; }
.ben__text { margin-bottom: 14px; font: 400 15px/24px var(--sans); color: var(--muted); }
.ben__text:empty { display: none; }
.zones { display: grid; gap: 10px; margin: 20px 0; }
.zones li { padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.zones li.is-active { background: #fff; border-color: var(--blue); }
.zones__num { display: block; font: 700 10px/1.3 var(--sans); letter-spacing: 1.2px; color: var(--gold-dark); margin-bottom: 6px; }
.zones b { display: block; margin-bottom: 4px; font: 700 12px/1.3 var(--sans); letter-spacing: .8px; text-transform: uppercase; color: var(--navy); }
.zones p { font: 400 12px/19px var(--sans); color: var(--muted); }

/* Wetroom cross-section (1:3761): the design's vectors placed as percentages
   of its 633 x 435 box; the hotspots and the floating card too. */
.ben__title { font-size: clamp(28px, 3vw, 36px); letter-spacing: -1px; line-height: 1.1; }
.zones li { display: flex; align-items: flex-start; gap: 14px; }
.zones__num { flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--navy); font: 700 12px/1 var(--sans); color: #fff; margin: 0; }
.zones li.is-active .zones__num { background: var(--blue); }
.xsec { padding: 25px; background: var(--panel); border: 1px solid rgba(226,232,240,.8); border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.xsec__frame { padding: 1px; background: var(--panel-in); border: 1px solid rgba(51,65,85,.6); border-radius: 16px; overflow: hidden; }
.draw { position: relative; width: 100%; aspect-ratio: 633 / 435; container-type: inline-size; overflow: hidden; }
.draw__v { position: absolute; max-width: none; }
.draw__v0 { left: .07%; top: 0; width: 99.86%; height: 21.82%; }
.draw__v14 { left: .07%; top: 70.91%; width: 99.86%; height: 29.09%; }
.draw__v12 { left: .07%; top: 21.82%; width: 42.44%; height: 49.09%; }
.draw__v2 { left: 42.51%; top: 21.82%; width: 57.42%; height: 49.09%; }
.draw__v15 { left: 42.2%; top: 21.6%; width: 58.05%; height: 50%; }
.draw__v1 { left: 5.06%; top: 21.82%; width: 89.88%; height: 1px; }
.draw__v3 { left: 64.98%; top: 23.64%; width: .75%; height: 47.27%; }
.draw__v4 { left: 51.25%; top: 25.45%; width: 8.74%; height: .73%; }
.draw__v5 { left: 53.49%; top: 26.18%; width: 4.25%; height: 1.82%; }
.draw__v6 { left: 53.12%; top: 28.36%; width: 3.75%; height: 15.28%; }
.draw__v7 { left: 73.72%; top: 43.64%; width: 17.47%; height: 11.81%; }
.draw__v8 { left: 73.72%; top: 49.45%; width: 17.47%; height: 1px; }
.draw__v9 { left: 77.46%; top: 41.45%; width: 9.99%; height: 2.55%; }
.draw__v10 { left: 81.21%; top: 37.27%; width: 1.24%; height: 4.18%; }
.draw__v11 { left: 42.51%; top: 21.82%; width: 1px; height: 49.09%; }
.draw__v13a { left: 11.31%; top: 21.82%; width: 1.5%; height: 49.09%; }
.draw__v13b { left: 27.53%; top: 21.82%; width: 1.5%; height: 49.09%; }
.draw__v16 { left: 42.51%; top: 68.18%; width: 1.87%; height: 2.73%; }
.draw__v17 { left: 11.31%; top: 28.36%; width: 41.81%; height: 60.73%; opacity: .7; }
.draw__v18 { left: 13.8%; top: 28.36%; width: 40.57%; height: 60.73%; opacity: .7; }
.draw__v19 { left: 52.25%; top: 38.73%; width: 1.74%; height: 2.54%; opacity: .7; }
.draw__v20 { left: 53.49%; top: 40.55%; width: 1.75%; height: 2.54%; opacity: .7; }
.draw__v21 { left: 8.81%; top: 50.91%; width: 4.99%; height: 9.45%; opacity: .7; }
.draw__v22a { left: 45.01%; top: 74.18%; width: 52.42%; height: 2px; opacity: .7; }
.draw__v22b { left: 45.01%; top: 75.45%; width: 52.42%; height: 2px; opacity: .7; }
.draw__v23 { left: 54.99%; top: 70.91%; width: 8.74%; height: .54%; opacity: .7; }
.draw__v24 { left: 52.25%; top: 70.73%; width: 5.49%; height: 1.45%; opacity: .7; }
.draw__v25 { left: 52.75%; top: 72.18%; width: 4.49%; height: 6.91%; opacity: .7; }
.draw__v26 { left: 37.52%; top: 79.09%; width: 17.47%; height: 15.46%; opacity: .7; }
.draw__v27 { left: 37.52%; top: 79.09%; width: 17.47%; height: 15.46%; opacity: .7; }
.draw__v28 { left: 2.57%; top: 70.91%; width: 94.86%; height: 1px; opacity: .5; }
.draw__label { position: absolute; font: 400 clamp(5.5px, 1cqw, 6.4px)/1 var(--sans); letter-spacing: .08em; white-space: nowrap; opacity: .7; }
.draw__label--seal { left: 40.7%; top: 6.8%; height: 37.8%; display: flex; align-items: center; writing-mode: vertical-rl; transform: rotate(180deg); color: #e2ceb3; opacity: 1; }
.draw__label--heat { left: 76.3%; top: 77%; color: #fbbf24; }
.draw__label--drain { left: 41.3%; top: 96.6%; color: var(--soft); }
.draw__label--datum { left: 3.8%; top: 68.2%; color: var(--soft); opacity: .5; }
.hot { position: absolute; width: 7.56%; aspect-ratio: 1; display: grid; place-items: center; }
.hot::before { content: ''; position: absolute; inset: 16.7%; border-radius: 50%; background: var(--gold); opacity: .6; }
.hot i { position: relative; display: grid; place-items: center; width: 58%; aspect-ratio: 1; border: 2px solid #fff; border-radius: 50%; background: var(--gold); font: 700 clamp(7px, 1.9cqw, 12px)/1 var(--sans); font-style: normal; color: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); }
.hot--1 { left: 40.24%; top: 52.47%; }
.hot--1 i { width: 73%; box-shadow: 0 0 0 4px rgba(197,168,128,.4), 0 10px 15px -3px rgba(0,0,0,.1); }
.hot--2 { left: 16.32%; top: 40.53%; }
.hot--3 { left: 70.15%; top: 68.4%; }
.hot--4 { left: 51.21%; top: 76.36%; }
.tip { position: absolute; left: 2.5%; bottom: 3.7%; max-width: min(320px, 55%); padding: 15px; background: rgba(0,0,0,.85); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.tip__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 7px; margin-bottom: 7.5px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tip__tag { font: 700 10px/15px ui-monospace, "Cascadia Mono", Menlo, monospace; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); }
.tip__std { font: 400 9px/13.5px var(--sans); color: var(--soft); white-space: nowrap; }
.tip p { font: 400 12px/19.5px var(--sans); color: #e2e8f0; }
@media (max-width: 559px) { .tip, .draw__label { display: none; } }
.xsec__legend { display: grid; gap: 12px; padding: 14px 8px 0; }
.xsec__legend-row { display: flex; flex-wrap: wrap; gap: 16px; }
.xsec__legend-row > span { display: inline-flex; align-items: center; gap: 6px; font: 400 11px/16.5px var(--sans); color: var(--soft); }
.lg { display: inline-block; }
.lg--dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.lg--line { width: 10px; height: 2px; background: #38bdf8; }
.lg--box { width: 8px; height: 8px; border: 1px solid var(--soft); }
.xsec__cap { font: 400 10px/15px var(--sans); color: var(--soft); }

/* MATERIALS */
.mat { background: #fff; border-top: 1px solid var(--line-soft); padding: 56px 0; }
.swatches { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .swatches { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .swatches { grid-template-columns: repeat(6, 1fr); } }
.swatches li { padding: 12px; background: var(--paper); border: 1px solid rgba(226,232,240,.8); border-radius: 16px; text-align: center; }
.swatches img { width: 100%; height: 112px; object-fit: cover; border-radius: 12px; background: var(--line); margin-bottom: 10px; }
.swatches span { font: 700 12px/1.3 var(--sans); color: var(--navy); }

/* SOCIAL PROOF */
.proof { background: var(--paper); border-top: 1px solid var(--line-soft); padding: 56px 0; }
.proof__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .proof__grid { grid-template-columns: 5fr 7fr; } }
.ba { padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.ba__split { position: relative; display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; }
.ba__split::after { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #fff; transform: translateX(-1px); }
.ba__knob { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-items: center; width: 36px; height: 36px; transform: translate(-50%, -50%); border-radius: 50%; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.3); font: 700 16px/1 var(--sans); color: var(--navy); }
.ba__half { position: relative; display: block; }
.ba__half img { width: 100%; height: 260px; object-fit: cover; }
@media (min-width: 640px) { .ba__half img { height: 340px; } }
.ba__half:first-child img { filter: saturate(.35); }
.ba__chip { position: absolute; left: 10px; top: 10px; padding: 4px 10px; border-radius: 6px; font: 700 10px/15px var(--sans); letter-spacing: 1px; font-style: normal; backdrop-filter: blur(4px); }
.ba__chip--before { background: rgba(0,0,0,.7); color: #fff; }
.ba__chip--after { background: rgba(9,29,52,.8); color: var(--gold); }
.ba figcaption { padding-top: 14px; }
.ba figcaption b { display: block; font: 700 15px/1.3 var(--sans); color: var(--navy); }
.ba figcaption span { display: block; margin-top: 4px; font: 400 12px/19px var(--sans); color: var(--muted); }
.quotes { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { padding: 20px 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.quote header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.quote__ini { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--line-soft); font: 700 12px/1 var(--sans); color: var(--navy); }
.quote header b { display: block; font: 700 13px/1.3 var(--sans); color: var(--navy); }
.quote header em { display: block; font: 400 11px/16px var(--sans); font-style: normal; color: var(--muted); }
.quote__stars { margin-bottom: 8px; font-size: 12px; color: var(--amber); letter-spacing: 1px; }
.quote blockquote { font: italic 400 13px/21px var(--sans); color: var(--body); }
.quote blockquote::before { content: '\201C'; }
.quote blockquote::after { content: '\201D'; }
.quote__project { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft); font: 600 11px/16px var(--sans); color: var(--muted); }


/* Panel pages + FAQ */
.section { background: var(--paper); padding: 56px 0; border-top: 1px solid var(--line-soft); }
.container { width: min(1280px, 100% - 2rem); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 2rem); }
.page-blocks h2 { font: 700 clamp(22px, 3vw, 32px)/1.2 var(--sans); letter-spacing: -.6px; color: var(--navy); margin-bottom: 16px; }
.page-blocks h3 { font: 700 18px/1.3 var(--sans); color: var(--navy); margin: 20px 0 8px; }
.page-blocks p, .page-blocks li { font: 400 15px/24px var(--sans); color: var(--body); }
.page-blocks p { margin-bottom: 12px; }
.page-blocks li { position: relative; padding-left: 18px; }
.page-blocks li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* LEAD GEN / CONTACT (1:3636) */
.lead { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.lead::before { content: ''; position: absolute; left: 45%; right: 25%; top: 0; height: 384px; border-radius: 999px; background: rgba(197,168,128,.1); filter: blur(32px); }
.lead__grid { position: relative; z-index: 1; display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; padding: 48px 0 0; }
@media (min-width: 900px) { .lead__grid { grid-template-columns: 466fr 750fr; gap: 0; padding: 0; min-height: 550px; } .lead__body { padding: 48px 32px 48px 0; } }
.lead__title { font: italic 400 clamp(30px, 3.9vw, 48px)/1 var(--quote); letter-spacing: -1.2px; color: #fff; margin-bottom: 32px; }
.lead__text { margin-bottom: 18px; font: 400 15px/24px var(--sans); color: rgba(255,255,255,.75); }
.lead__text:empty { display: none; }
.checks { display: grid; gap: 14px; margin-bottom: 32px; }
.checks li { display: flex; align-items: center; gap: 12px; font: 600 16px/20px var(--sans); color: #e5e7eb; }
.checks img { width: 24px; height: 24px; flex: none; }
.contactinfo { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
@media (min-width: 560px) { .contactinfo { grid-template-columns: repeat(2, 1fr); } }
.contactinfo dt { font: 500 clamp(13px, 1.4vw, 18px)/16px var(--sans); text-transform: uppercase; color: var(--soft); margin-bottom: 4px; }
.contactinfo dd { font: 700 14px/20px var(--sans); color: #fff; }
.contactinfo dd a { text-decoration: none; }
.contactinfo dd a:hover { color: var(--gold); }
.contactinfo__note { font-weight: 400 !important; font-size: 12px !important; color: var(--soft) !important; }
.lead__media { position: relative; }
.lead__media img { width: 100%; height: 420px; object-fit: cover; object-position: 50% 40%; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
@media (min-width: 900px) { .lead__media { align-self: stretch; margin-right: calc(50% - 50vw); } .lead__media img { position: absolute; inset: 0; height: 100%; border-radius: 12px 0 0 12px; } }

/* TRUST BADGES */
.trust { background: #fff; border-top: 1px solid rgba(226,232,240,.8); border-bottom: 1px solid rgba(226,232,240,.8); padding: 40px 0; }
.trust__grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(6, 1fr); } }
.trust__grid li { text-align: center; }
.trust__ico { display: grid; place-items: center; width: 40px; height: 40px; margin: 0 auto 10px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); font-size: 17px; }
.trust__grid b { display: block; margin-bottom: 4px; font: 700 12px/1.3 var(--sans); color: var(--navy); }
.trust__grid span { display: block; font: 400 11px/16px var(--sans); color: var(--muted); }

/* FOOTER */
.ft { background: var(--navy-deep); color: var(--soft); border-top: 1px solid #1e293b; padding: 48px 0 32px; }
.ft__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(30,41,59,.8); }
.ft__logo { width: 193px; height: 78px; object-fit: contain; border-radius: 8px; }
.ft__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.ft__nav a { font: 500 12px/16px var(--sans); color: var(--line-2); text-decoration: none; }
.ft__nav a:hover { color: #fff; }
.ft__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; padding-top: 22px; font: 400 11px/18px var(--sans); color: var(--muted); }
.ft__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.ft__legal a { text-decoration: none; }
.ft__legal a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gcard, .scard, .proj__media img { transition: none; }
}
.ft__legal .vs-consent-link { font: inherit; color: inherit; }
.btn--outline.btn--sm { font: 600 14px/16px var(--sans); text-transform: uppercase; letter-spacing: 0; padding: 11px 21px; }
