:root {
  --sky-50: #f2f9fd;
  --sky-100: #e2f1fa;
  --sky-200: #c5e3f4;
  --sky-300: #a3d2ee;
  --sky-400: #7bbde4;
  --sky-500: #5da9d6;
  --sky-600: #3f8fc0;
  --sky-700: #2f6f97;
  --sky-800: #23557a;
  --sky-900: #1b4160;
  --ink: #23384a;
  --ink-soft: #4a6478;
  --white: #ffffff;
  --gold: #e3a92e;
  --radius: 10px;
  --font-display: "Chillax", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: 0.005em; }

h1 { font-size: clamp(1.9rem, 2.9vw, 2.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

.section { padding: 84px 0; }
.section-tint { background: var(--sky-50); }
.section-sub { color: var(--ink-soft); max-width: 600px; margin-bottom: 8px; font-size: 1.05rem; }

/* Grain: sits under the content, never over it */
.grain { position: relative; isolation: isolate; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* Buttons: one solid style, flat, no lift */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--white);
  background: var(--sky-700);
  transition: background-color 0.18s ease;
}
.btn:hover { background: var(--sky-800); }
.btn-big { padding: 17px 30px; font-size: 1.12rem; }
.btn-light { background: var(--white); color: var(--sky-800); }
.btn-light:hover { background: var(--sky-100); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { height: 68px; width: auto; display: block; margin: -12px 0; }
.brand-name { display: flex; flex-direction: column; font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; line-height: 1.05; }
.brand-name em { font-style: normal; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; color: var(--sky-700); margin-top: 3px; white-space: nowrap; }

.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; transition: color 0.15s ease; }
.site-nav a:hover { color: var(--sky-700); }

.header-cta { padding: 11px 20px; font-size: 0.98rem; white-space: nowrap; }
.cta-short { display: none; }

/* Hero: the poster */
.hero {
  background: var(--sky-100);
  overflow: hidden;
}

.shout-band {
  position: relative;
  background: var(--sky-800);
  color: var(--white);
  padding: 30px 0 34px;
}
.shout-band::after {
  content: "";
  position: absolute;
  left: max(28px, calc((100% - 1064px) / 2 + 170px));
  bottom: -44px;
  width: 132px;
  height: 45px;
  background: var(--sky-800);
  clip-path: polygon(0 0, 100% 0, 34% 100%);
}

.shout {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 11vw, 6.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-align: center;
  white-space: nowrap;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: end;
  min-height: calc(100svh - 66px - 170px);
}

.hero-figure { align-self: end; display: flex; justify-content: center; }
.hero-figure img {
  display: block;
  height: clamp(480px, calc(100svh - 66px - 170px - 56px), 760px);
  width: auto;
  max-width: 100%;
  margin-top: 56px;
}

.hero-copy { padding: 72px 0 84px; }

.lead { color: var(--ink-soft); font-size: 1.12rem; margin: 20px 0 30px; max-width: 540px; }

.proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.proof li { display: flex; align-items: center; gap: 9px; }
.proof li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--white) 0, var(--sky-400) 45%, var(--sky-700) 100%); flex: none; }

/* Service-area strip */
.area-strip { background: var(--sky-800); color: var(--white); padding: 18px 0; }
.area-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 26px; }
.area-lead { font-weight: 600; font-size: 1rem; color: var(--sky-200); }
.area-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.area-list li { display: flex; align-items: center; }
.area-list li + li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; margin: 0 16px; background: radial-gradient(circle at 35% 35%, var(--white) 0, var(--sky-300) 50%, var(--sky-500) 100%); flex: none; }

/* Riveted plates */
.plate {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 30px 30px;
  background-image:
    radial-gradient(circle 4px at 14px 14px, var(--sky-400) 0, var(--sky-400) 2.4px, var(--sky-200) 2.6px, transparent 4.2px),
    radial-gradient(circle 4px at calc(100% - 14px) 14px, var(--sky-400) 0, var(--sky-400) 2.4px, var(--sky-200) 2.6px, transparent 4.2px),
    radial-gradient(circle 4px at 14px calc(100% - 14px), var(--sky-400) 0, var(--sky-400) 2.4px, var(--sky-200) 2.6px, transparent 4.2px),
    radial-gradient(circle 4px at calc(100% - 14px) calc(100% - 14px), var(--sky-400) 0, var(--sky-400) 2.4px, var(--sky-200) 2.6px, transparent 4.2px);
}
.section:not(.section-tint) .plate { background-color: var(--sky-50); }

