:root {
  --color-ink: #111111;
  --color-graphite: #373435;
  --color-graphite-2: #252323;
  --color-muted: #6f6a66;
  --color-soft: #f8f7f5;
  --color-soft-2: #efebe6;
  --color-line: #e6e0d8;
  --color-white: #ffffff;
  --color-red: #ed3237;
  --color-red-dark: #c71e25;
  --color-gold: #b8915f;
  --shadow-soft: 0 24px 70px rgba(17, 17, 17, 0.11);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.26);
  --radius: 8px;
  --container: 1180px;
  --header-height: 86px;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

address {
  font-style: normal;
}

::selection {
  color: var(--color-white);
  background: var(--color-red);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  position: relative;
  padding: 104px 0;
  overflow: clip;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(237, 50, 55, 0.05), transparent 35%),
    var(--color-soft-2);
}

.section-dark {
  color: var(--color-white);
  background: var(--color-graphite);
}

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

.section-heading h2,
.section-copy h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.section-dark .section-heading h2,
.section-dark .section-copy h2 {
  color: var(--color-white);
}

.section-heading p,
.section-copy p {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--color-muted);
}

.section-dark .section-heading p,
.section-dark .section-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow > span {
  min-width: 0;
  overflow-wrap: break-word;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 36%);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(110%);
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg:last-child {
  margin-right: 0;
  margin-left: 9px;
}

.button svg.whatsapp-logo,
.contact-card svg.whatsapp-logo,
.floating-whatsapp svg.whatsapp-logo {
  fill: currentColor;
  stroke: none;
}

.button svg.whatsapp-logo {
  width: 20px;
  height: 20px;
}

.button-red {
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: 0 16px 36px rgba(237, 50, 55, 0.28);
}

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

.button-light {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.92);
}

.button-dark {
  color: var(--color-white);
  background: var(--color-graphite);
}

.button-border {
  border-color: var(--color-line);
}

.button-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.button-small {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.site-header {
  position: fixed;
  inset: 16px 20px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 16px 50px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(22px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  border-color: rgba(55, 52, 53, 0.12);
  box-shadow: 0 18px 56px rgba(17, 17, 17, 0.14);
}

.brand-link {
  display: flex;
  align-items: center;
}

.brand-link img {
  width: 178px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 12px 14px;
  color: var(--color-graphite);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(55, 52, 53, 0.14);
  border-radius: var(--radius);
  color: var(--color-graphite);
  background: var(--color-white);
  cursor: pointer;
}

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

.menu-toggle .close-icon {
  display: none;
}

.menu-open .menu-toggle .menu-icon {
  display: none;
}

.menu-open .menu-toggle .close-icon {
  display: block;
}

.hero {
  min-height: 92svh;
  padding: 138px 0 94px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg {
  background-image: url("../img/benetto-showroom-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 1800ms cubic-bezier(0.16, 1, 0.3, 1) forwards, slowPan 18s ease-in-out 2s infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 247, 245, 0.98) 0%, rgba(248, 247, 245, 0.92) 32%, rgba(248, 247, 245, 0.46) 58%, rgba(17, 17, 17, 0.1) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.16), rgba(17, 17, 17, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  color: var(--color-ink);
  min-width: 0;
  max-width: 100%;
}

.hero-logo {
  width: 360px;
  max-width: 80%;
  margin-bottom: 26px;
  filter: drop-shadow(0 18px 30px rgba(17, 17, 17, 0.08));
}

.hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 5.1rem;
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-title::after {
  content: "";
  display: block;
  width: 154px;
  height: 4px;
  margin-top: 26px;
  background: var(--color-red);
  transform-origin: left;
  animation: lineGrow 900ms cubic-bezier(0.16, 1, 0.3, 1) 900ms both;
}

.hero .eyebrow {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
}

.hero .eyebrow > span {
  white-space: normal;
}

.hero-subtitle {
  max-width: 640px;
  margin: 26px 0 0;
  color: #4a4542;
  font-size: 1.06rem;
}

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

.hero .button-ghost {
  color: var(--color-graphite);
  border-color: rgba(55, 52, 53, 0.2);
  background: rgba(255, 255, 255, 0.58);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  border-color: rgba(237, 50, 55, 0.35);
  background: rgba(255, 255, 255, 0.86);
}

.hero-badges {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 12px;
  width: min(100%, 300px);
  margin-bottom: 36px;
}

.hero-badges span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: var(--color-white);
  background: rgba(17, 17, 17, 0.34);
  box-shadow: var(--shadow-dark);
  font-weight: 800;
  backdrop-filter: blur(18px);
  animation: fadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 620ms both;
}

.hero-badges span:nth-child(2) {
  animation-delay: 180ms;
}

.hero-badges span:nth-child(3) {
  animation-delay: 360ms;
}

.hero-badges span:nth-child(4) {
  animation-delay: 540ms;
}

.hero-badges span::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-red);
}

.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.intro-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px 22px;
  border-right: 1px solid var(--color-line);
  color: var(--color-graphite);
  font-weight: 800;
  transition: color 220ms ease, background 220ms ease;
}

