:root {
  --ink: #2f2822;
  --muted: #75685d;
  --paper: #f7f2ea;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --brand: #635648;
  --brand-dark: #3a2f28;
  --brand-darker: #241d19;
  --brand-soft: #e7ded2;
  --brand-mist: #efe6db;
  --amber: #b37a36;
  --amber-soft: #e5c28e;
  --beer: #d99a2b;
  --line: rgba(99, 86, 72, 0.18);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 55px rgba(64, 53, 45, 0.16);
  --shadow-soft: 0 12px 30px rgba(64, 53, 45, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--muted);
}

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

.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;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1260px);
  min-height: 72px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(99, 86, 72, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 58px;
  width: 58px;
  height: 50px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  min-height: 42px;
  padding: 11px 10px;
  border-radius: 8px;
  color: #51463d;
  font-size: 0.88rem;
  font-weight: 750;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--brand-soft);
  color: var(--brand-dark);
  outline: none;
}

.main-nav .nav-cta {
  margin-left: 5px;
  background: var(--brand);
  color: #fff;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: var(--brand-dark);
  color: #fff;
}

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

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brand-soft);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.98) 0%, rgba(247, 242, 234, 0.86) 32%, rgba(247, 242, 234, 0.22) 72%),
    linear-gradient(180deg, rgba(36, 29, 25, 0.12) 0%, rgba(36, 29, 25, 0.34) 100%);
}

.hero-content {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 156px 0 56px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: #8d6041;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  color: #1f1916;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: #51463d;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(99, 86, 72, 0.24);
}

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

.button.secondary {
  border-color: rgba(99, 86, 72, 0.32);
  background: rgba(255, 253, 248, 0.82);
  color: var(--brand-dark);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #fff;
}

.button.centered {
  width: fit-content;
  margin: 34px auto 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--brand-dark);
  box-shadow: 0 12px 32px rgba(64, 53, 45, 0.08);
  font-size: 0.92rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

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

.split,
.section-heading,
.zone-content,
.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: start;
}

.section h2,
.cta-section h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading p {
  align-self: end;
  max-width: 570px;
  font-size: 1.06rem;
}

.copy-block p,
.lead {
  font-size: 1.08rem;
}

.copy-block p:last-child,
.section-heading p:last-child,
.zone-content p:last-child,
.cta-content p:last-child,
.dark-panel p:last-child,
.opening-card p:last-child {
  margin-bottom: 0;
}

.intro-section {
  padding-bottom: 72px;
}

.value-grid,
.feature-grid,
.promo-grid,
.package-grid,
.ideas-grid {
  display: grid;
  gap: 14px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}

.value-grid article,
.feature-card,
.promo-grid article,
.ideas-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(64, 53, 45, 0.07);
}

.value-grid span,
.package-grid span,
.timeline span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
}

.value-grid h3,
.feature-card h3,
.promo-grid h3,
.package-grid h3,
.timeline h3,
.dual-panel h3,
.opening-card h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 1.18rem;
  line-height: 1.15;
}

.value-grid p,
.feature-card p,
.promo-grid p {
  margin-bottom: 0;
}

.service-section {
  width: 100%;
  max-width: none;
  padding: 96px max(16px, calc((100% - var(--max)) / 2));
  background: var(--brand-mist);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dark-panel-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.dark-panel,
.brand-panel,
.opening-card {
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.dark-panel {
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(99, 86, 72, 0.98), rgba(36, 29, 25, 0.94)),
    radial-gradient(circle at 100% 0, rgba(217, 154, 43, 0.18), transparent 34%);
}

.dark-panel h2,
.dark-panel p,
.dark-panel .section-kicker,
.brand-panel h2,
.brand-panel p,
.brand-panel .section-kicker,
.opening-card h2,
.opening-card p,
.opening-card .section-kicker {
  color: #fff;
}

.dark-panel p,
.brand-panel p,
.opening-card p {
  color: rgba(255, 255, 255, 0.82);
}

.microcopy {
  margin: 18px 0 0;
  color: #fff;
  font-weight: 850;
}

.microcopy.wide {
  max-width: 760px;
  margin-top: 28px;
  color: var(--brand-dark);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.tag-cloud span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 750;
}

.two-column-list,
.dual-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.two-column-list article,
.dual-panel article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(64, 53, 45, 0.07);
}

.two-column-list ul,
.dual-panel ul,
.check-list,
.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.legal-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  color: #604f43;
}

.promo-section {
  padding-bottom: 70px;
}

.promo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.opening-section {
  width: 100%;
  max-width: none;
  padding: 96px max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.96), rgba(247, 242, 234, 0.78)),
    repeating-linear-gradient(45deg, rgba(99, 86, 72, 0.1) 0, rgba(99, 86, 72, 0.1) 1px, transparent 1px, transparent 18px);
}

.opening-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(64, 53, 45, 0.98), rgba(36, 29, 25, 0.95)),
    radial-gradient(circle at 100% 0, rgba(217, 154, 43, 0.2), transparent 36%);
}

.opening-card .button {
  margin-top: 8px;
}

