/* Inter is self-hosted rather than pulled from Google Fonts: these pages
   target an EU audience, and fonts.gstatic.com would hand visitor IPs to
   Google before the consent banner is even answered. Variable font, so the
   750/760/850 weights used further down resolve exactly as intended
   instead of collapsing to Arial bold. */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #11263a;
  --muted: #5e6d79;
  --navy: #092c49;
  --navy-2: #0f3d60;
  --deep: #061d30;
  --deep-line: #21394c;
  --brand-blue: #66c9f3;
  --eyebrow-light: #9edff1;
  --accent: #087ea4;
  --accent-strong: #056486;
  --accent-soft: #e7f5f8;
  --offer: #087ea4;
  --paper: #f5f3ee;
  --surface: #ffffff;
  --line: #d8dee3;
  --lede: #354b5b;
  --panel-line: #cbd4db;
  --input-line: #bfc9d0;
  --faq-line: #bfc8cf;
  --secondary-line: #aab5bd;
  --secondary-hover: #eef2f4;
  --tint: #fafbfc;
  --tint-ink: #405362;
  --fine: #526573;
  --fine-2: #69757e;
  --placeholder: #6b7780;
  --img-bg: #e2e5e7;
  --hero-img-bg: #d8dde0;
  --map-bg: #dbe5ea;
  --caption-bg: rgba(8, 23, 35, 0.82);
  --cta-line: #667c8d;
  --cta-hover: #17354c;
  --whatsapp: #20bd5b;
  --whatsapp-dark: #139746;
  --danger: #b42318;
  --success: #147a45;
  --shadow: 0 18px 45px rgba(17, 38, 58, 0.12);
}

/* Both pages share one blue palette. The sauna page previously carried a
   warm-brown variant here; it was reverted on request so the two landing
   pages are visually identical apart from layout and copy. Only layout
   differences remain themed by data-product. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

button,
a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.offer-bar {
  color: #fff;
  background: var(--navy);
  font-size: 0.82rem;
}

.offer-bar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.offer-bar strong {
  color: var(--brand-blue);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 216px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-location {
  display: grid;
  margin-right: auto;
  line-height: 1.25;
}

.header-location span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-location a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.header-location a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Visually hidden but still read by screen readers. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Language selector. A native <select> on purpose: it gets the platform's
   own picker on mobile, is keyboard accessible for free, and needs no JS to
   open. On phones this sits where the old "Palma" label used to be. */
.lang-select {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.lang-select select {
  min-height: 44px;
  padding: 6px 30px 6px 11px;
  border: 1px solid var(--panel-line);
  border-radius: 7px;
  color: var(--accent-strong);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23056486' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 11px 7px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lang-select select:hover {
  border-color: var(--accent);
}

.lang-select select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.text-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--accent-strong);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* The accent blue drops to ~2.4:1 on the dark sections, below the 3:1 that
   WCAG 1.4.11 needs for a focus indicator. Use the light brand blue there. */
.offer-bar :focus-visible,
.offer-section :focus-visible,
.site-checklist :focus-visible,
.contact-section :focus-visible,
.mobile-cta :focus-visible,
.consent-banner :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--brand-blue);
}

/* ...except the map link, which sits on the light map tile, not the navy. */
.contact-section .map-link:focus-visible {
  outline-color: var(--accent);
}

.button-whatsapp {
  gap: 9px;
  color: #072d16;
  background: var(--whatsapp);
}

.button-whatsapp::before {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  content: "";
  background: currentColor;
  -webkit-mask: url("assets/whatsapp.svg") center / contain no-repeat;
  mask: url("assets/whatsapp.svg") center / contain no-repeat;
}

.button-whatsapp:hover {
  color: #fff;
  background: var(--whatsapp-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--secondary-line);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--secondary-hover);
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.button-light:hover {
  color: #fff;
  background: var(--accent);
}

.hero {
  padding: 30px 0 68px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.78fr);
  align-items: start;
  gap: clamp(38px, 5vw, 72px);
}

.hero-story {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.light-intro .eyebrow,
.offer-section .eyebrow,
.contact-section .eyebrow {
  color: var(--eyebrow-light);
}

.hero h1,
.section-intro h2,
.split-copy h2,
.contact-section h2,
.lead-panel h2,
.sauna-offer h2 {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  line-height: 0.99;
}

.hero h1 span {
  color: var(--offer);
}

.hero-lede {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--lede);
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  line-height: 1.62;
}