.intro-grid a:last-child {
  border-right: 0;
}

.intro-grid a:hover,
.intro-grid a:focus-visible {
  color: var(--color-red);
  background: #fbfaf8;
}

.intro-grid svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-column {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.highlight-grid,
.solution-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.highlight-card,
.solution-card,
.visit-card,
.contact-card,
.why-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(55, 52, 53, 0.1);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.06);
}

[data-spotlight]::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(237, 50, 55, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 260ms ease;
}

[data-spotlight]:hover::before,
[data-spotlight]:focus-within::before {
  opacity: 1;
}

.highlight-card > *,
.solution-card > *,
.visit-card > *,
.contact-card > *,
.why-panel > * {
  position: relative;
  z-index: 1;
}

.highlight-card {
  min-height: 210px;
  padding: 28px;
}

.highlight-card span,
.process-step span,
.visit-card span {
  display: inline-flex;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 900;
}

.highlight-card h3,
.solution-card h3,
.process-step h3 {
  margin: 18px 0 10px;
  color: var(--color-graphite);
  font-size: 1.12rem;
  line-height: 1.25;
}

.highlight-card p,
.solution-card p,
.process-step p,
.visit-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.solutions::before,
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(55, 52, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 52, 53, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 86%, transparent 100%);
}

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

.solution-card {
  min-height: 310px;
  padding: 30px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.solution-card:hover {
  border-color: rgba(237, 50, 55, 0.24);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.12);
  transform: translateY(-8px);
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  color: var(--color-red);
  background: rgba(237, 50, 55, 0.08);
}

.solution-icon svg,
.contact-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--color-graphite);
  font-size: 0.9rem;
  font-weight: 900;
}

.solution-card a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.why {
  background:
    linear-gradient(135deg, rgba(237, 50, 55, 0.16), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(184, 145, 95, 0.2), transparent 28%),
    var(--color-graphite-2);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.why-panel {
  padding: 30px;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.stat-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.12);
}

.stat-row strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 14px;
  height: 2px;
  background: var(--color-red);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 310px;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-graphite);
  box-shadow: var(--shadow-soft);
}

.showcase-large {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.showcase-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.showcase-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(16px);
}

.showcase-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-white);
  font-weight: 900;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(55, 52, 53, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.process-step::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 38px;
  width: 20px;
  height: 2px;
  background: var(--color-red);
}

.process-step:last-child::after {
  display: none;
}

.visit {
  background: var(--color-white);
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: center;
}

.visit address {
  margin-top: 24px;
  color: var(--color-graphite);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.7;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.visit-card {
  min-height: 260px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(237, 50, 55, 0.1), transparent 46%),
    var(--color-soft);
}

