:root{
  --bg: #121110;
  --bg-soft: #17140f;
  --cream: #f3ede0;
  --cream-dim: #d9d2c2;
  --tan: #c9ab7c;
  --tan-fill: #C8B89A;
  --tan-deep: #a98a5c;
  --footer-bg: #cbb491;
  --muted: #9a948a;
  --line: rgba(243,237,224,0.12);
  --wa-green: #25D366;
  --maxw: 1200px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--cream);
  font-family:'Inter',sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,.brand{
  font-family:'Archivo',sans-serif;
  letter-spacing:-0.01em;
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
button, input, textarea{ font-family:inherit; }
button{ cursor:pointer; }

.wrap{
  max-width:100%;
  margin:0 auto;
  padding:0 60px;
}

.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--tan);
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 28px;
  font-size:14.5px;
  font-weight:600;
  border-radius:2px;
  border:1px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--cream);
  color:#171410;
}
.btn-primary:hover{ background:#fff; transform:translateY(-1px); }
.btn-outline{
  background:var(--tan-fill);
  color:#171410;
  border-color:var(--tan-fill);
}
.btn-outline:hover{
  background:transparent;
  color:var(--cream);
  border-color:var(--tan-fill);
}
.btn-dark{
  background:#171410;
  color:var(--cream);
}
.btn-dark:hover{ background:#000; }
.btn-block{ width:100%; }

/* ---------- NAV ---------- */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(18,17,16,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
  max-width:100%;
  padding:0 48px;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand-logo{ height:32px; width:auto; display:block; }
.brand .name{
  font-size:28px;
  font-weight:900;
  letter-spacing:-0.01em;
  font-style:italic;
  transform:skewX(-4deg);
  display:inline-block;
}
.brand .sub{
  font-size:9px;
  font-weight:700;
  letter-spacing:0.3em;
  color:var(--cream-dim);
  margin-top:2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-right{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:var(--cream-dim);
  transition:color .2s ease;
  position:relative;
  padding-bottom:4px;
}
.nav-links a:hover{ color:var(--cream); }
.nav-links a.active{ color:var(--cream); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:2px;
  background:var(--tan);
}

.nav-cta{ display:block; }
.hamburger{
  display:none;
  background:none;
  border:none;
  padding:8px;
}
.hamburger span{
  display:block;
  width:24px;
  height:2px;
  background:var(--cream);
  margin:5px 0;
  transition:transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display:none;
  flex-direction:column;
  background:var(--bg-soft);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  max-height:0;
  transition:max-height .3s ease;
}
.mobile-nav.open{ max-height:380px; }
.mobile-nav a{
  padding:16px 22px;
  font-size:15px;
  font-weight:500;
  color:var(--cream-dim);
  border-top:1px solid var(--line);
}
.mobile-nav a.active{ color:var(--tan); }
.mobile-nav a.btn{ margin:16px 22px 22px 22px; color:#171410; }

/* ---------- HERO (home) ---------- */
.hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
    rgba(18,17,16,1) 0%,
    rgba(18,17,16,0.96) 30%,
    rgba(18,17,16,0.55) 52%,
    rgba(18,17,16,0.05) 68%,
    rgba(18,17,16,0) 100%);
}
.hero-copy{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px 40px;
  max-width:640px;
}
.hero-copy h1{
  font-size:52px;
  font-weight:900;
  line-height:1.06;
  margin-bottom:20px;
}
.hero-copy p{
  font-size:16.5px;
  color:var(--cream-dim);
  max-width:440px;
  margin-bottom:34px;
}
.hero-copy p strong{ color:var(--cream); font-weight:600; }
.hero-actions{ display:flex; gap:14px; }

/* ---------- ORIGIN HERO (origen.html) ---------- */
.origin-hero{
  padding:80px 0 90px 0;
  border-bottom:1px solid var(--line);
}
.origin-hero-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  grid-template-areas:
    "title map"
    "list  map";
  gap:36px 60px;
  align-items:center;
  max-width:1500px;
}
.origin-hero-title{ grid-area:title; }
.origin-hero-list{ grid-area:list; }
.origin-hero-map{ grid-area:map; }
.origin-hero-title h1{
  font-size:48px;
  font-weight:900;
  line-height:1.08;
}
.origin-hero-eyebrow{
  display:block;
  margin-bottom:4px;
}
.region-list{
  list-style:none;
  margin-top:18px;
}
.region-list li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.region-list li:first-child{ border-top:1px solid var(--line); }
.region-list li div{ display:flex; flex-direction:column; gap:4px; }
.region-list li strong{
  font-size:17px;
  font-weight:700;
  color:var(--cream);
}
.region-list li span:not(.region-dot){
  font-size:13.5px;
  color:var(--muted);
}
.region-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--tan);
  flex-shrink:0;
}
.origin-hero-map{
  display:flex;
  justify-content:center;
  align-items:center;
}
.origin-hero-map img{
  width:100%;
  max-width:640px;
  height:auto;
  display:block;
}

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:flex-end;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.page-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.page-hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(18,17,16,0.35) 0%, rgba(18,17,16,0.55) 45%, rgba(18,17,16,0.95) 100%);
}
.page-hero-inner{
  position:relative;
  z-index:2;
  padding:70px 0 44px 0;
  width:100%;
}
.breadcrumb{
  font-size:12.5px;
  color:var(--muted);
  margin-bottom:16px;
}
.breadcrumb a{ color:var(--tan); }
.page-hero h1{
  font-size:42px;
  font-weight:900;
  line-height:1.08;
  max-width:680px;
  margin-bottom:14px;
}
.page-hero p{
  font-size:15.5px;
  color:var(--cream-dim);
  max-width:520px;
}

