:root {
  --brand: #761d04;
  --brand-deep: #4f1305;
  --brand-bright: #a94a29;
  --brand-soft: #ead7d0;
  --ink: #111111;
  --muted: #6d625e;
  --paper: #f7f3f0;
  --paper-2: #efe7e3;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(52, 18, 8, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(247, 243, 240, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(17,17,17,.08);
}
.nav-shell {
  min-height: 68px;
  padding: 7px 9px 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(53,19,8,.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 255px;
  height: 56px;
}
.brand-symbol {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  object-fit: contain;
}
.brand-name { display: grid; line-height: 1; }
.brand-name small {
  margin-bottom: 5px;
  color: var(--brand);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.brand-name strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -.035em;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: .9rem;
  font-weight: 650;
  color: #332d2a;
  transition: color .2s ease, transform .2s ease;
}
.main-nav a:hover { color: var(--brand); transform: translateY(-1px); }
.main-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
  padding: 14px 21px;
  border-radius: 12px;
}
.main-nav .nav-cta:hover { color: var(--white); background: var(--brand); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  padding: 165px 0 36px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(118,29,4,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,29,4,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 780px;
  height: 780px;
  right: -310px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,74,41,.22), rgba(118,29,4,.06) 45%, transparent 72%);
  filter: blur(4px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, .92fr);
  gap: 70px;
  align-items: center;
  min-height: 625px;
}
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.hero h1,
.section h2,
.contact h2,
.statement blockquote {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.05em;
  line-height: 1.03;
  margin: 0;
}
.hero h1 {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(3.55rem, 6vw, 6.4rem);
  font-weight: 800;
}
.hero h1 em { color: var(--brand); font-style: normal; }
.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .93rem;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(118,29,4,.24);
}
.button-primary:hover { background: var(--brand-deep); box-shadow: 0 16px 34px rgba(118,29,4,.3); }
.button-ghost { color: var(--ink); border-color: rgba(17,17,17,.16); background: rgba(255,255,255,.5); }
.button-ghost:hover { border-color: var(--ink); background: var(--white); }

.hero-meta {
  margin-top: 43px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.hero-meta div { display: grid; gap: 4px; padding-right: 24px; }
.hero-meta div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.hero-meta span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 700; }
.hero-meta strong { font-size: .96rem; }

.hero-stage { position: relative; min-height: 560px; }
.stage-card {
  position: absolute;
  inset: 14px 14px 26px 26px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #8d270b 0%, #691800 54%, #3d0e02 100%);
  border-radius: 48px;
  box-shadow: 0 40px 100px rgba(74,19,3,.27);
  transform: rotate(1.7deg);
}
.stage-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -95px;
  top: 110px;
  border: 65px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.stage-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: 45px;
  bottom: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.stage-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
  background-size: 52px 52px;
}
.stage-topline,
.stage-foot {
  position: absolute;
  z-index: 3;
  left: 42px;
  right: 42px;
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.stage-topline { top: 38px; }
.stage-foot { bottom: 32px; opacity: .72; }
.stage-symbol {
  position: absolute;
  z-index: 1;
  width: 72%;
  right: -9%;
  top: 7%;
  opacity: .88;
  filter: brightness(0) invert(1);
  transform: rotate(-2deg);
}
.stage-copy {
  position: absolute;
  z-index: 4;
  left: 45px;
  bottom: 82px;
  display: grid;
  gap: 9px;
}
.stage-kicker { color: #f1c9bb; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }
.stage-copy strong { font-family: "Manrope", sans-serif; font-size: clamp(3.2rem, 5vw, 5.3rem); line-height: .86; letter-spacing: -.07em; }
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 17px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: .88rem; }
.floating-card small { color: var(--muted); margin-top: 2px; }
.floating-a { top: 72px; left: -28px; }
.floating-b { right: -18px; bottom: 78px; }
.floating-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 12px;
}
.floating-icon svg { width: 21px; height: 21px; }
.floating-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 8px var(--brand-soft); margin: 0 8px; }

.category-rail {
  position: relative;
  margin-top: 22px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #3e3532;
  background: var(--white);
  border: 1px solid rgba(17,17,17,.09);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(52,18,8,.06);
  font-size: .82rem;
  font-weight: 700;
}
.category-rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand); }

.section { padding: 130px 0; }
.intro-grid { display: grid; grid-template-columns: 170px 1.08fr .92fr; gap: 60px; align-items: start; }
.section h2 { font-size: clamp(2.65rem, 4.4vw, 4.7rem); font-weight: 750; }
.intro-copy { padding-top: 6px; color: var(--muted); font-size: 1.04rem; }
.intro-copy p { margin: 0 0 20px; }
.arrow-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 12px; color: var(--ink); font-weight: 750; }
.arrow-link span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease, background .2s ease; }
.arrow-link:hover span { transform: translate(3px,-3px); background: var(--white); }

