:root {
  --white: #ffffff;
  --paper: #f6f7f5;
  --mist: #e9ece8;
  --ink: #172022;
  --muted: #647073;
  --line: #d8dedb;
  --petrol: #123d46;
  --petrol-2: #0f5963;
  --blue: #2f6f8f;
  --shadow: 0 22px 70px rgba(18, 61, 70, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 10;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 50px rgba(20, 34, 38, 0.1);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(18, 61, 70, 0.88);
  font-size: 0.86rem;
}

.site-header.is-scrolled .topbar {
  background: var(--petrol);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-links a {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--petrol);
  color: var(--white);
  font-weight: 800;
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.75;
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: #bfe2e0;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
}

.site-header.is-scrolled .nav-cta {
  border-color: var(--line);
  background: var(--petrol);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--petrol);
  border-radius: 6px;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 27, 31, 0.82), rgba(18, 61, 70, 0.5) 54%, rgba(13, 27, 31, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 170px 0 90px;
  max-width: 820px;
  margin-inline: max(calc((100% - var(--max)) / 2), 20px) auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petrol-2);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bfe2e0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--petrol-2);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(15, 89, 99, 0.25);
}

.btn-primary:hover {
  background: var(--petrol);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  color: var(--white);
  background: #1d7f5f;
}

.trust-row {
  margin-top: 34px;
}

.trust-row span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.wide {
  max-width: 920px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.advantages,
.showroom,
.contact-section {
  background: var(--paper);
}

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

.feature,
.why-item,
.quote-form,
.contact-list a {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.feature {
  padding: 24px;
  min-height: 220px;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 6px;
  background: #dcebea;
  color: var(--petrol);
  font-weight: 900;
}

.feature p,
.why-item p,
.product-card p,
.split-copy p,
.showroom-copy p,
.contact-info p,
.footer p {
  color: var(--muted);
}

.split-layout,
.showroom-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.split-copy {
  max-width: 610px;
}

.text-link,
.product-card a {
  color: var(--petrol-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.showroom-card {
  margin: 0;
  position: relative;
  box-shadow: var(--shadow);
}

.showroom-card img,
.showroom-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.showroom-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.showroom-card strong,
.showroom-card span {
  display: block;
}

.showroom-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(23, 32, 34, 0.05);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--ink);
}

.product-card a {
  margin-top: auto;
}

.showroom-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hours {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--petrol-2);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.why-item {
  padding: 26px;
}

.why-item span {
  color: var(--petrol-2);
  font-weight: 900;
}

.contact-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.local-seo {
  font-size: 0.96rem;
}

.contact-list a {
  padding: 16px;
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list span {
  color: var(--muted);
}

.quote-form {
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin-bottom: 20px;
}

.hidden-field {
  display: none;
}

.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(15, 89, 99, 0.18);
  border-color: var(--petrol-2);
}

.privacy {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-size: 0.9rem;
  color: var(--muted);
}

.privacy input {
  margin-top: 5px;
}

.map-wrap {
  margin-top: 48px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.25);
}

.footer {
  padding: 46px 0 90px;
  color: rgba(255, 255, 255, 0.84);
  background: #121a1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

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

.footer-brand {
  color: var(--white);
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1020px) {
  .advantage-grid,
  .product-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .showroom-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(23, 32, 34, 0.1);
  }

  .nav {
    min-height: 68px;
  }

  .brand,
  .nav-links a,
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .nav-links a {
    color: var(--ink);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-cta {
    background: var(--petrol);
    color: var(--white) !important;
    text-align: center;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 23, 26, 0.76), rgba(12, 23, 26, 0.58));
  }

  .hero-content {
    padding: 125px 0 70px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.7rem);
  }

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

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

  .section {
    padding: 68px 0;
  }

  .advantage-grid,
  .product-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .showroom-card figcaption {
    position: static;
    margin-top: -4px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

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

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    background: var(--petrol);
    font-weight: 850;
    box-shadow: 0 12px 30px rgba(23, 32, 34, 0.22);
  }

  .mobile-actions a:last-child {
    background: #1d7f5f;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .quote-form {
    padding: 20px;
  }
}
