:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --ink: #001b43;
  --graphite: #474b54;
  --muted: #59636f;
  --line: #d9e0ea;
  --gold: #c7830a;
  --gold-light: #fff3dc;
  --whatsapp: #087a45;
  --whatsapp-dark: #065f36;
  --shadow: 0 18px 60px rgba(0, 27, 67, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 249, 252, 0.92);
  border-bottom: 1px solid rgba(217, 224, 234, 0.8);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid rgba(217, 224, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 27, 67, 0.12);
}

.brand-mark img {
  width: 36px;
  height: 32px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 28px rgba(8, 122, 69, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--whatsapp-dark);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #b7cbc3;
  box-shadow: 0 10px 24px rgba(20, 33, 31, 0.08);
}

.button-quiet {
  min-height: 40px;
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--gold);
  background: transparent;
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: clamp(540px, calc(100svh - 76px), 650px);
  display: grid;
  align-items: center;
  padding: 24px 0 22px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.hero-copy,
.hero-visual,
.split-copy,
.split-image,
.about-copy,
.about-image,
.privacy-strip > *,
.quote-panel > *,
.delivery-layout > * {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 590px;
  margin: 10px 0 0;
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-logo {
  width: min(136px, 44vw);
  height: auto;
  margin: 0 0 4px;
  object-fit: contain;
}

.brand-slogan {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 580px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-copy .hero-coverage {
  max-width: 620px;
  margin-top: 16px;
  padding-left: 12px;
  color: var(--graphite);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 34%;
  height: 24%;
  border-right: 10px solid var(--gold);
  border-bottom: 10px solid var(--gold);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-item {
  min-height: 118px;
  padding: 24px;
  background: var(--surface);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 18px;
}

.trust-item span {
  margin-top: 8px;
  color: var(--muted);
}

.intro-section,
.line-section,
.services-section,
.process-section,
.coverage-section,
.gallery-section,
.conditions-section,
.faq-section,
.quote-section,
.about-section,
.split-section,
.privacy-strip {
  padding: 94px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.intro-copy h2,
.coverage-copy h2,
.conditions-section h2,
.split-copy h2,
.privacy-strip h2,
.about-copy h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.intro-copy p,
.intro-panel p,
.coverage-copy p,
.conditions-section p,
.split-copy p,
.privacy-strip p,
.about-copy p,
.quote-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  gap: clamp(22px, 5vw, 64px);
}

.intro-panel {
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 27, 67, 0.98), rgba(71, 75, 84, 0.95)),
    var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
}

.intro-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.line-card {
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.line-card:hover,
.line-card:focus-within,
.line-card.is-selected {
  border-color: rgba(199, 131, 10, 0.75);
  box-shadow: 0 16px 38px rgba(0, 27, 67, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.line-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.line-card div {
  padding: 20px;
}

.line-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.14;
}

.line-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.line-view {
  margin-top: 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 850;
  cursor: pointer;
}

.line-view:hover,
.line-view:focus-visible {
  color: var(--gold);
}

.line-view:focus-visible {
  outline: 3px solid rgba(199, 131, 10, 0.28);
  outline-offset: 4px;
}

.line-preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 27, 67, 0.08);
  scroll-margin-top: 86px;
}

.line-preview-copy {
  align-self: center;
}

.line-preview-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.line-preview-copy h3 {
  margin: 12px 0 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.line-preview-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.line-preview-copy .button {
  margin-top: 24px;
}

.line-preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.line-preview-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 24px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.category-cta h3,
.category-cta p {
  margin: 0;
}

.category-cta h3 {
  font-size: 24px;
  line-height: 1.15;
}

.category-cta p {
  max-width: 720px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
}

.category-cta .button-secondary {
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.38);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card span,
.product-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3,
.product-card h3,
.delivery-list h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p,
.product-card p,
.delivery-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 850;
}

.split-section,
.about-section,
.privacy-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.split-image,
.about-image,
.privacy-strip figure {
  margin: 0;
}

.split-image img,
.about-image img,
.privacy-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold), var(--ink));
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list li {
  min-height: 250px;
  padding: 24px;
  background: var(--surface);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.process-list h3 {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.14;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.coverage-section,
.conditions-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(24px, 5vw, 72px);
}

.coverage-panel {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 27, 67, 0.07);
}