.products { background: var(--white); }
.section-head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-head h2 { max-width: 760px; margin-top: 18px; }
.section-head > p { margin: 0 0 8px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.product-card {
  position: relative;
  min-height: 365px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 27px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 58px rgba(52,18,8,.1); border-color: rgba(118,29,4,.25); }
.product-card-featured { color: var(--white); background: var(--brand); }
.product-card-featured::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -120px;
  border: 55px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.product-number { position: relative; z-index: 2; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .14em; }
.product-card-featured .product-number { color: #f1c6b7; }
.product-icon {
  position: absolute;
  right: 32px;
  top: 30px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(52,18,8,.08);
}
.product-icon svg { width: 48px; height: 48px; stroke-width: 1.25; }
.product-card-featured .product-icon { color: var(--white); background: rgba(255,255,255,.13); box-shadow: none; }
.product-content { position: relative; z-index: 2; max-width: 470px; }
.product-content > span { color: var(--brand); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-card-featured .product-content > span { color: #f1c6b7; }
.product-content h3 { margin: 10px 0 13px; font-family: "Manrope", sans-serif; font-size: clamp(1.75rem, 3vw, 2.45rem); letter-spacing: -.04em; line-height: 1.08; }
.product-content p { max-width: 450px; margin: 0; color: var(--muted); }
.product-card-featured .product-content p { color: rgba(255,255,255,.76); }

.statement { position: relative; overflow: hidden; color: var(--white); background: #17110f; }
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(118,29,4,.58), transparent 45%), linear-gradient(120deg, transparent 45%, rgba(255,255,255,.035) 45%, rgba(255,255,255,.035) 45.5%, transparent 45.5%);
}
.statement-grid { position: relative; min-height: 580px; display: grid; grid-template-columns: .5fr 1.5fr .55fr; gap: 60px; align-items: center; }
.statement-symbol img { width: 290px; filter: brightness(0) invert(1); opacity: .11; transform: scale(1.35); }
.section-tag-light { color: #e8b9a7; }
.statement blockquote { max-width: 760px; margin-top: 26px; font-size: clamp(2.65rem, 5vw, 5.2rem); font-weight: 700; }
.statement-note { align-self: end; margin-bottom: 76px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); }
.statement-note span { color: #e8b9a7; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.statement-note p { margin: 12px 0 0; color: rgba(255,255,255,.7); }

.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 105px; }
.process-heading { position: sticky; top: 125px; align-self: start; }
.process-heading h2 { margin-top: 19px; }
.process-heading p { max-width: 510px; color: var(--muted); margin-top: 24px; }
.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 85px 1fr; gap: 26px; padding: 39px 0; border-bottom: 1px solid var(--line); }
.process-item > span { color: var(--brand); font-weight: 800; font-size: .76rem; letter-spacing: .14em; }
.process-item h3 { margin: 0 0 8px; font-family: "Manrope",sans-serif; font-size: 1.45rem; letter-spacing: -.03em; }
.process-item p { margin: 0; color: var(--muted); }

.contact { padding: 0 0 34px; }
.contact-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  padding: 75px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, #571300 100%);
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(74,19,3,.24);
}
.contact-shell::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -280px;
  border: 80px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.contact-main, .contact-data { position: relative; z-index: 2; }
.contact h2 { max-width: 650px; margin-top: 24px; font-size: clamp(3rem, 5vw, 5rem); }
.contact-main > p { max-width: 590px; color: rgba(255,255,255,.74); margin: 24px 0 0; font-size: 1.05rem; }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button-white { color: var(--brand); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.button-outline-light:hover { background: rgba(255,255,255,.08); }
.contact-data { display: grid; align-content: start; }
.contact-data > div { display: grid; gap: 6px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-data span { color: #e8b9a7; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-data strong, .contact-data > div > a { font-size: 1.2rem; }
.contact-data small { color: rgba(255,255,255,.67); }
.contact-data p { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; }
.contact-data p a { color: rgba(255,255,255,.86); font-weight: 650; }
.map-button { min-height: 58px; margin-top: 22px; padding: 0 3px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.34); font-weight: 750; }
.map-button svg { width: 21px; height: 21px; }


.map-panel {
  margin-top: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(17,17,17,.09);
  border-radius: 32px;
  box-shadow: 0 24px 65px rgba(52,18,8,.09);
}
.map-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 8px 7px 25px;
}
.map-panel-head h2 {
  margin: 14px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.map-panel-head p {
  margin: 13px 0 0;
  color: var(--muted);
}
.map-external-link {
  flex: 0 0 auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  font-size: .86rem;
  font-weight: 750;
  transition: transform .2s ease, background-color .2s ease;
}
.map-external-link:hover {
  transform: translateY(-2px);
  background: var(--brand);
}
.map-external-link svg {
  width: 19px;
  height: 19px;
}
.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border-radius: 22px;
  background: #eee8e4;
}
.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: inherit;
}
.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 450px;
}

