:root { --accent: #795b40; }
/* Wetrooms landing sites. One stylesheet for every site; --accent is written above per site at build time. */

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --surface: #ffffff;
  --alt: #eeeae3;
  --ink: #17140f;
  --muted: #5d5851;
  --line: #dcd5ca;
  --dark: color-mix(in srgb, var(--accent) 24%, #0f0d0b);
  --accent-soft: color-mix(in srgb, var(--accent) 12%, #ffffff);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgb(28 31 34 / 5%), 0 8px 24px rgb(28 31 34 / 6%);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gutter: 16px;
}

@media (min-width: 640px) {
  :root { --gutter: 24px; }
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-underline-offset: 0.18em; }

h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 3.4vw + 1.1rem, 3.5rem); font-weight: 750; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.65rem, 1.8vw + 1.1rem, 2.45rem); font-weight: 720; }
h3 { font-size: 1.125rem; font-weight: 680; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }

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

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }

.skip-link {
  position: absolute; left: var(--gutter); top: -60px; z-index: 20;
  padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.75rem 1.35rem;
  border: 1.5px solid transparent; border-radius: 999px;
  font: inherit; font-size: 1rem; font-weight: 650; line-height: 1.2; text-align: center; text-decoration: none;
  cursor: pointer; transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: color-mix(in srgb, var(--accent) 86%, #000); }
.btn--ghost { border-color: color-mix(in srgb, var(--ink) 28%, transparent); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent-soft); }
.btn--outline-light { border-color: rgb(255 255 255 / 45%); color: #fff; }
.btn--outline-light:hover { border-color: #fff; }
.btn--small { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.9375rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.actions--spaced { margin-top: 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgb(246 244 240 / 92%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.4) blur(10px);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand__logo { height: 36px; width: auto; flex: none; }
.brand__tagline {
  max-width: 6.5rem; padding-left: 14px; border-left: 1px solid var(--line);
  color: var(--muted); font-size: 0.75rem; line-height: 1.25;
}

.site-nav { display: none; gap: 22px; }
.site-nav a { color: var(--muted); font-size: 0.9375rem; font-weight: 550; text-decoration: none; }
.site-nav a:hover { color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: none; flex-direction: column; align-items: flex-end; line-height: 1.2; text-decoration: none; }
.header-phone__label { font-size: 0.6875rem; color: var(--muted); }
.header-phone__number { font-weight: 700; }

@media (min-width: 760px) {
  .header-phone { display: flex; }
}
@media (min-width: 1080px) {
  .site-nav { display: flex; }
}
@media (min-width: 760px) {
  .brand__logo { height: 42px; }
}
@media (max-width: 479px) {
  .brand__tagline { display: none; }
}

/* Hero */
.hero { padding-block: clamp(2.25rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem); }
.hero__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.hero__intro { margin-top: 1.25rem; max-width: 36rem; color: var(--muted); font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem); }
.hero .actions { margin-top: 1.75rem; }
.hero__note { margin-top: 1rem; color: var(--muted); font-size: 0.9375rem; }
.hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero__media img { aspect-ratio: 1 / 1; }
}

.facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
}
.facts__item {
  display: flex; flex-direction: column-reverse; gap: 4px;
  padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.facts dt { color: var(--muted); font-size: 0.875rem; line-height: 1.35; }
.facts dd { margin: 0; font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem); font-weight: 750; letter-spacing: -0.02em; line-height: 1.15; }

@media (min-width: 900px) {
  .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
}

/* Sections */
.section { padding-block: clamp(3.25rem, 6.5vw, 5.75rem); }
.section--alt { background: var(--alt); }
.section__head { max-width: 46rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.section__intro { margin-top: 1rem; color: var(--muted); }
.section__intro p + p { margin-top: 0.75rem; }
.section__intro strong { color: var(--ink); }

.prose { margin-top: 1.25rem; color: var(--muted); }
.prose > * + * { margin-top: 1rem; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose ul { margin: 0; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 1.4rem; }
.prose li + li { margin-top: 0.55rem; }
.prose li::before {
  content: ""; position: absolute; left: 0.1rem; top: 0.62em;
  width: 0.5rem; height: 0.5rem; border-radius: 2px; background: var(--accent);
}
.prose a, .faq__answer a { color: var(--accent); font-weight: 600; }

/* Text + image */
.split { display: grid; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split__media img { aspect-ratio: 1 / 1; }
  .split--image-left .split__media { order: -1; }
}

/* Features */
.feature-grid { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.feature {
  padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.feature h3::before {
  content: ""; display: block; width: 28px; height: 4px; margin-bottom: 16px;
  border-radius: 2px; background: var(--accent);
}
.feature p { margin-top: 0.6rem; color: var(--muted); font-size: 1rem; }

@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }

/* Cards */
.card-grid { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.card {
  overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.card__image { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; background: #fff; border-bottom: 1px solid var(--line); }
.card__body { padding: 18px 20px 22px; }
.card__body h3 { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.card__body p { margin-top: 0.45rem; color: var(--muted); font-size: 0.975rem; }
.badge {
  padding: 2px 9px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
}

@media (min-width: 560px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 880px) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1120px) { .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Steps */
.steps { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.step {
  counter-increment: step; position: relative;
  padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.step::before {
  content: counter(step);
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px;
  border-radius: 50%; background: var(--accent); color: #fff; font-weight: 750;
}
.step p { margin-top: 0.6rem; color: var(--muted); font-size: 1rem; }

@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

/* Table */
.table-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.975rem; }
th, td { padding: 14px 18px; text-align: left; vertical-align: top; }
thead th { color: var(--muted); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
tbody tr + tr { border-top: 1px solid var(--line); }
tbody th { font-weight: 650; }
.table-note { margin-top: 0.9rem; color: var(--muted); font-size: 0.9375rem; }

@media (max-width: 719px) {
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  table, tbody, tr, th, td { display: block; }
  tbody tr { padding: 14px 18px; }
  tbody th { padding: 0 0 8px; font-size: 1.0625rem; }
  tbody td { display: flex; justify-content: space-between; gap: 16px; padding: 4px 0; }
  tbody td::before { content: attr(data-label); color: var(--muted); }
}

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 650;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: none; display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 1.25rem; font-weight: 500; line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__answer { padding: 0 0 22px; color: var(--muted); max-width: 44rem; }

/* CTA band */
.cta { padding-block: clamp(3rem, 6vw, 4.75rem); background: var(--dark); color: #fff; }
.cta__inner { display: grid; gap: 28px; align-items: center; }
.cta :focus-visible { outline-color: #fff; }
.cta p { margin-top: 0.75rem; color: rgb(255 255 255 / 74%); max-width: 38rem; }

@media (min-width: 900px) {
  .cta__inner { grid-template-columns: 1fr auto; gap: 48px; }
}

/* Footer */
.site-footer { padding-block: 3rem 2rem; background: var(--alt); color: var(--muted); font-size: 0.9375rem; }
.site-footer__grid { display: grid; gap: 2rem; }
.site-footer__grid p + p { margin-top: 0.75rem; }
.site-footer__logo { height: 36px; width: auto; margin-bottom: 1.1rem; }
.site-footer__heading { margin-bottom: 0.75rem; color: var(--ink); font-weight: 700; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 0.45rem; }
.site-footer a { color: var(--ink); }
.site-footer__contact a { font-weight: 700; text-decoration: none; }
.site-footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.8125rem; }
.site-footer__legal p + p { margin-top: 0.4rem; }

@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}