/* ---------- SERVICES ---------- */
.services{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--bg);
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.service-item{
  padding:56px 36px 48px 32px;
  border-left:1px solid var(--line);
}
.service-item:first-child{ border-left:none; padding-left:0; }
.service-num{
  font-size:12px;
  font-weight:700;
  color:var(--tan);
  letter-spacing:0.08em;
  margin-bottom:26px;
  display:block;
}
.service-item h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}
.service-item p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.55;
  margin-bottom:32px;
  max-width:230px;
}
.service-arrow{
  display:inline-block;
  font-size:16px;
  color:var(--tan);
  transition:transform .2s ease;
}
.service-item:hover .service-arrow{ transform:translateX(4px); }

/* ---------- SERVICE DETAIL (servicios.html) ---------- */
.service-detail{
  padding:90px 0;
  border-bottom:1px solid var(--line);
}
.service-detail-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:100px;
  align-items:center;
  max-width:1400px;
}
.service-detail-grid.reverse .service-detail-media{ order:2; }
.service-detail-media{
  overflow:hidden;
  border-radius:2px;
  height:400px;
  background:var(--bg);
}
#tostion .service-detail-media{ height:480px; }
.service-detail-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}
.service-detail-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.service-detail h2{
  font-size:30px;
  font-weight:800;
  margin-bottom:10px;
  line-height:1.15;
}
.service-detail-eyebrow{
  display:block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--tan);
  margin-bottom:22px;
}
.service-detail .btn{ margin-bottom:26px; }
.service-detail p{
  font-size:15px;
  color:var(--cream-dim);
  margin-bottom:22px;
  max-width:440px;
}
.service-detail ul{
  list-style:none;
}
.service-detail li{
  font-size:14px;
  color:var(--muted);
  padding-left:18px;
  position:relative;
  margin-bottom:10px;
}
.service-detail li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--tan);
}

/* ---------- SERVICE PAIR (Marca Blanca / Café ZUNA, side by side) ---------- */
.service-pair-section{
  padding:80px 0 90px 0;
}
.service-pair-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  max-width:1400px;
}
.service-pair-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  border-radius:2px;
  margin-bottom:26px;
  background:var(--bg);
}
.service-pair-card h3{
  font-size:24px;
  font-weight:800;
  margin-bottom:10px;
  line-height:1.15;
}
.service-pair-card .btn{ margin-bottom:26px; }
.service-pair-card p{
  font-size:15px;
  font-weight:700;
  color:var(--cream);
  line-height:1.5;
  margin-bottom:22px;
}
.service-pair-card ul{ list-style:none; }
.service-pair-card li{
  font-size:14px;
  color:var(--muted);
  padding-left:18px;
  position:relative;
  margin-bottom:10px;
}
.service-pair-card li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--tan);
}