.site-footer { padding: 42px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr auto; gap: 30px; align-items: center; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo img { width: 54px; height: 54px; object-fit: contain; }
.footer-logo span { display: grid; line-height: 1; }
.footer-logo small { margin-bottom: 5px; color: var(--brand); font-size: .58rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-logo strong { font-family: "Manrope", sans-serif; font-size: 1.03rem; letter-spacing: -.03em; }
.footer-meta { display: grid; gap: 7px; text-align: center; }
.footer-meta p { margin: 0; color: var(--muted); font-size: .84rem; }
.footer-credit { font-size: .78rem !important; }
.footer-credit a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
}
.footer-credit a:hover,
.footer-credit a:focus-visible { text-decoration: underline; }
.footer-up { font-size: .84rem; font-weight: 750; }
.mobile-whatsapp { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero h1 { font-size: clamp(3.3rem, 6.2vw, 5rem); }
  .hero-stage { min-height: 510px; }
  .floating-a { left: -6px; }
  .floating-b { right: -5px; }
  .intro-grid { grid-template-columns: 130px 1fr; }
  .intro-copy { grid-column: 2; }
  .statement-grid { grid-template-columns: .25fr 1.55fr .6fr; gap: 32px; }
  .process-grid { gap: 60px; }
  .contact-shell { gap: 50px; padding: 60px; }
}

@media (max-width: 820px) {
  .site-header { padding: 10px 0; }
  .nav-shell { min-height: 64px; padding: 6px 8px 6px 14px; }
  .brand { min-width: 220px; height: 50px; }
  .brand-symbol { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-name strong { font-size: .98rem; }
  .menu-toggle {
    width: 48px; height: 48px; display: grid; place-content: center; gap: 5px;
    background: var(--ink); border: 0; border-radius: 12px; cursor: pointer;
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 14px; }
  .main-nav .nav-cta { text-align: center; }

  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 54px; }
  .hero-stage { min-height: 570px; }
  .category-rail { justify-content: flex-start; overflow-x: auto; padding: 0 24px; white-space: nowrap; scrollbar-width: none; }
  .category-rail::-webkit-scrollbar { display: none; }
  .section { padding: 95px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-copy { grid-column: auto; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .statement-grid { min-height: 680px; grid-template-columns: 1fr; align-content: center; }
  .statement-symbol { position: absolute; right: -40px; top: 50px; }
  .statement-symbol img { width: 260px; }
  .statement-note { margin: 0; max-width: 440px; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .process-heading { position: static; }
  .contact-shell { grid-template-columns: 1fr; padding: 55px 35px; border-radius: 30px; }
  .map-panel-head { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-meta { order: 3; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { border-radius: 15px; }
  .brand { min-width: 188px; height: 47px; gap: 8px; }
  .brand-symbol { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-name small { font-size: .49rem; }
  .brand-name strong { font-size: .86rem; }
  .hero { padding-top: 113px; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 4.25rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; gap: 17px; }
  .hero-meta div + div { padding: 17px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-stage { min-height: 465px; margin-top: 5px; }
  .stage-card { inset: 0 4px 20px 4px; border-radius: 32px; }
  .stage-topline, .stage-foot { left: 26px; right: 26px; }
  .stage-topline { top: 26px; }
  .stage-foot { bottom: 24px; }
  .stage-copy { left: 27px; bottom: 69px; }
  .stage-copy strong { font-size: 3.4rem; }
  .stage-symbol { width: 88%; right: -18%; top: 9%; }
  .floating-card { min-width: 215px; padding: 13px 14px; }
  .floating-a { top: 66px; left: -7px; }
  .floating-b { bottom: 55px; right: -7px; }
  .floating-card strong { font-size: .78rem; }
  .floating-card small { font-size: .68rem; }
  .category-rail { margin-top: 12px; min-height: 65px; }
  .section { padding: 80px 0; }
  .section h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .product-card { min-height: 340px; padding: 26px; }
  .product-icon { width: 70px; height: 70px; right: 24px; top: 24px; border-radius: 19px; }
  .product-icon svg { width: 40px; height: 40px; }
  .statement-grid { min-height: 620px; }
  .statement blockquote { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .process-item { grid-template-columns: 52px 1fr; gap: 16px; padding: 30px 0; }
  .contact { padding-bottom: 22px; }
  .contact-shell { width: calc(100% - 20px); padding: 48px 24px; border-radius: 27px; }
  .contact-buttons { display: grid; }
  .map-panel { width: calc(100% - 20px); padding: 15px; border-radius: 25px; }
  .map-panel-head { padding: 13px 9px 22px; gap: 21px; }
  .map-panel-head h2 { font-size: 2.35rem; }
  .map-external-link { width: 100%; justify-content: space-between; }
  .map-frame, .map-frame iframe { min-height: 370px; height: 370px; }
  .map-frame { border-radius: 17px; }
  .footer-logo { justify-self: center; }
  .mobile-whatsapp {
    position: fixed;
    z-index: 90;
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: #1f8f53;
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(14,76,42,.28);
    font-size: .84rem;
    font-weight: 800;
  }
  .mobile-whatsapp svg { width: 20px; height: 20px; stroke-width: 1.8; }
}
