:root {
  --forest: #064b25;
  --leaf: #13833d;
  --moss: #b8d60c;
  --gold: #ffd21a;
  --lavender: #6d4a86;
  --coral: #e71919;
  --ink: #193026;
  --muted: #66746b;
  --paper: #fffdf5;
  --milk: #f6f1e5;
  --line: rgba(6, 75, 37, 0.16);
  --shadow: 0 24px 80px rgba(9, 57, 33, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fbf7ee;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

svg {
  display: block;
}

.top-location {
  position: fixed;
  z-index: 51;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 6vw, 88px);
  color: var(--forest);
  background: rgba(246, 241, 229, 0.94);
  border-bottom: 1px solid rgba(6, 75, 37, 0.08);
  backdrop-filter: blur(14px);
}

.top-location span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-location span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(6, 75, 37, 0.08);
}

.site-header {
  position: fixed;
  z-index: 52;
  top: 58px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(6, 75, 37, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.94);
  box-shadow: 0 18px 54px rgba(8, 48, 28, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, top 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  background: rgba(255, 253, 245, 0.95);
  box-shadow: 0 18px 55px rgba(8, 48, 28, 0.18);
}

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

.logo-brand {
  min-width: 0;
  width: 226px;
  height: 58px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(6, 75, 37, 0.08);
}

.logo-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 16px 36px rgba(6, 75, 37, 0.25);
}

.button.secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding: 176px clamp(20px, 6vw, 92px) 54px;
  overflow: hidden;
  color: var(--forest);
  background: #f7f1e8;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.94) 0%, rgba(255, 253, 245, 0.72) 42%, rgba(255, 253, 245, 0.18) 72%),
    linear-gradient(0deg, rgba(255, 253, 245, 0.74) 0%, rgba(255, 253, 245, 0.04) 44%),
    linear-gradient(90deg, rgba(6, 75, 37, 0.16) 0%, rgba(6, 75, 37, 0) 34%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
}

.hero-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--leaf);
}

.hero-mark svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: normal;
}

h1 {
  max-width: 600px;
  font-size: clamp(2.45rem, 4.2vw, 3.85rem);
  letter-spacing: 0;
}

h2 {
  color: var(--forest);
  font-size: clamp(1.8rem, 3.35vw, 3.25rem);
}

h3 {
  color: var(--forest);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-top: 26px;
  color: #4f5f56;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

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

.hero-brand-card {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 240, 0.9));
  box-shadow: 0 28px 82px rgba(8, 48, 28, 0.2);
}

.hero-brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 210, 26, 0.18), transparent 24%),
    radial-gradient(circle at 64% 35%, rgba(231, 25, 25, 0.12), transparent 16%);
  pointer-events: none;
}

.hero-brand-card img {
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
}

.brand-signals {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.brand-signals span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(6, 75, 37, 0.16);
  border-radius: var(--radius);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 245, 0.88);
}

.hero-benefits div {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #51685b;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-benefits span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 75, 37, 0.22);
  border-radius: 999px;
  color: var(--leaf);
}

.hero-benefits span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 5vw, 74px);
}

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 210, 26, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--milk));
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(58vw, 780px);
  height: 58%;
  background: url("assets/fachada-header-vegeton.png") center top / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.74fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  margin-top: 18px;
}

.about-copy p,
.feature-copy p,
.gallery-copy p,
.team-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-copy p {
  max-width: 780px;
  margin-top: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-self: end;
}

.stats div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.72);
  box-shadow: 0 18px 50px rgba(9, 57, 33, 0.08);
}

.stats strong {
  color: var(--forest);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 820px;
}

.services {
  background: var(--paper);
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card,
.quote {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.product-card:hover,
.quote:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 75, 37, 0.32);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--forest);
  background: #eef5df;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.product-card p,
.timeline-item p,
.quote p {
  color: var(--muted);
  line-height: 1.65;
}

.feature,
.team,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 74px);
  background: var(--milk);
}

.feature {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  background: var(--paper);
}

.local-seo {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  padding: clamp(76px, 10vw, 126px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(135deg, rgba(145, 181, 47, 0.14), transparent 34%),
    var(--paper);
}

.local-copy h2 {
  margin-top: 18px;
}

.local-copy p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(9, 57, 33, 0.08);
}

.neighborhoods span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(6, 75, 37, 0.18);
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-image,
.team-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image {
  width: min(460px, 100%);
  justify-self: start;
  background: #fff;
}

.feature-image img,
.team-photo img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-image img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
}

