:root {
  --ink: #0b0c0e;
  --ink-2: #14161a;
  --steel: #25282e;
  --muted: #676c75;
  --line: #d8d9dc;
  --paper: #f4f3f0;
  --white: #ffffff;
  --red: #df171c;
  --red-dark: #a90f13;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--white);
  color: var(--ink); padding: 12px 18px; border-radius: 8px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(to bottom, rgba(4,5,6,.9), rgba(4,5,6,.5));
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(9,10,12,.96);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 10px 34px rgba(0,0,0,.26);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); }
.brand strong { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; line-height: 1.1; }
.brand small { display: block; margin-top: 4px; color: rgba(255,255,255,.66); font-size: .76rem; letter-spacing: .05em; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 650; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav .nav-cta { border: 1px solid rgba(255,255,255,.58); padding: 11px 16px; border-radius: 999px; color: var(--white); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--white); margin: 5px; transition: transform .2s ease, opacity .2s ease; }

.hero, .carousel { min-height: 760px; height: min(88vh, 900px); background: var(--ink); }
.carousel { position: relative; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 7s ease; }
.slide.is-active > img { transform: scale(1); }
.slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,7,.92) 5%, rgba(5,6,7,.66) 50%, rgba(5,6,7,.18) 83%), linear-gradient(0deg, rgba(5,6,7,.56), transparent 45%); }
.slide-content { position: relative; z-index: 2; min-height: 100%; padding-top: 185px; padding-bottom: 110px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: var(--white); }
.slide-content > * { max-width: 720px; }
.eyebrow { margin: 0 0 18px; color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-weight: 850; font-size: .78rem; }
.slide-content h1, .slide-content h2 {
  margin: 0; max-width: 800px; font-size: clamp(3.2rem, 7vw, 6.6rem); line-height: .92;
  letter-spacing: -.055em; text-wrap: balance;
}
.slide-content h2 { font-size: clamp(3rem, 6.2vw, 5.8rem); }
.slide-content > p:not(.eyebrow) { margin: 28px 0 0; max-width: 610px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid transparent;
  border-radius: 999px; padding: 13px 21px; text-decoration: none; font-weight: 800; line-height: 1.2;
  cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 30px rgba(223,23,28,.25); }
.button-primary:hover { background: #f01920; }
.button:disabled { cursor: wait; opacity: .72; transform: none; }
.button-ghost { border-color: rgba(255,255,255,.48); color: var(--white); background: rgba(8,9,10,.22); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-street { border-color: rgba(255,255,255,.38); background: var(--white); color: var(--ink); }
.button-street:hover { background: #ededed; border-color: var(--white); }
.carousel-arrow {
  position: absolute; z-index: 5; top: 50%; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%; background: rgba(5,6,7,.3); color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer;
  backdrop-filter: blur(10px); transform: translateY(-50%); transition: background .2s ease, border-color .2s ease;
}
.carousel-arrow:hover, .carousel-arrow:focus-visible { background: var(--red); border-color: var(--red); }
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }
.carousel-dots { position: absolute; z-index: 5; left: 50%; bottom: 30px; display: flex; gap: 9px; transform: translateX(-50%); }
.carousel-dot { width: 9px; height: 9px; border: 0; border-radius: 99px; padding: 0; background: rgba(255,255,255,.38); cursor: pointer; transition: width .25s ease, background .25s ease; }
.carousel-dot.is-active { width: 32px; background: var(--red); }

.trust-bar { position: relative; z-index: 8; margin-top: -2px; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.1); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 28px; border-left: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: .92rem; }
.trust-grid span { margin-top: 3px; color: rgba(255,255,255,.52); font-size: .78rem; }

.section { padding: 112px 0; scroll-margin-top: 76px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr); align-items: end; gap: 48px; margin-bottom: 48px; }
.section-heading h2, .history h2, .booking h2, .location h2, .final-cta h2 {
  margin: 0; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.045em; text-wrap: balance;
}
.section-heading > p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-number { color: var(--red); font-weight: 900; letter-spacing: .12em; font-size: .76rem; }
.service-card h3 { margin: 66px 0 12px; font-size: 1.45rem; line-height: 1.15; }
.service-card p { margin: 0; color: var(--muted); }
.like-button { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; border: 0; border-radius: 999px; padding: 9px 12px; color: var(--muted); background: #f0f0ef; cursor: pointer; font-weight: 750; font-size: .86rem; }
.like-button span:first-child { font-size: 1.3rem; line-height: 1; }
.like-button[aria-pressed="true"] { color: var(--red); background: #fff0f0; }
.like-button[aria-pressed="true"] span:first-child { color: var(--red); }

.history { color: var(--white); background: var(--ink-2); position: relative; overflow: hidden; }
.history::before { content: ""; position: absolute; inset: 0 auto 0 48%; width: 1px; background: rgba(255,255,255,.1); }
.history-layout { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; align-items: center; }
.history .lead { margin: 28px 0; color: rgba(255,255,255,.62); font-size: 1.1rem; max-width: 560px; }
.history-note { display: flex; gap: 14px; align-items: flex-start; max-width: 520px; padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.035); }
.history-note > span { display: grid; place-items: center; flex: 0 0 26px; height: 26px; border-radius: 50%; color: var(--white); background: var(--red); font-weight: 900; }
.history-note p { margin: 0; color: rgba(255,255,255,.65); }
.history-note strong { color: var(--white); }
.process { list-style: none; padding: 0; margin: 0; }
.process li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.process li:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.process li > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--red); font-weight: 900; }
.process strong { font-size: 1.08rem; }
.process p { margin: 4px 0 0; color: rgba(255,255,255,.52); }