/* ---------- CTA STRIP — light variant ---------- */
.cta-strip.light{
  background:#F5F3EE;
  border-top:1px solid #171410;
}
.cta-strip.light h2{
  color:var(--muted);
  max-width:800px;
  text-align:center;
}
.cta-strip.light .btn-dark{
  background:var(--tan);
  color:#171410;
}
.cta-strip.light .btn-dark:hover{ background:var(--tan-deep); color:#171410; }
.cta-strip.light .cta-inner{
  justify-content:center;
  gap:48px;
}

/* ---------- FULL IMAGE ---------- */
.full-image{ width:100%; height:520px; overflow:hidden; }
.full-image img,
.full-image video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.full-image.short{ height:360px; }

/* ---------- WHY ZUNA ---------- */
.why{
  padding:96px 0 70px 0;
}
.why-head{ margin-bottom:44px; }
.why-head .eyebrow{
  display:block;
  font-size:34px;
  font-weight:800;
  font-family:'Archivo',sans-serif;
  letter-spacing:-0.01em;
  text-transform:none;
  margin-bottom:0;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}
.why-card{
  border-left:2px solid var(--tan-deep);
  padding-left:18px;
}
.why-card h3{ font-size:16.5px; font-weight:700; margin-bottom:8px; }
.why-card p{ font-size:13.5px; color:var(--muted); line-height:1.55; }

.regions{
  margin-top:56px;
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:24px;
  align-items:center;
}
.regions h2{
  font-size:34px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:14px;
  max-width:420px;
}
.regions p{
  font-size:15px;
  color:var(--cream-dim);
  max-width:420px;
  margin-bottom:20px;
}
.map-wrap{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}
.map-wrap img{ width:100%; max-width:460px; height:auto; display:block; }
.map-wrap svg{ width:100%; max-width:320px; height:auto; }
.map-region{ fill:#4a463f; stroke:var(--bg); stroke-width:1.2; }
.map-region.light{ fill:#c9c4b6; }
.map-region.mid{ fill:#7a756a; }

/* ---------- GENERIC CONTENT SECTIONS (origen / sostenibilidad) ---------- */
.content-section{ padding:90px 0; border-bottom:1px solid var(--line); }
.content-section:last-of-type{ border-bottom:none; }
.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.content-grid.reverse .content-media{ order:2; }
.content-media img{ width:100%; height:380px; object-fit:cover; border-radius:2px; }
.content-text h2{ font-size:30px; font-weight:800; margin-bottom:16px; line-height:1.15; max-width:460px; }
.content-text p{ font-size:15px; color:var(--cream-dim); margin-bottom:16px; max-width:460px; }

/* ---------- CONTENT SECTION — light variant (Trazabilidad, origen.html) ---------- */
.content-section.light{
  background:#F5F3EE;
  border-bottom:none;
}
.content-grid-simple{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:60px;
  align-items:start;
  max-width:1500px;
  margin:0;
}
.eyebrow-dark{
  display:block;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#171410;
  margin-bottom:14px;
}
.content-grid-simple h2{
  font-size:34px;
  font-weight:800;
  color:#171410;
  line-height:1.15;
}
.content-grid-simple p{
  font-size:15px;
  color:#6b6459;
  line-height:1.65;
}

/* ---------- CTA STRIP — dual button variant ---------- */
.cta-buttons{
  display:flex;
  gap:16px;
  flex-shrink:0;
}

.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:70px 0;
  border-bottom:1px solid var(--line);
}
.stat{ text-align:left; }
.stat .num{ font-size:38px; font-weight:900; color:var(--tan); font-family:'Archivo',sans-serif; }
.stat .label{ font-size:13px; color:var(--muted); margin-top:8px; }

/* ---------- CONTACT PAGE ---------- */
.contact-hero{
  background:transparent;
  padding:70px 0 46px 0;
  border-bottom:1px solid var(--line);
}
.contact-hero h1{
  font-size:52px;
  font-weight:900;
  color:var(--cream);
  line-height:1.05;
}

.contact-main{ padding-bottom:90px; }
.contact-intro{
  display:none;
  padding:36px 0;
  border-bottom:1px solid var(--line);
}
.contact-intro p{
  font-size:16px;
  color:var(--cream-dim);
  max-width:520px;
}

.contact-main-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:80px;
  padding-top:56px;
  max-width:1500px;
  margin:0;
}
.contact-side-col{
  border-left:1px solid var(--line);
  padding-left:56px;
}
.contact-form-col > .eyebrow,
.contact-side-col > .eyebrow{ display:block; margin-bottom:26px; }

.contact-item{
  padding-bottom:18px;
  margin-bottom:18px;
}
.contact-label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:6px;
}
.contact-value{
  display:block;
  font-size:18px;
  font-weight:700;
  color:var(--cream);
  transition:color .2s ease;
}
.contact-value:hover{ color:var(--tan); }

.contact-sample{
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.contact-sample .eyebrow{ display:block; margin-bottom:14px; }
.contact-sample p{
  font-size:14px;
  color:var(--cream-dim);
  line-height:1.55;
  margin-bottom:20px;
}

.form-group{ margin-bottom:20px; }
.form-group label{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--cream-dim);
}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:14px 16px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  color:var(--cream);
  font-size:14.5px;
  border-radius:2px;
  transition:border-color .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline:none;
  border-color:var(--tan);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.phone-input{
  display:flex;
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  background:var(--bg-soft);
}
.phone-input:focus-within{ border-color:var(--tan); }
.phone-code{
  flex-shrink:0;
  width:100px !important;
  padding:14px 8px;
  background:transparent;
  border:none;
  border-right:1px solid var(--line);
  color:var(--cream);
  font-size:14px;
  cursor:pointer;
}
.phone-code:focus{ outline:none; }
.phone-input input{
  flex:1;
  min-width:0;
  width:auto !important;
  border:none !important;
  background:transparent !important;
}
.phone-input input:focus{ border:none !important; }
.form-actions > div:last-child{
  display:flex;
  justify-content:flex-end;
}

.form-note{ font-size:12.5px; color:var(--muted); margin-top:14px; }
.form-success{
  display:none;
  background:rgba(201,171,124,0.1);
  border:1px solid var(--tan-deep);
  color:var(--cream);
  padding:16px 18px;
  border-radius:2px;
  font-size:14px;
  margin-top:18px;
}
.form-success.show{ display:block; }


/* ---------- CTA STRIP ---------- */
.cta-strip{
  border-top:1px solid var(--line);
  padding:70px 0;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.cta-inner h2{
  font-size:34px;
  font-weight:800;
  max-width:420px;
  line-height:1.15;
}
.cta-inner .btn{ min-width:260px; padding:18px 30px; }

/* ---------- FOOTER ---------- */
footer{
  background:var(--footer-bg);
  color:#171410;
  padding:60px 0 26px 0;
}
footer{ position:relative; }
.footer-ig{
  position:absolute;
  top:60px;
  right:60px;
  width:34px;
  height:34px;
  display:block;
}
.footer-ig img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  image-rendering:auto;
  -ms-interpolation-mode:bicubic;
}
.footer-top{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:30px;
  padding-bottom:40px;
}
.footer-brand .name{ font-size:20px; font-weight:900; color:#171410; }
.footer-logo{ height:28px; width:auto; display:block; }
.footer-brand .sub{ font-size:9px; font-weight:700; letter-spacing:0.24em; color:#5b4f38; margin-top:4px; }
.footer-col h4{ font-size:13px; font-weight:700; margin-bottom:16px; letter-spacing:0.02em; }
.footer-col a{
  display:block;
  font-size:13.5px;
  color:#40382a;
  margin-bottom:10px;
  transition:color .2s ease;
}
.footer-col a:hover{ color:#171410; }
.footer-bottom{
  border-top:1px solid rgba(23,20,16,0.15);
  padding-top:22px;
  font-size:12.5px;
  color:#5b4f38;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:52px;
  height:52px;
  border-radius:50%;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.35);
  z-index:200;
}
.wa-float svg{ width:26px; height:26px; }
.wa-float img{ width:100%; height:100%; object-fit:cover; border-radius:50%; display:block; }

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .wrap{ padding:0 22px; }
  nav.wrap{ padding:0 22px; }

  .nav-links, .nav-cta{ display:none; }
  .hamburger{ display:block; }
  .mobile-nav{ display:flex; }

  .hero-media{ position:absolute; inset:0; height:100%; }
  .hero-media::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(18,17,16,0.35) 0%, rgba(18,17,16,0.55) 55%, rgba(18,17,16,0.92) 100%);
  }
  .hero{ position:relative; min-height:560px; }
  .hero-copy{
    position:relative;
    z-index:2;
    padding:70px 22px 46px 22px;
    max-width:100%;
    justify-content:flex-end;
  }
  .hero-copy h1{ font-size:40px; color:#F5F3EE; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; }

  .origin-hero{ padding:50px 0 60px 0; }
  .origin-hero-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "title"
      "map"
      "list";
    gap:28px;
  }
  .origin-hero-title h1{ font-size:32px; }
  .region-list li strong{ font-size:15.5px; }

  .page-hero{ min-height:260px; }
  .page-hero h1{ font-size:30px; }

  .services-grid{ grid-template-columns:1fr; }
  .service-item{
    display:grid;
    grid-template-columns:26px 1fr auto;
    grid-template-areas:
      "num title arrow"
      "num desc  arrow";
    column-gap:16px;
    row-gap:6px;
    align-items:start;
    border-left:none;
    border-top:1px solid var(--line);
    padding:22px 0;
  }
  .service-item:first-child{ border-top:none; padding-left:0; }
  .service-num{
    grid-area:num;
    margin-bottom:0;
    padding-top:2px;
  }
  .service-item h3{ grid-area:title; margin-bottom:0; }
  .service-item p{ grid-area:desc; margin-bottom:0; max-width:none; }
  .service-arrow{ grid-area:arrow; align-self:center; }

  .service-detail{ padding:56px 0; }
  .service-detail-grid,
  .service-detail-grid.reverse{ grid-template-columns:1fr; gap:30px; }
  .service-detail-media{
    order:2;
    height:300px;
    width:calc(100% + 44px);
    margin-left:-22px;
    border-radius:0;
  }
  .service-detail p, .service-detail h2{ max-width:100%; }

  .service-pair-section{ padding:50px 0 60px 0; }
  .service-pair-grid{ grid-template-columns:1fr; gap:44px; }
  .service-pair-card img{
    height:200px;
    width:calc(100% + 44px);
    margin-left:-22px;
    border-radius:0;
  }

  .content-section{ padding:56px 0; }
  .content-grid,
  .content-grid.reverse{ grid-template-columns:1fr; gap:26px; }
  .content-grid.reverse .content-media{ order:0; }
  .content-media img{ height:240px; }
  .content-text h2, .content-text p{ max-width:100%; }

  .content-grid-simple{ grid-template-columns:1fr; gap:18px; }
  .content-grid-simple h2{ font-size:26px; }

  .cta-buttons{ flex-direction:column; width:100%; }
  .cta-buttons .btn{ width:100%; }

  .stats-row{ grid-template-columns:1fr 1fr; gap:26px; padding:44px 0; }

  .full-image{ height:340px; }
  .full-image.short{ height:240px; }

  .why{ padding:60px 0 20px 0; }
  .why-head .eyebrow{ font-size:26px; }
  .why-grid{ grid-template-columns:1fr; gap:26px; }

  .regions{ grid-template-columns:1fr; margin-top:56px; gap:30px; }
  .regions h2{ font-size:26px; max-width:100%; }
  .regions p{ max-width:100%; }
  .map-wrap{ order:3; justify-content:center; }

  .contact-hero{ padding:50px 0 34px 0; }
  .contact-hero h1{ font-size:32px; }
  .contact-intro{ display:block; padding:26px 0; text-align:center; }
  .contact-main-grid{
    grid-template-columns:1fr;
    gap:36px;
    padding-top:36px;
  }
  .contact-side-col{
    border-left:none;
    border-top:1px solid var(--line);
    padding-left:0;
    padding-top:36px;
  }
  .form-row{ grid-template-columns:1fr; gap:0; }
  .form-actions > div:first-child{ display:none; }
  .form-actions .btn{ width:100%; }

  .cta-strip{ padding:50px 0; }
  .cta-inner{ flex-direction:column; align-items:flex-start; gap:22px; }
  .cta-inner h2{ font-size:26px; max-width:100%; }
  .cta-inner .btn{ width:100%; min-width:0; }

  .footer-top{ grid-template-columns:1fr; gap:34px; padding-bottom:30px; }
  .footer-ig{ top:50px; right:22px; }
}