.plates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.plate h3 { color: var(--sky-800); }
.plate p { color: var(--ink-soft); font-size: 0.98rem; }

.addons { margin-top: 30px; color: var(--ink-soft); font-size: 0.98rem; max-width: 760px; }
.addons strong { color: var(--ink); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.gallery-item img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.gallery-item figcaption { padding: 12px 4px 0; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }

/* Before & after sliders */
.ba-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  margin-top: 34px;
  align-items: start;
}

.ba-col { display: flex; flex-direction: column; gap: 24px; }

.ba-card { min-width: 0; }

.ba-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background: var(--sky-100);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after { clip-path: inset(0 0 0 var(--pos)); }

.ba-label {
  position: absolute;
  top: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--sky-800);
  color: var(--white);
  pointer-events: none;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--white) 0, var(--sky-50) 55%, var(--sky-200) 100%);
  border: 3px solid var(--sky-800);
  color: var(--sky-800);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.ba-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}

.ba-statics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-static img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.ba-static figcaption {
  padding: 10px 4px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}

/* Reviews */
.scores { display: flex; gap: 16px; flex-wrap: wrap; margin: 26px 0 30px; }
.score {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sky-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 22px 12px 18px;
  text-decoration: none;
  transition: background-color 0.18s ease;
}
.score:hover { background: var(--sky-900); }
.score-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.score-txt { display: flex; flex-direction: column; font-size: 0.92rem; font-weight: 600; line-height: 1.3; }
.score-txt .stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 0.98rem; color: var(--ink); }
.review footer { margin-top: 14px; font-weight: 700; font-size: 0.93rem; }
.review footer span { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.82rem; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.about-copy p { margin-bottom: 16px; color: var(--ink-soft); }
.about-copy p strong { color: var(--ink); }

.facts-plate h3 { color: var(--sky-800); margin-bottom: 14px; }
.facts { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.facts li { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.facts strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; margin-bottom: 2px; }

/* CTA */
.cta { background: var(--sky-800); color: var(--white); }
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}
.cta-copy { padding: 68px 0; }
.cta-copy h2 { color: var(--white); }
.cta-copy p { color: var(--sky-100); margin: 8px 0 26px; max-width: 560px; }
.cta-rosie { display: block; height: 380px; width: auto; align-self: end; margin-top: 40px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--sky-100); padding: 48px 0 36px; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 0.8fr; gap: 36px; }
.footer-col strong { display: block; font-family: var(--font-display); font-weight: 600; color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.footer-col p { color: var(--sky-200); line-height: 1.7; }
.site-footer a { color: var(--sky-200); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-note { margin-top: 36px; color: var(--sky-300); opacity: 0.85; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .hero-copy { order: 1; padding: 64px 0 40px; text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .proof { justify-content: center; }
  .hero-figure { order: 2; }
  .hero-figure img { height: min(68vh, 560px); margin-top: 12px; }
  .shout-band::after { left: 50%; margin-left: -66px; }
  .ba-row { grid-template-columns: 1fr; }
  .ba-row > .ba-card { max-width: 440px; margin: 0 auto; width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .cta-copy { padding: 60px 0 32px; }
  .cta-copy p { margin-left: auto; margin-right: auto; }
  .cta-rosie { height: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .footer-note { text-align: center; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .plates { grid-template-columns: 1fr; }
  .header-inner { gap: 14px; }
  .brand-name { font-size: 1.1rem; }
  .brand-name em { font-size: 0.64rem; }
  .brand-mark { height: 58px; margin: -6px 0; }
  .header-cta { margin-left: auto; padding: 10px 16px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .shout-band { padding: 22px 0 26px; }
  .shout-band::after { bottom: -34px; width: 104px; height: 35px; margin-left: -52px; }
  .area-list li + li::before { margin: 0 11px; }
  .area-list { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .site-nav a, .score { transition: none; }
}