.plain-list {
  display: grid;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.human-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-photo {
  position: relative;
  margin: 34px 0 0;
}

.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--hero-img-bg);
}

body[data-product="sauna"] .hero-photo img {
  aspect-ratio: 3 / 2;
}

.hero-photo figcaption,
.project-grid figcaption,
.sauna-gallery figcaption,
.split-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.lead-panel {
  position: sticky;
  top: 102px;
  padding: 20px 22px;
  border: 1px solid var(--panel-line);
  border-top: 5px solid var(--accent);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.discount-block {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  padding: 9px 12px;
  background: var(--accent-soft);
  line-height: 1.35;
}

.discount-value {
  color: var(--offer);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.discount-block strong {
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.lead-panel h2 {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.lead-panel > p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.project-choices {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}

.project-choices legend,
.field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 5px;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--panel-line);
  border-radius: 6px;
  color: var(--tint-ink);
  background: var(--tint);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
}

.choice-grid input:checked + label {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.choice-grid input:focus-visible + label {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 9px;
  margin-bottom: 9px;
}

.field-grid .field:last-child {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 3px;
  margin: 0;
}

.field input {
  width: 100%;
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid var(--input-line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

/* Qualifying dropdowns sit in the same grid as the text inputs. */
.field select {
  width: 100%;
  min-height: 44px;
  padding: 8px 30px 8px 11px;
  border: 1px solid var(--input-line);
  border-radius: 6px;
  color: var(--ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23056486' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 11px center;
  background-repeat: no-repeat;
  background-size: 11px 7px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 17%, transparent);
}

.field-span {
  grid-column: 1 / -1;
}

.field input::placeholder {
  color: var(--placeholder);
}

.field input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 17%, transparent);
}

.field textarea {
  width: 100%;
  min-height: 78px;
  padding: 9px 11px;
  border: 1px solid var(--input-line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  line-height: 1.45;
  resize: vertical;
}

.field textarea::placeholder {
  color: var(--placeholder);
}

.field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 17%, transparent);
}

/* Honeypot: off-screen for people, but bots fill every field they find. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Replaces the form once the server has accepted the enquiry. */
.form-sent {
  padding: 26px 6px 14px;
  text-align: center;
}

.form-sent-title {
  margin: 0 0 9px;
  color: var(--accent-strong);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.25;
}

.form-sent p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* The status line is green by default; the fallback notice is not good news. */
.form-status.is-warn {
  color: var(--danger);
}

.field input.is-invalid {
  border-color: var(--danger);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.72rem;
}

.field-error:not(:empty) {
  min-height: 17px;
}

.submit-button {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  border: 0;
  background: var(--accent);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 0;
  margin: 6px 0 0;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-address {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
  padding: 7px 9px;
  border-left: 3px solid var(--accent);
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 0.7rem;
  line-height: 1.3;
  text-decoration: none;
}

.form-address strong {
  flex: 0 0 auto;
}

.form-address span {
  color: var(--ink);
}

.form-direct {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 12px;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 800;
}

.form-direct a {
  color: var(--accent-strong);
  text-underline-offset: 2px;
}

/* The address is written out in full, so let it break rather than push
   the panel wider on narrow phones. */
.form-direct .form-email {
  overflow-wrap: anywhere;
}

.form-privacy {
  margin: 4px 0 0;
  color: var(--fine-2);
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

.form-privacy a {
  text-underline-offset: 2px;
}

/* Trust strip. Competitor ad pages front-load credibility before the offer;
   these four claims are ones the rest of the page already backs up. */
.trust-bar {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.trust-item {
  position: relative;
  padding-left: 27px;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 12px;
  height: 7px;
  border-bottom: 2.5px solid var(--accent);
  border-left: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

.trust-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.3;
}

.trust-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.areas-line {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  line-height: 1.55;
}

.areas-line strong {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-promise {
  margin: 8px 0 0;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.offer-section {
  padding: 76px 0;
  color: #fff;
  background: var(--navy);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-intro h2,
.split-copy h2,
.contact-section h2,
.sauna-offer h2 {
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.05;
}

.section-intro > p:last-child,
.split-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.light-intro > p:last-child,
.offer-section .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.offer-card {
  min-height: 290px;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.offer-card:first-child {
  border-left: 0;
}

.offer-card.featured {
  background: rgba(255, 255, 255, 0.08);
}

.offer-percent {
  margin: 0 0 16px;
  color: var(--brand-blue);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.offer-card p:not(.offer-percent) {
  color: rgba(255, 255, 255, 0.72);
}

/* From-price, the way the competitor pages surface a starting figure. */
.offer-card p.offer-price {
  margin: 7px 0 0;
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.offer-card a {
  display: inline-block;
  margin-top: 9px;
  color: #fff;
  font-weight: 800;
  text-underline-offset: 4px;
}

.offer-terms {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.sauna-offer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.sauna-offer .offer-percent {
  margin: 0;
  white-space: nowrap;
}

.sauna-offer h2 {
  max-width: 17ch;
}

.sauna-offer p:not(.eyebrow):not(.offer-percent) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

/* Long-form positioning block plus a scannable capability list, the shape
   manz-doebele opens with. */
.intro-block {
  padding: clamp(56px, 6vw, 92px) 0;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
}

.intro-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.intro-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.62;
}

.intro-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.intro-list li {
  position: relative;
  padding: 13px 0 13px 27px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.intro-list li::before {
  content: "";
  position: absolute;
  top: 1.32em;
  left: 0;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.projects {
  background: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 285px;
  gap: 12px;
}

.project-grid figure,
.sauna-gallery figure {
  min-width: 0;
  margin: 0;
}

.project-grid img,
.sauna-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--img-bg);
}

.project-grid figcaption,
.sauna-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  margin: 0;
  padding: 6px 9px;
  color: #fff;
  background: var(--caption-bg);
  font-weight: 700;
}

.project-grid figure,
.sauna-gallery figure {
  position: relative;
  overflow: hidden;
}

.project-tall {
  grid-row: span 2;
}

.project-wide {
  grid-column: span 2;
}

/* Five figures with these spans leave an empty cell in the bottom-right.
   Run the last one full width so the grid closes as a clean rectangle. */
.project-grid figure:last-child {
  grid-column: 1 / -1;
}

.sauna-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 520px;
  gap: 12px;
}

.explainer {
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.split-photo {
  margin: 0;
}

.split-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fact-list {
  display: grid;
  margin: 28px 0 30px;
  border-top: 1px solid var(--line);
}

.fact-list div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--accent-strong);
  font-weight: 850;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

.sauna-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.explainer-single .split-copy {
  max-width: 840px;
}


.site-checklist {
  padding: 34px;
  color: #fff;
  background: var(--navy);
}

.site-checklist h3 {
  margin: 0;
  font-size: 1.45rem;
}

.site-checklist ul {
  display: grid;
  gap: 13px;
  margin: 24px 0;
  padding-left: 22px;
}

.site-checklist p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  padding: 28px 30px 8px;
  border-left: 1px solid var(--line);
}

.process-grid li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-grid span {
  color: var(--offer);
  font-size: 2rem;
  font-weight: 900;
}

.process-grid h3 {
  margin: 15px 0 9px;
  font-size: 1.22rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

/* Credentials band: brands, locations and guarantee in one strip, the
   element manz-doebele and saunasluxe both lead with. */
/* Review slider, in the format the competitor ad pages use: photo, category
   pill, stars, quote, reviewer. Scroll-snap does the sliding; the arrows
   just nudge it, so it still works with JS off. */
.reviews {
  padding: clamp(56px, 6vw, 84px) 0;
  background: var(--surface);
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(272px, 340px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.review-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  background: var(--paper);
  scroll-snap-align: start;
}

.review-photo {
  overflow: hidden;
  background: var(--img-bg);
}

.review-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.review-pill {
  align-self: flex-start;
  margin: -34px 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}

.review-stars {
  color: #f5a623;
  font-size: 1.02rem;
  letter-spacing: 0.1em;
}

/* Verified tick, drawn rather than imaged so nothing extra loads. */
.review-check {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border-radius: 50%;
  background: var(--accent);
}

.review-check::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4.5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.review-google {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.review-card blockquote {
  flex: 1 0 auto;
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.58;
}

.review-card figcaption {
  display: grid;
  gap: 1px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.review-card figcaption strong {
  font-size: 0.92rem;
  font-weight: 850;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-trans {
  color: #8a959d;
  font-size: 0.72rem;
}

.review-nav {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.review-nav button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--panel-line);
  border-radius: 50%;
  background: #fff;
  color: var(--accent-strong);
  font-size: 1.5rem;
  line-height: 1;
}

.review-nav button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.credentials {
  padding: clamp(56px, 6vw, 84px) 0;
  background: var(--paper);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.cred-label {
  display: block;
  margin-bottom: 11px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cred-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.cred-marks li {
  padding: 6px 12px;
  border: 1px solid var(--panel-line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.cred-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 70px;
}

.faq-list {
  border-top: 1px solid var(--faq-line);
}

.faq-list details {
  border-bottom: 1px solid var(--faq-line);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: -4px 0 20px;
  color: var(--muted);
}

.contact-section {
  padding: 68px 0;
  color: #fff;
  background: var(--navy-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 70px);
}

.contact-section h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.office-list {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.contact-copy address {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.55;
}

.office-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 7px;
  font-size: 0.84rem;
  font-weight: 750;
}

.office-links a {
  color: var(--brand-blue);
  text-underline-offset: 3px;
}

.contact-copy address strong {
  color: #fff;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
}

.contact-links a {
  font-weight: 750;
  text-underline-offset: 3px;
}

.contact-links .button {
  margin-top: 7px;
  text-decoration: none;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--map-bg);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  pointer-events: none;
}

.map-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  text-decoration: none;
}

.map-link span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 29, 48, 0.28);
  font-size: 0.82rem;
  font-weight: 850;
}

.map-link:hover span {
  color: #fff;
  background: var(--accent);
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--deep);
  font-size: 0.78rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-cta {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 100;
  right: auto;
  bottom: 18px;
  left: 18px;
  max-width: 590px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: var(--deep);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.consent-banner p {
  margin: 0;
  font-size: 0.78rem;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-actions button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  color: #fff;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
}

.consent-actions .accept {
  border-color: var(--brand-blue);
  color: var(--navy);
  background: var(--brand-blue);
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 26px;
  }

  .header-location {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .form-address {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5.8vw, 4.5rem);
  }

  .lead-panel {
    padding: 22px;
  }

  .offer-card {
    padding: 24px;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .trust-bar {
    padding: 24px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .offer-bar-inner {
    min-height: 40px;
    display: grid;
    gap: 0;
    padding: 4px 0;
  }

  .offer-bar span {
    font-size: 0.72rem;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 56px;
  }

  .brand {
    width: 150px;
  }

  .text-phone,
  .header-actions .button {
    display: none;
  }

  /* The selector takes the slot the "Palma" label used to occupy here. */
  .lang-select select {
    padding: 5px 26px 5px 9px;
    background-position: right 8px center;
    font-size: 0.78rem;
  }
  .hero {
    padding: 10px 0 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo {
    margin-top: 26px;
  }

  .lead-panel {
    order: -1;
    position: static;
    padding: 12px 14px;
    border-top-width: 4px;
  }

  .discount-block {
    display: none;
  }

  .lead-panel h2 {
    font-size: 1.4rem;
    line-height: 1.05;
  }

  .lead-panel > p {
    margin: 5px 0 8px;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .project-choices {
    margin-bottom: 7px;
  }

  .project-choices legend,
  .field label {
    font-size: 0.7rem;
  }

  .choice-grid {
    gap: 5px;
    margin-top: 4px;
  }

  .choice-grid label {
    min-height: 44px;
    padding: 4px;
    font-size: 0.66rem;
  }

  .field-grid {
    gap: 5px 7px;
    margin-bottom: 7px;
  }

  .field input {
    min-height: 44px;
    padding: 7px 9px;
    font-size: 0.83rem;
  }

  .field textarea {
    min-height: 62px;
    padding: 7px 9px;
    font-size: 0.83rem;
  }

  .field select {
    padding: 7px 28px 7px 9px;
    font-size: 0.83rem;
  }

  .submit-button {
    min-height: 48px;
  }

  .form-direct {
    font-size: 0.65rem;
  }

  .form-direct {
    gap: 1px 10px;
    margin-top: 4px;
  }

  .form-privacy {
    margin-top: 2px;
    font-size: 0.62rem;
  }

  .offer-section,
  .section {
    padding: 62px 0;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-card:first-child {
    min-height: 0;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .offer-card:first-child {
    border-top: 0;
  }

  .sauna-offer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sauna-offer .offer-percent {
    margin-bottom: -7px;
  }

  .sauna-offer .button {
    width: 100%;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .project-tall {
    grid-row: span 2;
  }

  .project-wide {
    grid-column: span 1;
  }

  /* The base rule spans the last figure full width so the 3-column grid
     closes as a rectangle. At two columns that pushes it onto its own
     row and leaves an empty cell beside the figure before it, so let it
     flow normally here instead. */
  .project-grid figure:last-child {
    grid-column: auto;
  }

  .sauna-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .sauna-gallery figure,
  .sauna-gallery figure:last-child {
    grid-column: auto;
    height: 350px;
  }

  .cred-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-card {
    padding: 22px 20px;
  }

  .review-top {
    flex-wrap: wrap;
    gap: 9px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-layout,
  .sauna-split,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .split-photo {
    order: 2;
  }

  .fact-list div {
    grid-template-columns: 95px 1fr;
    gap: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li:first-child {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid li:first-child {
    border-top: 0;
  }

  .contact-links {
    grid-column: auto;
  }

  .contact-section {
    padding: 54px 0;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-copy address {
    margin-top: 18px;
  }

  .map-card,
  .map-card iframe {
    min-height: 280px;
  }

  .footer-inner {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 9px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--deep-line);
    background: var(--deep);
  }

  .mobile-cta .button {
    min-height: 50px;
  }

  .mobile-cta .button-secondary {
    color: #fff;
    border-color: var(--cta-line);
  }

  .mobile-cta .button-secondary:hover {
    background: var(--cta-hover);
  }

  .consent-banner {
    position: fixed;
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
    display: grid;
    gap: 11px;
    margin: 0;
    border-width: 1px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
  }
}

@media (max-width: 480px) {
  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .project-grid figure,
  .project-grid .project-tall,
  .project-grid .project-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .project-grid figure:nth-child(1),
  .project-grid figure:nth-child(3) {
    aspect-ratio: 3 / 4;
  }

  .site-checklist {
    padding: 26px 22px;
  }
}

/* Narrow phones: reclaim height above the fold so the send button stays
   visible without scrolling. */
@media (max-width: 400px) {
  .offer-bar-inner {
    min-height: 34px;
    padding: 3px 0;
  }

  .offer-bar span {
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 6px;
  }

  .lead-panel {
    padding: 10px 12px;
  }

  .lead-panel h2 {
    font-size: 1.26rem;
  }

  .form-address {
    margin-bottom: 7px;
    padding: 5px 8px;
    font-size: 0.66rem;
  }
}

/* Below 360px there is no room for the panel lede as well as the button.
   Only the photo nudge is lost; the fields and CTA stay put. */
@media (max-width: 360px) {
  .lead-panel > p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Second office map. The contact column now stacks Palma over Costa del Sol.
   Scoped to .map-stack so a single-map layout is unaffected. Added 2026-07-28. */
.map-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.map-stack .map-card,
.map-stack .map-card iframe {
  min-height: 232px;
}
@media (max-width: 760px) {
  .map-stack .map-card,
  .map-stack .map-card iframe {
    min-height: 220px;
  }
}

/* Make the maps usable. Previously the iframe had pointer-events:none and
   .map-link covered it edge to edge, so the map could not be panned or zoomed
   and a click anywhere threw the visitor out to Google Maps.

   Pointer devices: the map takes the pointer, and only the button is clickable.
   Touch (<=760px): the overlay is restored on purpose, otherwise a finger drag
   is swallowed by the map and the page cannot be scrolled past it.
   Added 2026-07-28. */
.map-card iframe {
  pointer-events: auto;
}
.map-link {
  pointer-events: none;
}
.map-link span {
  pointer-events: auto;
}
@media (max-width: 760px) {
  .map-card iframe {
    pointer-events: none;
  }
  .map-link {
    pointer-events: auto;
  }
}