.coverage-panel strong {
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-panel strong:first-child {
  margin-top: 0;
}

.coverage-panel span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.24;
}

.condition-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.condition-list li {
  padding: 18px 20px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

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

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--gold);
}

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

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  padding: 0 15px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  min-height: 212px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card.is-hidden,
.gallery-grid figure.is-hidden {
  display: none;
}

.product-card .button {
  grid-column: 2;
  justify-self: start;
  margin-top: 2px;
}

.product-media {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.product-media svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.product-media-green {
  color: var(--ink);
  background: #edf3fb;
}

.product-media-amber {
  color: #835706;
  background: var(--gold-light);
}

.product-media-blue {
  color: var(--graphite);
  background: #edf0f4;
}

.product-media-dark {
  color: #fff;
  background: var(--ink);
}

.delivery-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.delivery-main {
  margin: 0;
}

.delivery-main img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.delivery-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.delivery-list article {
  padding: 26px;
  background: var(--surface);
}

.delivery-list h3 {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(20, 33, 31, 0.84);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.privacy-strip {
  grid-template-columns: 0.85fr 1.15fr;
  padding-bottom: 8px;
}

.privacy-strip figure {
  order: 1;
}

.privacy-strip div {
  order: 2;
}

.about-section {
  padding-bottom: 8px;
}

.quote-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 27, 67, 0.98), rgba(71, 75, 84, 0.97)),
    var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-logo {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 26px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a,
.contact-lines span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 131, 10, 0.25);
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(8, 122, 69, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  min-height: 110px;
  margin: 70px auto 0;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 92px;
  height: auto;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 68px;
    position: relative;
    padding-right: 54px;
  }

  .menu-toggle {
    z-index: 12;
    display: grid !important;
    position: absolute;
    right: 0;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 68px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
    min-height: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-content,
  .intro-section,
  .line-preview,
  .split-section,
  .about-section,
  .privacy-strip,
  .quote-panel,
  .coverage-section,
  .conditions-section,
  .delivery-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual::after {
    right: 0;
    bottom: -10px;
  }

  .trust-band,
  .line-grid,
  .line-preview-gallery,
  .service-grid,
  .process-list,
  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .section,
  .nav-shell,
  .site-footer {
    width: min(362px, calc(100vw - 28px));
    max-width: none;
    margin-left: 14px;
    margin-right: auto;
  }

  .hero-copy,
  .hero-visual,
  .hero-visual img {
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    width: 108px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-copy p,
  .section-heading p,
  .intro-copy p,
  .intro-panel p,
  .coverage-copy p,
  .conditions-section p,
  .split-copy p,
  .privacy-strip p,
  .about-copy p,
  .quote-copy p {
    font-size: 16px;
  }

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

  .hero-actions .button-quiet {
    display: none;
  }

  .hero-visual {
    margin-top: 4px;
  }

  .category-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .category-cta .button {
    width: 100%;
  }

  .trust-band,
  .line-grid,
  .line-preview-gallery,
  .service-grid,
  .process-list,
  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .intro-section,
  .line-section,
  .services-section,
  .process-section,
  .coverage-section,
  .gallery-section,
  .conditions-section,
  .faq-section,
  .quote-section,
  .about-section,
  .split-section,
  .privacy-strip {
    padding-top: 70px;
  }

  .service-card {
    min-height: 260px;
  }

  .line-card img {
    aspect-ratio: 16 / 10;
  }

  .line-preview {
    padding: 18px;
  }

  .line-preview-gallery img {
    min-height: 190px;
  }

  .process-list li {
    min-height: auto;
  }

  .product-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .product-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-media {
    width: 92px;
    height: 92px;
  }

  .delivery-main img {
    min-height: 300px;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 220px;
  }

  .quote-panel {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 94px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