.products { background: #ecebea; }
.text-link { color: var(--red-dark); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 9px; }
.wa-icon {
  display: inline-block; flex: 0 0 auto; width: 1.15em; height: 1.15em;
  background: currentColor;
  -webkit-mask: url('assets/whatsapp.svg') center / contain no-repeat;
  mask: url('assets/whatsapp.svg') center / contain no-repeat;
}
.contact-chips .wa-icon, .location-contacts .wa-icon { color: #18b957; }
.product-list { border-top: 1px solid #bfc1c5; }
.product-list > div { display: grid; grid-template-columns: 60px 1fr .9fr; align-items: center; gap: 24px; padding: 26px 4px; border-bottom: 1px solid #bfc1c5; }
.product-list span { color: var(--red); font-size: .76rem; font-weight: 900; }
.product-list strong { font-size: clamp(1.3rem, 2.4vw, 2rem); }
.product-list small { color: var(--muted); font-size: .95rem; }

.booking { background: var(--white); }
.booking-layout { display: grid; grid-template-columns: .72fr 1.1fr; gap: 90px; align-items: start; }
.booking-intro { position: sticky; top: 40px; }
.booking-intro > p:not(.eyebrow) { color: var(--muted); max-width: 480px; margin: 24px 0; }
.contact-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-chips a { padding: 8px 12px; border-radius: 999px; background: #efefee; text-decoration: none; font-weight: 800; font-size: .86rem; }
.booking-form { padding: 34px; border-radius: 24px; color: var(--white); background: var(--ink-2); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label { display: block; margin-bottom: 18px; color: rgba(255,255,255,.72); font-size: .88rem; font-weight: 750; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; margin-top: 7px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: var(--white);
  background: #22252a; padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.booking-form input, .booking-form select { min-height: 50px; }
.booking-form textarea { resize: vertical; min-height: 118px; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(255,255,255,.36); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(223,23,28,.18); }
.booking-form select option { color: var(--ink); background: var(--white); }
.submit-button { width: 100%; border: 0; }
.form-note, .form-status { margin: 12px 0 0; text-align: center; color: rgba(255,255,255,.48); font-size: .8rem; }
.form-status { min-height: 20px; color: #ffc0c2; }

.location { color: var(--white); background: var(--ink); }
.location-layout { display: grid; grid-template-columns: .72fr 1.2fr; min-height: 540px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; overflow: hidden; }
.location-card { display: flex; flex-direction: column; align-items: flex-start; padding: 50px; }
.location-card address { margin: 26px 0; color: rgba(255,255,255,.72); font-size: 1.15rem; font-style: normal; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.location-actions .button { text-align: center; }
.directions-status { margin: 13px 0 0; max-width: 430px; color: rgba(255,255,255,.55); font-size: .83rem; }
.location-contacts { display: grid; gap: 4px; margin-top: auto; padding-top: 42px; }
.location-contacts span { color: rgba(255,255,255,.45); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.location-contacts a { color: var(--white); text-decoration: none; font-weight: 800; }
.location-contacts a:hover { color: var(--red); }
.map-frame { min-height: 460px; background: #222; }
.map-frame iframe { width: 100%; height: 100%; min-height: 540px; border: 0; }

.final-cta { padding: 55px 0; background: #08090a; color: var(--white); border-top: 1px solid rgba(255,255,255,.1); }
.final-cta-inner { display: grid; grid-template-columns: 140px 1fr auto; gap: 30px; align-items: center; }
.final-cta img { width: 130px; height: 130px; object-fit: cover; border-radius: 50%; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
.final-cta .eyebrow { margin-bottom: 10px; }
footer { padding: 24px 0 84px; color: rgba(255,255,255,.58); background: #08090a; border-top: 1px solid rgba(255,255,255,.08); font-size: .84rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-inner a { text-decoration: none; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid #ff4a4f; outline-offset: 3px; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 0 0 0 28%; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 10px; padding: 90px 34px; background: rgba(10,11,13,.98); transform: translateX(105%); transition: transform .28s ease; }
  .main-nav.is-open { transform: none; }
  .main-nav a { padding: 12px 0; font-size: 1.15rem; }
  .main-nav .nav-cta { text-align: center; margin-top: 12px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(even) { border-right: 1px solid rgba(255,255,255,.1); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .history-layout, .booking-layout { grid-template-columns: 1fr; gap: 54px; }
  .history::before { display: none; }
  .booking-intro { position: static; }
  .location-layout { grid-template-columns: 1fr; }
  .map-frame iframe { min-height: 430px; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  body { padding-bottom: 66px; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand small { display: none; }
  .main-nav { left: 12%; }
  .hero, .carousel { min-height: 690px; height: 88svh; }
  .slide-content { padding-top: 130px; padding-bottom: 96px; justify-content: flex-end; }
  .slide-content h1, .slide-content h2 { font-size: clamp(2.75rem, 14.5vw, 4.5rem); }
  .slide-content > p:not(.eyebrow) { margin-top: 20px; font-size: 1rem; }
  .hero-actions { width: 100%; margin-top: 26px; }
  .hero-actions .button { flex: 1 1 100%; }
  .carousel-arrow { display: none; }
  .carousel-dots { bottom: 22px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding: 17px 4px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid > div:last-child { border-right: 0; }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .section-heading h2, .history h2, .booking h2, .location h2 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; }
  .service-card h3 { margin-top: 40px; }
  .history-layout { gap: 45px; }
  .process li { grid-template-columns: 45px 1fr; }
  .product-list > div { grid-template-columns: 42px 1fr; gap: 12px; }
  .product-list small { grid-column: 2; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding: 24px 18px; border-radius: 18px; }
  .location-layout { border-radius: 18px; }
  .location-card { padding: 34px 24px; min-height: 480px; }
  .map-frame iframe { min-height: 380px; }
  .final-cta-inner { grid-template-columns: 82px 1fr; }
  .final-cta img { width: 76px; height: 76px; }
  .final-cta .button { grid-column: 1 / -1; }
  .footer-inner { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; inset: auto 0 0; background: var(--ink); box-shadow: 0 -8px 30px rgba(0,0,0,.28); }
  .mobile-actions a { min-height: 62px; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; font-weight: 850; }
  .mobile-actions a:last-child { background: var(--red); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