.feature-image:hover img,
.team-photo:hover img,
.product-card:hover img,
.gallery-grid img:hover {
  transform: scale(1.04);
}

.feature-copy h2,
.team-copy h2,
.contact-card h2 {
  margin-top: 18px;
}

.feature-copy p,
.team-copy p,
.contact-card p {
  margin-top: 22px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 900;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(231, 25, 25, 0.12);
}

.products {
  background: var(--forest);
}

.products h2 {
  color: #fff;
}

.products .section-label {
  color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card img {
  aspect-ratio: 1 / 1.12;
  height: auto;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-card div {
  padding: 22px;
}

.product-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--lavender);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card p {
  margin-top: 10px;
}

.process {
  padding: clamp(76px, 10vw, 126px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(109, 74, 134, 0.1), transparent 35%),
    var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-item {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.timeline-item span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.timeline-item p {
  margin-top: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(76px, 10vw, 126px) clamp(20px, 5vw, 74px);
  background: #fff;
}

.gallery-copy {
  position: sticky;
  top: 126px;
}

.gallery-copy h2 {
  margin-top: 18px;
}

.gallery-copy p {
  margin-top: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-grid img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 700ms ease;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
  min-height: 360px;
}

.team {
  background: linear-gradient(180deg, var(--milk), #fff);
}

.team-photo img {
  aspect-ratio: 5 / 4;
}

.team blockquote {
  margin: 34px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 500;
  line-height: 1.2;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote {
  min-height: 230px;
  background: var(--milk);
}

.quote strong {
  color: var(--forest);
  font-size: 1rem;
}

.contact {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  background: var(--forest);
  color: #fff;
}

.contact h2,
.contact .section-label {
  color: #fff;
}

.contact .section-label::before {
  background: var(--gold);
}

.contact-card {
  max-width: 820px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.75);
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.contact .button.primary {
  color: var(--forest);
  background: #fff;
  box-shadow: none;
}

.contact .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-info {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-info strong {
  color: var(--gold);
}

.contact-info span {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 74px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 8%, rgba(210, 168, 47, 0.16), transparent 28%),
    linear-gradient(135deg, #032a17 0%, #064b25 58%, #022313 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.62fr));
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 42px;
}

.footer-logo-full {
  width: min(270px, 100%);
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.footer-logo-full img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.footer-brand p {
  max-width: 440px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  font-style: normal;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-bottom span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-column a,
.footer-bottom a {
  width: fit-content;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-contact a:first-of-type {
  color: var(--gold);
  font-size: 1.08rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #128c54, #1fbf74);
  box-shadow: 0 18px 52px rgba(6, 75, 37, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(6, 75, 37, 0.38);
}

.whatsapp-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.whatsapp-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.whatsapp-copy strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 13px;
    border: 1px solid var(--forest);
    border-radius: var(--radius);
    background: var(--forest);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 245, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-brand-card {
    width: min(520px, 100%);
  }

  .about-grid,
  .feature,
  .team,
  .contact,
  .gallery,
  .local-seo {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .top-location {
    min-height: 38px;
    padding: 0 20px;
  }

  .top-location span {
    font-size: 0.68rem;
  }

  .site-header {
    top: 48px;
    width: calc(100% - 20px);
    min-height: 70px;
    padding: 8px 8px 8px 12px;
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .brand {
    min-width: 0;
  }

  .logo-brand {
    width: 170px;
    height: 50px;
  }

  .hero {
    padding: 144px 20px 38px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  h3 {
    font-size: 0.96rem;
  }

  .hero-copy,
  .about-copy p,
  .feature-copy p,
  .gallery-copy p,
  .team-copy p,
  .contact-card p {
    font-size: 1rem;
  }

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

  .hero-benefits {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .hero-benefits div {
    min-height: 54px;
    justify-content: flex-start;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .brand-signals {
    position: static;
    padding: 10px;
    background: #fff;
  }

  .section,
  .feature,
  .team,
  .process,
  .gallery,
  .local-seo,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .stats,
  .service-grid,
  .product-grid,
  .timeline,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats div,
  .service-card,
  .quote,
  .timeline-item {
    min-height: auto;
  }

  .timeline-item span {
    margin-bottom: 32px;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid img {
    min-height: 260px;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 620px) {
  .footer-main,
  .footer-bottom {
    display: grid;
  }

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

  .footer-bottom div {
    display: grid;
    gap: 10px;
  }

  .floating-whatsapp {
    min-height: 58px;
    padding: 7px;
  }

  .whatsapp-icon {
    width: 44px;
    height: 44px;
  }

  .whatsapp-copy {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
