:root {
  --orange: #f5aa53;
  --orange-light: #ffd39a;
  --cream: #fffaf2;
  --white: #ffffff;
  --black: #0d0d0d;
  --muted: #665e54;
  --line: rgba(13, 13, 13, 0.18);
  --shadow: 0 24px 70px rgba(53, 31, 8, 0.16);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  background: rgba(255, 250, 242, .96);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}
.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  width: 170px;
  height: 66px;
  overflow: hidden;
  border-radius: 7px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu a {
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}
.menu a:not(.menu__button) { border-bottom: 2px solid transparent; }
.menu a:not(.menu__button):hover,
.menu a:not(.menu__button):focus-visible { border-bottom-color: var(--black); }
.menu__button {
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(255,255,255,.36), transparent 28%),
    linear-gradient(135deg, var(--orange), #f8bd77);
}
.hero__corner {
  position: absolute;
  width: 130px;
  height: 130px;
  pointer-events: none;
}
.hero__corner--top {
  top: 122px;
  left: 4vw;
  border-top: 5px solid var(--black);
  border-left: 5px solid var(--black);
}
.hero__corner--bottom {
  right: 4vw;
  bottom: 90px;
  border-right: 5px solid var(--black);
  border-bottom: 5px solid var(--black);
}
.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 70px;
}
.overline {
  margin: 0 0 14px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.hero h1 { font-size: clamp(4rem, 8vw, 7.4rem); }
.hero h1 span {
  display: block;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .24em;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero__lead {
  max-width: 610px;
  margin: 26px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { color: var(--white); background: var(--black); }
.button--outline { border-color: var(--black); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--black); }
.hero__logo-card {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(13, 13, 13, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__logo-card img {
  width: 100%;
  aspect-ratio: 727 / 385;
  object-fit: cover;
  border-radius: 16px;
}
.facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(13, 13, 13, .28);
}
.fact {
  padding: 20px 24px;
  border-right: 1px solid rgba(13, 13, 13, .28);
}
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact span {
  display: block;
  color: rgba(13, 13, 13, .67);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.fact strong,
.fact a {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
}

.section { padding: 105px 0; }
.section h2 { font-size: clamp(2.7rem, 5.3vw, 5rem); }
.presentation { background: var(--cream); }
.presentation__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
}
.presentation__text {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.presentation__text p {
  margin: 0 0 20px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.arrow-link span { transition: transform .2s ease; }
.arrow-link:hover span { transform: translateX(5px); }

.services { background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 14px 45px rgba(50, 30, 9, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card--accent { background: var(--orange-light); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  opacity: .26;
}
.service-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
}
.service-card p { color: var(--muted); }

.zones {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}
.zones::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 139px, rgba(13,13,13,.06) 140px, transparent 141px);
  pointer-events: none;
}
.zones__grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.zones__intro p:last-child { max-width: 470px; font-size: 1.08rem; }
.zones__list { border-top: 1px solid rgba(13, 13, 13, .3); }
.zone-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(13, 13, 13, .3);
}
.zone-item span { font-size: .76rem; font-weight: 800; letter-spacing: .13em; }
.zone-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.7vw, 4.3rem);
  font-weight: 400;
}

.contact { background: var(--cream); }
.contact__panel {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 56px;
  padding: clamp(34px, 6vw, 72px);
  background: var(--orange);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.contact__panel p { font-size: 1.08rem; }
.contact__details { display: flex; flex-direction: column; align-items: flex-start; }
.contact__phone {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.footer {
  padding: 68px 0 24px;
  color: var(--white);
  background: var(--black);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .75fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer__brand img {
  width: 210px;
  height: 111px;
  object-fit: cover;
  border-radius: 9px;
}
.footer__brand p { max-width: 360px; color: rgba(255,255,255,.68); }
.footer h2 {
  margin: 0 0 12px;
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer p,
.footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer__grid > div:last-child a { display: block; margin: 4px 0; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .86rem;
}
.footer__bottom p { margin: 0; }

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 990;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 50%;
  box-shadow: 0 13px 34px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 980px) {
  .menu-button { display: block; position: relative; z-index: 3; }
  .menu {
    position: fixed;
    inset: 0;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 30px 40px;
    background: var(--cream);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }
  .menu.is-open { transform: translateX(0); visibility: visible; }
  .menu a { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
  .menu .menu__button { font-family: Arial, Helvetica, sans-serif; font-size: 1rem; font-weight: 800; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__logo-card { max-width: 650px; }
  .presentation__grid,
  .zones__grid,
  .contact__panel { grid-template-columns: 1fr; gap: 38px; }
  .presentation__text { padding-left: 0; border-left: 0; }
  .footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .header__inner { min-height: 74px; }
  .brand { width: 136px; height: 58px; }
  .hero { min-height: auto; padding: 108px 0 32px; }
  .hero__corner { width: 62px; height: 62px; }
  .hero__corner--top { top: 96px; left: 10px; border-width: 3px; }
  .hero__corner--bottom { right: 10px; bottom: 165px; border-width: 3px; }
  .hero__grid { min-height: auto; gap: 32px; }
  .hero h1 { font-size: clamp(3.4rem, 18vw, 5.2rem); }
  .hero h1 span { font-size: .22em; letter-spacing: .22em; }
  .hero__actions,
  .contact__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__logo-card { padding: 16px; border-radius: 20px; }
  .facts { grid-template-columns: 1fr; margin-top: 36px; }
  .fact { padding: 14px 0; border-right: 0; border-bottom: 1px solid rgba(13,13,13,.28); }
  .fact:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 24px; }
  .zone-item { grid-template-columns: 42px 1fr; }
  .contact__panel { padding: 30px 20px; border-radius: 23px; }
  .contact__phone { font-size: clamp(2rem, 10vw, 3.1rem); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp { right: 13px; bottom: 13px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