.visit-card strong {
  display: block;
  margin-top: 18px;
  color: var(--color-graphite);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.map-section {
  padding: 0 0 104px;
  background: var(--color-white);
}

.map-wrap {
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--color-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.contact {
  background:
    linear-gradient(135deg, rgba(237, 50, 55, 0.14), transparent 38%),
    var(--color-graphite);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: start;
}

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

.contact-card {
  min-height: 142px;
  padding: 24px;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(237, 50, 55, 0.5);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.contact-card svg {
  margin-bottom: 20px;
  color: var(--color-red);
}

.contact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  color: var(--color-white);
  font-size: 1.02rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #151414;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-brand img {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

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

.site-footer p {
  margin: 4px 0 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-red);
}

.copyright {
  grid-column: 1 / 3;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.crafted-by {
  grid-column: 3;
  justify-self: end;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.crafted-by a {
  color: var(--color-white);
  font-weight: 800;
}

.crafted-by a:hover,
.crafted-by a:focus-visible {
  color: var(--color-red);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--color-white);
  background: #1f9d55;
  box-shadow: 0 16px 36px rgba(31, 157, 85, 0.34);
  animation: whatsappPulse 2600ms ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

.reveal,
.reveal-soft,
.reveal-line,
.image-reveal {
  opacity: 0;
}

.no-js .reveal,
.no-js .reveal-soft,
.no-js .reveal-line,
.no-js .image-reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
  animation: none;
}

.reveal {
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-soft {
  transform: translateY(22px);
  animation: fadeUp 850ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 {
  animation-delay: 160ms;
}

.delay-2 {
  animation-delay: 320ms;
}

.delay-3 {
  animation-delay: 480ms;
}

.reveal-line {
  overflow: hidden;
  animation: titleReveal 950ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.image-reveal {
  clip-path: inset(0 0 100% 0);
  transform: translateY(24px);
  transition: opacity 700ms ease, clip-path 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.image-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(34px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes slowPan {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.04) translate3d(-12px, -8px, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 36px rgba(31, 157, 85, 0.34), 0 0 0 0 rgba(31, 157, 85, 0.26);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 18px 42px rgba(31, 157, 85, 0.38), 0 0 0 14px rgba(31, 157, 85, 0);
  }
}

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

  .reveal,
  .reveal-soft,
  .reveal-line,
  .image-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 0;
  }

  .solution-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .hero-title {
    font-size: 4.35rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    inset: 10px 12px auto;
    min-height: 64px;
    padding: 8px;
  }

  .brand-link img {
    width: 148px;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 84px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(55, 52, 53, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 17px 14px;
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 74px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248, 247, 245, 0.96) 0%, rgba(248, 247, 245, 0.82) 50%, rgba(17, 17, 17, 0.34) 100%),
      linear-gradient(90deg, rgba(248, 247, 245, 0.76), rgba(248, 247, 245, 0.28));
  }

  .hero-content,
  .two-column,
  .why-layout,
  .visit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    justify-self: start;
    width: 100%;
    margin: 12px 0 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-badges span {
    min-height: 52px;
  }

  .intro-strip {
    margin-top: 0;
    padding: 14px 0 0;
    background: var(--color-soft);
  }

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

  .intro-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .intro-grid a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 2.8rem;
  }

  .hero-title {
    font-size: 3.65rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .showcase-large {
    grid-row: auto;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

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

  .crafted-by {
    grid-column: auto;
    justify-self: start;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 96px 0 34px;
  }

  .hero-logo {
    width: 260px;
    max-width: 92%;
    margin-bottom: 18px;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 2.68rem;
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 20px;
  }

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

  .hero-badges {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .hero-badges,
  .highlight-grid,
  .solution-grid,
  .process-line,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 2.35rem;
  }

  .highlight-card,
  .solution-card,
  .visit-card,
  .why-panel,
  .process-step,
  .contact-card {
    padding: 24px;
  }

  .solution-card {
    min-height: auto;
  }

  .showcase-grid {
    grid-auto-rows: 280px;
  }

  .showcase-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px;
  }

  .map-section {
    padding-bottom: 82px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
    height: 360px;
  }

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

@media (max-width: 390px) {
  .brand-link img {
    width: 128px;
  }

  .hero-title {
    font-size: 2.32rem;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 2.08rem;
  }

  .intro-grid a {
    padding-inline: 16px;
  }
}