.opening-card .check-list {
  padding: 24px 24px 24px 42px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.packages-section {
  padding-bottom: 80px;
}

.package-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.package-grid article {
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(64, 53, 45, 0.07);
}

.package-grid .package-featured {
  background: var(--brand);
  color: #fff;
}

.package-featured h3,
.package-featured p,
.package-featured ul,
.package-featured span {
  color: #fff;
}

.process-section {
  width: 100%;
  max-width: none;
  padding: 96px max(16px, calc((100% - var(--max)) / 2));
  background: var(--brand-mist);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline li {
  min-height: 238px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline span {
  margin-bottom: 42px;
}

.ideas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ideas-grid article {
  min-height: 130px;
  display: grid;
  align-items: end;
  color: var(--brand-dark);
  font-weight: 900;
}

.brand-section {
  padding-bottom: 70px;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(99, 86, 72, 0.98), rgba(64, 53, 45, 0.92)),
    radial-gradient(circle at 100% 0, rgba(216, 196, 173, 0.32), transparent 34%);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  padding: 15px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.product-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--product-accent, var(--amber-soft));
}

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

.product-list span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-list strong {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.05;
}

.product-list small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.product-heineken,
.product-heineken-zero {
  --product-accent: #00855a;
}

.product-aguila {
  --product-accent: #d9a124;
}

.product-desperados {
  --product-accent: #d3482e;
}

.product-cider {
  --product-accent: #b6c65a;
}

.product-amstel,
.product-amstel-zero {
  --product-accent: #bd342d;
}

.product-alcazar {
  --product-accent: #006c5b;
}

.tech-capacity-section {
  padding-top: 40px;
}

.zone-section {
  width: 100%;
  max-width: none;
  padding: 92px max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.94), rgba(247, 242, 234, 0.82)),
    repeating-linear-gradient(45deg, rgba(99, 86, 72, 0.1) 0, rgba(99, 86, 72, 0.1) 1px, transparent 1px, transparent 18px);
}

.zone-box {
  justify-self: end;
  display: grid;
  align-content: center;
  width: min(100%, 430px);
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(64, 53, 45, 0.12);
}

.zone-box strong {
  color: var(--brand);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.zone-box span {
  margin-top: 4px;
  color: var(--amber);
  font-size: 1.4rem;
  font-weight: 900;
}

.zone-box small {
  margin-top: 34px;
  color: var(--muted);
  font-weight: 750;
}

.faq-section {
  padding-bottom: 78px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(64, 53, 45, 0.06);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 56px 20px 20px;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 1.5rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(179, 122, 54, 0.35);
  outline-offset: 2px;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
}

.cta-section {
  padding: 94px max(16px, calc((100% - var(--max)) / 2));
  background: var(--brand-dark);
  color: #fff;
}

.cta-section h2,
.cta-section p,
.cta-section .section-kicker {
  color: #fff;
}

.cta-section p {
  opacity: 0.82;
}

.cta-actions {
  align-self: center;
  justify-content: flex-end;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  margin-top: 42px;
}

.contact-form,
.contact-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form {
  padding: 24px;
}

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

.form-grid label,
.privacy-check {
  display: grid;
  gap: 7px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid span,
.privacy-check span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(229, 194, 142, 0.32);
  outline-offset: 1px;
}

.form-grid option {
  color: var(--ink);
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-top: 16px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  min-height: 128px;
  padding: 22px;
}

.contact-card span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card a:not(.text-link) {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

.contact-card address {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(86px, 1fr) auto;
  gap: 12px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: rgba(255, 255, 255, 0.72);
}

.hours-list dd {
  color: #fff;
  font-weight: 850;
}

.whatsapp-float {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: #1f7a4d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 122, 77, 0.28);
  font-weight: 950;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #17613d;
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(16px, calc((100% - var(--max)) / 2));
  background: var(--brand-darker);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
  color: inherit;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .main-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 64px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .main-nav a,
  .main-nav .nav-cta {
    margin: 0;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 242, 234, 0.96) 0%, rgba(247, 242, 234, 0.82) 48%, rgba(247, 242, 234, 0.38) 100%),
      linear-gradient(90deg, rgba(247, 242, 234, 0.94), rgba(247, 242, 234, 0.1));
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding-top: 130px;
  }

  .split,
  .section-heading,
  .zone-content,
  .cta-content,
  .brand-panel,
  .opening-card,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .value-grid,
  .feature-grid,
  .promo-grid,
  .ideas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline li:nth-child(2n) {
    border-right: 0;
  }

  .timeline li:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .zone-box {
    justify-self: stretch;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand-logo {
    flex-basis: 44px;
    width: 44px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 850px;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-badges,
  .value-grid,
  .feature-grid,
  .promo-grid,
  .ideas-grid,
  .product-list,
  .two-column-list,
  .dual-panel,
  .package-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 8px;
    margin-top: 28px;
  }

  .section,
  .service-section,
  .opening-section,
  .process-section,
  .zone-section,
  .cta-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .dark-panel-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .dark-panel,
  .brand-panel,
  .opening-card,
  .contact-form {
    padding: 26px;
  }

  .opening-card .check-list {
    padding: 20px 20px 20px 36px;
  }

  .timeline li,
  .timeline li:nth-child(2n),
  .timeline li:nth-child(-n + 4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline li:last-child {
    border-bottom: 0;
  }

  .timeline span,
  .value-grid span,
  .package-grid span {
    margin-bottom: 24px;
  }

  .contact-card a:not(.text-link) {
    font-size: 1.18rem;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .privacy-check {
    grid-template-columns: auto 1fr;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
  }

  .site-footer {
    display: grid;
    padding-right: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
