:root{
  --green:#2F3A34;
  --green-deep:#202B25;
  --green-soft:#526259;
  --sage:#9DA79F;
  --bone:#F3F0E8;
  --paper:#F8F6F1;
  --ink:#141A16;
  --muted:#69736D;
  --line:rgba(29,42,34,.14);
  --white:#FFF;
  --radius:30px;
  --shadow:0 28px 80px rgba(24,36,29,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Tahoma,Arial,sans-serif;
  line-height:1.55;
  overflow-x:hidden;
}
body[dir="rtl"]{font-family:Tahoma,"Segoe UI",Arial,sans-serif}
a{color:inherit;text-decoration:none}
button,a{-webkit-tap-highlight-color:transparent}
button{font:inherit}
img{display:block;max-width:100%}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.shell{width:min(1220px,calc(100% - 40px));margin-inline:auto}
.section{padding-block:108px}
.kicker{
  display:inline-block;
  color:#748179;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}
.page-noise{
  position:fixed;inset:0;pointer-events:none;z-index:-1;opacity:.28;
  background:
    radial-gradient(circle at 10% 10%,rgba(169,184,174,.28),transparent 24%),
    radial-gradient(circle at 88% 28%,rgba(226,215,190,.3),transparent 24%),
    linear-gradient(var(--paper),var(--paper));
}

/* header */
.site-header{
  position:sticky;
  top:14px;
  z-index:60;
  width:min(1240px,calc(100% - 28px));
  margin:14px auto 0;
  padding:10px 12px;
  display:flex;
  align-items:center;
  gap:20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.8);
  background:rgba(246,244,239,.78);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:0 14px 45px rgba(38,49,43,.08);
}
.brand{display:inline-flex;align-items:center;gap:10px;min-width:max-content}
.brand-mark{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:15px;
  overflow:hidden;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(47,58,52,.1);
  box-shadow:0 8px 24px rgba(47,58,52,.08);
}
.brand-mark img{width:100%;height:100%;object-fit:contain;padding:5px}
.brand-copy{display:grid;line-height:1}
.brand-copy strong{font-size:18px}
.brand-copy small{font-size:9px;letter-spacing:.24em;color:var(--muted);margin-top:5px}
.desktop-nav{display:flex;gap:4px;margin-inline:auto}
.desktop-nav a{
  padding:10px 14px;
  border-radius:12px;
  color:var(--muted);
  font-size:14px;
  transition:.2s ease;
}
.desktop-nav a:hover{color:var(--green);background:rgba(47,58,52,.06)}
.header-actions{display:flex;align-items:center;gap:10px}
.lang-switch{display:flex;gap:2px;padding:4px;background:rgba(47,58,52,.055);border-radius:12px}
.lang-switch button{
  border:0;background:transparent;color:var(--muted);
  padding:7px 9px;border-radius:9px;
  font-size:11px;font-weight:800;cursor:pointer;
}
.lang-switch button.active{background:#fff;color:var(--green);box-shadow:0 4px 14px rgba(47,58,52,.09)}
.mini-cta{
  min-height:42px;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0 16px;border-radius:13px;
  background:var(--green);color:var(--bone);
  font-size:13px;font-weight:800;
}
.mobile-bottom-nav{display:none}

/* hero */
.hero{padding-top:26px;padding-bottom:42px}
.hero-card{
  position:relative;
  min-height:640px;
  border-radius:36px;
  overflow:hidden;
  background:var(--green-deep);
  box-shadow:0 36px 90px rgba(33,45,38,.2);
  isolation:isolate;
}
.hero-image{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  z-index:-3;
}
.hero-shade{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(270deg,rgba(13,19,15,.86) 0%,rgba(13,19,15,.66) 31%,rgba(13,19,15,.18) 60%,rgba(13,19,15,.04) 100%),
    linear-gradient(0deg,rgba(12,17,14,.34),transparent 42%);
}
.hero-content{
  min-height:640px;
  width:min(700px,68%);
  padding:78px 72px 86px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
}
.eyebrow{display:flex;align-items:center;gap:10px;margin-bottom:18px}
.eyebrow span{width:38px;height:1px;background:rgba(255,255,255,.55)}
.eyebrow b{font-size:12px;letter-spacing:.12em;color:rgba(255,255,255,.78)}
.hero h1{
  margin:0;
  max-width:690px;
  font-size:clamp(58px,6vw,92px);
  line-height:.94;
  letter-spacing:-.055em;
  text-wrap:balance;
}
body[dir="rtl"] .hero h1{letter-spacing:-.035em}
.hero-content>p{
  margin:26px 0 0;
  max-width:610px;
  color:rgba(255,255,255,.78);
  font-size:18px;
}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:30px}
.btn{
  min-height:50px;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0 22px;border-radius:14px;
  border:1px solid transparent;
  font-size:14px;font-weight:800;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-light{background:#F7F3EA;color:#233028}
.btn-outline{color:#fff;border-color:rgba(255,255,255,.32);background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.hero-index{
  position:absolute;left:30px;right:auto;top:28px;
  display:flex;align-items:center;gap:10px;
  color:rgba(255,255,255,.72);
  font:10px/1 monospace;
  letter-spacing:.12em;
}
.hero-index i{display:block;width:42px;height:1px;background:rgba(255,255,255,.35)}

/* intro */
.intro{padding-top:96px;padding-bottom:90px}
.intro-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:90px;
  align-items:end;
}
.intro h2{
  margin:12px 0 0;
  max-width:760px;
  font-size:clamp(44px,5.3vw,74px);
  line-height:.98;
  letter-spacing:-.048em;
}
body[dir="rtl"] .intro h2{letter-spacing:-.03em}
.intro-copy{padding-bottom:4px}
.intro-copy>p{margin:0;color:var(--muted);font-size:17px;max-width:510px}
.intro-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:26px}
.intro-tags span{
  padding:8px 11px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.62);
  color:#637069;font-size:12px;
}

/* services */
.services{background:#111714;color:#F5F2EA}
.section-top{display:flex;align-items:center;gap:14px;margin-bottom:24px}
.section-number{font:11px/1 monospace;color:#829087}
.hairline{flex:1;height:1px;background:rgba(255,255,255,.12)}
.services .kicker{color:#88978E}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.service-card{
  min-height:230px;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.09);
  background:#181F1B;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:44px;
  transition:.25s ease;
}
.service-card:hover{transform:translateY(-4px);background:#1E2721;border-color:rgba(255,255,255,.15)}
.service-no{font:11px/1 monospace;color:#75857B}
.service-card h3{font-size:23px;line-height:1.05;margin:0 0 12px}
.service-card p{margin:0;color:#9CA79F;font-size:14px;max-width:340px}
.service-card:nth-child(5),.service-card:nth-child(8){background:#27342D}

/* statement/process */
.statement{background:#111714;padding-top:0}
.statement-card{
  position:relative;
  padding:56px;
  border-radius:34px;
  background:#EDE9E0;
  color:var(--ink);
  overflow:hidden;
}
.statement-card:after{
  content:"";position:absolute;
  width:460px;height:460px;border-radius:50%;
  inset-inline-end:-170px;top:-210px;
  background:radial-gradient(circle,rgba(123,143,130,.28),transparent 68%);
}
.statement-mark{
  width:78px;height:78px;
  background:#fff;border-radius:24px;
  display:grid;place-items:center;
  border:1px solid rgba(47,58,52,.12);
}
.statement-mark img{width:62px;height:62px;object-fit:contain}
.statement-copy{margin-top:56px;max-width:700px}
.statement-copy h2{
  margin:10px 0 0;
  font-size:clamp(46px,5.4vw,76px);
  line-height:.98;
  letter-spacing:-.05em;
}
.process-inline{
  position:relative;z-index:2;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:12px;margin-top:58px;
}
.process-inline article{
  padding-top:20px;border-top:1px solid rgba(47,58,52,.18);
}
.process-inline b{font:11px/1 monospace;color:#7A877F}
.process-inline h3{margin:18px 0 8px;font-size:20px}
.process-inline p{margin:0;color:var(--muted);font-size:14px;max-width:300px}

/* section heads */
.section-head{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:72px;
  align-items:end;
  margin-bottom:40px;
}
.section-head h2{
  margin:10px 0 0;
  font-size:clamp(40px,4.8vw,66px);
  line-height:1;
  letter-spacing:-.045em;
}
.section-head p{margin:0;color:var(--muted);font-size:16px;max-width:520px}

/* packages */
.packages{background:#F3EFE6}
.package-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.package-card{
  position:relative;
  min-height:410px;
  padding:26px;
  border-radius:26px;
  background:#FAF8F3;
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
}
.package-card.featured{background:var(--green);color:#F4F0E7;border-color:var(--green)}
.package-label{
  position:static;
  align-self:flex-start;
  margin:0 0 18px;
  padding:7px 10px;border-radius:999px;
  background:#F4F0E7;color:var(--green);
  font-size:10px;font-weight:800;
}
.package-top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.package-top span{font:10px/1 monospace;letter-spacing:.14em;color:#78847D}
.package-card.featured .package-top span{color:#C3CCC6}
.package-top b{font-size:36px;line-height:1}
.package-card h3{margin:84px 0 24px;font-size:32px;line-height:1}
.package-card ul{list-style:none;padding:0;margin:auto 0 0;display:grid;gap:0}
.package-card li{padding:12px 0;border-top:1px solid rgba(47,58,52,.12);font-size:14px}
.package-card.featured li{border-color:rgba(255,255,255,.13);color:#D8DED9}
.photo-offer{
  margin-top:12px;padding:28px 30px;
  border-radius:26px;
  border:1px solid var(--line);
  background:#fff;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
}
.photo-offer h3{margin:8px 0 8px;font-size:28px}
.photo-offer p{margin:0;color:var(--muted);font-size:14px}
.photo-offer strong{font-size:50px;line-height:1;color:var(--green)}

/* clients */
.clients{background:#F8F6F1}
.client-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.client-loading{
  grid-column:1/-1;
  min-height:130px;
  display:grid;place-items:center;
  border:1px dashed var(--line);
  border-radius:20px;color:var(--muted);
}
.client-card{
  min-height:190px;
  padding:24px 18px 20px;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  text-align:center;
  transition:.2s ease;
}
.client-card:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(33,45,38,.08)}
.client-logo{
  width:64px;height:64px;flex:0 0 auto;
  border-radius:18px;
  background:#F1EFE9;
  border:1px solid rgba(47,58,52,.08);
  display:grid;place-items:center;
  color:var(--green);font-weight:900;
  overflow:hidden;
}
.client-logo.has-image{
  width:132px;
  height:78px;
  border:0;
  border-radius:0;
  background:transparent;
  overflow:visible;
}
.client-logo img{width:100%;height:100%;object-fit:contain;padding:0}
.client-meta{display:grid;gap:5px;min-width:0;justify-items:center}
.client-meta b{font-size:16px;line-height:1.35;max-width:220px}
.client-meta span{font-size:11px;color:var(--muted)}


/* about */
.about{padding-top:18px;padding-bottom:108px}
.about-card{
  border-radius:34px;
  padding:58px;
  background:#EDE9E0;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:end;
  overflow:hidden;
  position:relative;
}
.about-card:after{
  content:"";
  position:absolute;
  width:520px;height:520px;border-radius:50%;
  inset-inline-end:-220px;top:-260px;
  background:radial-gradient(circle,rgba(103,126,112,.22),transparent 68%);
}
.about-copy{position:relative;z-index:1}
.about-copy h2{
  margin:12px 0 22px;
  font-size:clamp(42px,5vw,70px);
  line-height:.98;
  letter-spacing:-.045em;
  max-width:760px;
}
.about-copy p{margin:0;color:var(--muted);font-size:17px;max-width:720px}
.about-slogan{display:block;margin-top:30px;font-size:22px;color:var(--green)}
.about-stats{position:relative;z-index:1;display:grid;gap:10px}
.about-stats article{
  min-height:116px;
  padding:18px 20px;
  border-radius:20px;
  border:1px solid rgba(47,58,52,.12);
  background:rgba(255,255,255,.55);
  display:flex;align-items:end;justify-content:space-between;gap:20px;
}
.about-stats b{font-size:30px;line-height:1;color:var(--green)}
.about-stats span{font-size:12px;color:var(--muted);text-align:end}
.offer-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.offer-grid .photo-offer{margin-top:0;height:100%}
.promo-offer{background:var(--green);color:#F4F0E7;border-color:var(--green)}
.promo-offer .kicker,.promo-offer p{color:#C9D2CC}
.promo-offer strong{color:#F4F0E7}
.contact-actions{position:relative;z-index:1;display:grid;gap:14px;justify-items:stretch;min-width:210px}
.social-links,.footer-socials{display:flex;gap:12px;flex-wrap:wrap}
.social-links a{font-size:12px;color:#C8D0CB;text-decoration:underline;text-underline-offset:4px}
.footer-socials a{font-size:11px;color:var(--muted)}

/* contact */
.contact{padding-top:34px;padding-bottom:112px}
.contact-card{
  padding:64px;
  border-radius:38px;
  background:
    radial-gradient(circle at 12% 15%,rgba(178,194,183,.12),transparent 28%),
    linear-gradient(145deg,#314039 0%,#202A24 100%);
  color:#F4F0E8;
  position:relative;
  overflow:hidden;
  box-shadow:0 36px 90px rgba(29,42,34,.16);
}
.contact-card:before{
  content:"";
  position:absolute;
  width:520px;height:520px;border-radius:50%;
  inset-inline-start:-320px;bottom:-360px;
  border:1px solid rgba(255,255,255,.08);
}
.contact-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr);
  gap:76px;
  align-items:center;
}
.contact-intro{
  max-width:520px;
}
.contact-card .kicker{color:#BFC8C2}
.contact-card h2{
  margin:18px 0 0;
  max-width:520px;
  font-size:clamp(48px,4.7vw,72px);
  line-height:1.08;
  letter-spacing:-.025em;
  text-wrap:balance;
}
body[dir="rtl"] .contact-card h2{letter-spacing:-.01em}
.contact-card p{
  margin:30px 0 0;
  max-width:470px;
  color:#C8D0CB;
  font-size:17px;
  line-height:1.85;
}
.contact-channels{display:grid;gap:14px}
.social-pair{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.social-card{
  position:relative;
  min-height:190px;
  padding:26px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
  overflow:hidden;
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.social-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.24);
  box-shadow:0 22px 46px rgba(9,15,11,.18);
}
.social-whatsapp{
  min-height:224px;
  background:#F3EFE6;
  color:#243129;
  border-color:rgba(255,255,255,.82);
}
.social-instagram{background:#3D4C43;color:#F6F2E9}
.social-facebook{background:#19221D;color:#F6F2E9}
.social-icon{
  width:64px;height:64px;
  border-radius:20px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
}
.social-whatsapp .social-icon{
  width:72px;height:72px;
  background:#DBE6DE;
  border-color:rgba(47,58,52,.08);
}
.social-icon svg{
  width:31px;height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.social-whatsapp .social-icon svg{width:36px;height:36px}
.social-facebook .social-icon svg path{fill:currentColor;stroke:none}
.social-copy{
  display:grid;
  align-content:center;
  min-width:0;
}
.social-copy small{
  margin-bottom:14px;
  font:10px/1 monospace;
  letter-spacing:.16em;
  opacity:.58;
}
.social-copy b{
  font-size:24px;
  line-height:1.12;
  letter-spacing:-.015em;
  overflow-wrap:anywhere;
}
.social-whatsapp .social-copy b{font-size:28px}
.social-copy>span{
  margin-top:12px;
  font-size:13px;
  line-height:1.55;
  opacity:.68;
}
.social-arrow{
  width:42px;height:42px;
  border-radius:50%;
  display:grid;place-items:center;
  align-self:start;
  justify-self:end;
  border:1px solid currentColor;
  opacity:.58;
  font-size:17px;
}

/* footer */
.site-footer{
  padding:24px 0 110px;
  display:flex;align-items:center;gap:24px;
  border-top:1px solid var(--line);
  color:var(--muted);font-size:12px;
}
.site-footer p{margin:0 auto}
.footer-brand .brand-mark{width:40px;height:40px;border-radius:12px}

/* responsive */
@media (max-width:1050px){
  .desktop-nav{display:none}
  .header-actions{margin-inline-start:auto}
  .hero-content{width:72%;padding:62px 54px 72px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .package-grid{grid-template-columns:1fr 1fr}
  .package-card:last-child{grid-column:1/-1}
  .client-grid{grid-template-columns:repeat(3,1fr)}
  .intro-grid{gap:56px}
}

@media (max-width:720px){
  body{padding-bottom:94px}
  .shell{width:calc(100% - 24px)}
  .site-header{
    top:8px;margin-top:8px;width:calc(100% - 16px);
    padding:8px 9px;border-radius:18px;
  }
  .brand-copy,.mini-cta{display:none}
  .brand-mark{width:46px;height:46px;border-radius:14px}
  .lang-switch button{padding:8px 10px}
  .mobile-bottom-nav{
    position:fixed;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    left:12px;right:12px;bottom:calc(10px + env(safe-area-inset-bottom));
    z-index:80;
    min-height:68px;
    padding:7px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.86);
    background:rgba(248,246,241,.9);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    box-shadow:0 20px 50px rgba(32,43,37,.16);
  }
  .mobile-bottom-nav a{
    display:grid;place-items:center;
    min-height:54px;
    padding:8px;
    border-radius:14px;
    color:#526158;
    text-align:center;
  }
  .mobile-bottom-nav svg{
    width:24px;height:24px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .mobile-bottom-nav a:active{background:rgba(47,58,52,.07)}
  .hero{padding-top:16px;padding-bottom:24px}
  .hero-card{min-height:620px;border-radius:28px}
  .hero-image{object-position:34% center}
  .hero-shade{
    background:
      linear-gradient(0deg,rgba(11,17,13,.92) 0%,rgba(11,17,13,.72) 38%,rgba(11,17,13,.12) 72%,rgba(11,17,13,.06) 100%)!important;
  }
  .hero-content{
    width:100%;min-height:620px;
    justify-content:flex-end;
    padding:28px 24px 30px;
  }
  .eyebrow{margin-bottom:14px}
  .hero h1{font-size:44px;line-height:.98;max-width:520px}
  .hero-content>p{margin-top:18px;font-size:15px;max-width:460px}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;width:100%;margin-top:22px}
  .hero-actions .btn{padding:0 10px;font-size:13px}
  .hero-index{top:22px;inset-inline-end:20px}
  .section{padding-block:72px}
  .about{padding-top:10px;padding-bottom:72px}
  .about-card{padding:30px 24px;grid-template-columns:1fr;gap:36px;border-radius:28px}
  .about-copy h2{font-size:40px}
  .about-copy p{font-size:15px}
  .about-slogan{font-size:19px}
  .about-stats{grid-template-columns:1fr}
  .about-stats article{min-height:92px}
  .offer-grid{grid-template-columns:1fr}
  .intro{padding-top:64px;padding-bottom:64px}
  .intro-grid{grid-template-columns:1fr;gap:26px}
  .intro h2{font-size:42px}
  .intro-copy>p{font-size:15px}
  .service-grid{grid-template-columns:1fr}
  .service-card{min-height:190px;gap:28px;padding:20px}
  .service-card h3{font-size:22px}
  .statement{padding-top:0}
  .statement-card{padding:28px 22px;border-radius:28px}
  .statement-mark{width:62px;height:62px;border-radius:18px}
  .statement-mark img{width:50px;height:50px}
  .statement-copy{margin-top:42px}
  .statement-copy h2{font-size:44px}
  .process-inline{grid-template-columns:1fr;gap:22px;margin-top:40px}
  .process-inline article{padding-top:16px}
  .section-head{grid-template-columns:1fr;gap:18px;margin-bottom:28px}
  .section-head h2{font-size:42px}
  .section-head p{font-size:15px}
  .package-grid{grid-template-columns:1fr}
  .package-card,.package-card:last-child{grid-column:auto;min-height:350px}
  .package-card h3{margin-top:62px}
  .photo-offer{align-items:flex-start;padding:24px;flex-direction:column}
  .photo-offer strong{font-size:44px}
  .client-grid{grid-template-columns:1fr 1fr}
  .client-card{min-height:150px;padding:18px 12px;gap:14px}
  .client-logo{width:54px;height:54px;border-radius:15px}
  .client-logo.has-image{width:104px;height:62px}
  .client-meta b{font-size:14px}
  .contact{padding-top:20px;padding-bottom:72px}
  .contact-card{padding:34px 22px;border-radius:28px}
  .contact-layout{grid-template-columns:1fr;gap:42px}
  .contact-intro{max-width:100%}
  .contact-card h2{font-size:40px;line-height:1.16;max-width:420px}
  .contact-card p{margin-top:22px;font-size:15px;line-height:1.8}
  .social-pair{grid-template-columns:1fr}
  .social-card,.social-whatsapp{min-height:150px;padding:20px;border-radius:20px}
  .social-icon,.social-whatsapp .social-icon{width:56px;height:56px;border-radius:17px}
  .social-copy b,.social-whatsapp .social-copy b{font-size:20px}
  .social-copy>span{margin-top:8px;font-size:12px}
  .site-footer{padding-bottom:32px;flex-wrap:wrap}
  .site-footer p{order:3;width:100%;margin:0}
}

@media (max-width:420px){
  .hero-card,.hero-content{min-height:590px}
  .hero h1{font-size:39px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn{min-height:48px}
  .intro h2,.section-head h2,.statement-copy h2{font-size:38px}
  .contact-card h2{font-size:36px}
  .client-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}