
:root{
  --pink:#ff5db4;
  --pink-2:#ff8bd0;
  --pink-3:#ffd0eb;
  --wine:#6c0032;
  --wine-2:#8a003d;
  --deep:#3a0019;
  --deep-2:#1f000d;
  --cream:#fff1f8;
  --text:#ffe6f3;
  --muted:rgba(255,232,242,.82);
  --gold:#d8a85c;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scrollbar-width:thin;scrollbar-color:var(--pink) #2a0012}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 16%,rgba(255,145,210,.16),transparent 28rem),
    radial-gradient(circle at 88% 8%,rgba(255,90,180,.12),transparent 25rem),
    linear-gradient(180deg,rgba(114,0,50,.94) 0%, rgba(120,0,52,.92) 100%);
  overflow-x:hidden;
}
body::-webkit-scrollbar{width:10px}
body::-webkit-scrollbar-track{background:#2a0012}
body::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--pink),#ff85cb);border-radius:999px;border:2px solid #2a0012}
body::-webkit-scrollbar-thumb:hover{background:#ffa3da}
a{color:inherit}
img,video{max-width:100%}
.container{width:min(var(--container),calc(100% - 40px));margin-inline:auto}
.skip-link{position:fixed;top:12px;left:12px;z-index:999;transform:translateY(-140%);background:var(--cream);color:var(--deep);padding:12px 16px;border-radius:999px;font-weight:800;text-decoration:none}
.skip-link:focus{transform:translateY(0);outline:3px solid var(--pink)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.section-bridge{position:relative}
.section-bridge::before{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.01em;
  line-height:1;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,border-color .25s ease,filter .25s ease;
  color:inherit;
  white-space:nowrap;
}
.btn:hover,.btn:focus-visible{transform:translateY(-2px);outline:none}
.btn-primary{
  background:linear-gradient(135deg,#ffe7f5 0%, #ff9ed6 54%, #f23f9b 100%);
  color:#42001d;
  box-shadow:0 22px 48px rgba(67,0,28,.36), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-primary:hover,.btn-primary:focus-visible{box-shadow:0 28px 60px rgba(67,0,28,.45), inset 0 1px 0 rgba(255,255,255,.56);filter:saturate(1.05)}

/* HERO */
.hero-section{
  position:relative;
  min-height:100svh;
  display:grid;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:#760034;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  background:url("../images/hero-nice-03.png") center center/cover no-repeat;
}
.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 19% 44%, rgba(255,90,185,.14), transparent 26rem),
    linear-gradient(90deg, rgba(55,0,24,.76) 0%, rgba(86,0,38,.58) 34%, rgba(96,0,42,.10) 57%, rgba(20,0,10,.06) 100%);
}
.hero-content{position:relative;z-index:2;padding:120px 0 92px}
.hero-copy{max-width:620px}
.eyebrow{display:inline-flex;align-items:center;gap:10px;margin-bottom:20px;color:var(--pink-3);font-size:13px;letter-spacing:.11em;text-transform:uppercase;font-weight:900}
.eyebrow::before{content:"";width:42px;height:2px;border-radius:99px;background:linear-gradient(90deg,var(--pink),var(--pink-3))}
.hero-copy h1{margin:0 0 20px;color:#fff6fb;font-size:clamp(42px,5.5vw,76px);line-height:.96;letter-spacing:-.06em;max-width:760px;text-shadow:0 20px 55px rgba(28,0,12,.36)}
.hero-copy p{margin:0 0 30px;color:rgba(255,236,247,.92);font-size:clamp(18px,1.75vw,25px);line-height:1.46;max-width:590px}

/* SERVICES */
.services-section{
  position:relative;
  min-height:100vh;
  padding:110px 0;
  background:transparent;
}
.services-section > .container{position:relative;z-index:1}
.services-layout{display:grid;grid-template-columns:340px 1fr;gap:34px;align-items:start}
.section-heading{max-width:760px}
.section-kicker{display:inline-flex;align-items:center;gap:10px;font-size:13px;letter-spacing:.1em;text-transform:uppercase;font-weight:900;color:var(--pink-3)}
.section-kicker::before{content:"";display:inline-block;width:38px;height:2px;border-radius:20px;background:linear-gradient(90deg,var(--pink),var(--pink-3))}
.section-heading h2{margin:16px 0 18px;font-size:clamp(28px,3.35vw,46px);line-height:1.02;letter-spacing:-.05em;color:#fff4fa}
.section-heading p{color:var(--muted);font-size:17px;line-height:1.68;margin:0 0 22px}
.sticky-heading{position:sticky;top:42px}
.service-notes{
  margin:0 0 22px;
  padding:18px 18px 18px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
  border:1px solid rgba(255,166,220,.28);
  box-shadow:0 18px 40px rgba(48,0,20,.18), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.service-notes h3{margin:0 0 12px;font-size:15px;letter-spacing:.08em;text-transform:uppercase;color:#ffe6f3}
.service-notes ul{margin:0;padding-left:18px;color:var(--muted);display:grid;gap:8px;font-size:14.5px;line-height:1.45}
.services-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.service-card{
  position:relative;
  min-height:188px;
  padding:24px;
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.05));
  border:1px solid rgba(255,172,223,.24);
  box-shadow:0 18px 45px rgba(33,0,14,.22), inset 0 1px 0 rgba(255,255,255,.12);
  overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease,background .28s ease;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.service-card::before{content:"";position:absolute;inset:-1px;border-radius:inherit;padding:1px;background:linear-gradient(135deg,rgba(255,150,214,.42),rgba(255,255,255,.05),rgba(255,84,174,.18));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.8;pointer-events:none}
.service-card::after{content:"";position:absolute;right:-58px;bottom:-70px;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(255,115,196,.22),transparent 66%);transition:transform .35s ease,opacity .35s ease}
.service-card:hover{transform:translateY(-6px);box-shadow:0 30px 75px rgba(24,0,11,.32);border-color:rgba(255,185,227,.44);background:linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.08))}
.service-card:hover::after{transform:scale(1.25);opacity:1}
.service-card span{display:inline-flex;width:42px;height:42px;border-radius:15px;align-items:center;justify-content:center;background:rgba(255,120,196,.14);color:#fff3fa;font-weight:900;font-size:13px;margin-bottom:18px;box-shadow:0 8px 18px rgba(90,0,40,.28);border:1px solid rgba(255,170,223,.26)}
.service-card h3{font-size:20px;line-height:1.13;letter-spacing:-.03em;color:#fff4fa;margin:0 0 12px}
.service-card p{font-size:15.5px;line-height:1.55;color:rgba(255,233,244,.82);margin:0}

/* CAROUSEL */
.gallery-section{
  position:relative;
  padding:90px 0 105px;
  background:transparent;
  overflow:hidden;
}
.gallery-section::after{
  content:"";
  position:absolute;
  inset:auto -10% 0;
  height:38%;
  background:radial-gradient(circle at 52% 100%,rgba(255,93,180,.18),transparent 45rem);
  pointer-events:none;
}
.gallery-head{position:relative;z-index:1;margin-bottom:30px}
.gallery-head h2{margin:14px 0 0;font-size:clamp(28px,3vw,46px);line-height:1.04;letter-spacing:-.05em;color:#fff4fa;max-width:850px}
.photo-marquee{position:relative;z-index:1;width:100%;overflow:hidden;padding:12px 0 22px}
.photo-marquee::before,.photo-marquee::after{content:"";position:absolute;top:0;bottom:0;width:min(15vw,220px);z-index:2;pointer-events:none}
.photo-marquee::before{left:0;background:linear-gradient(90deg,rgba(88,0,40,.98),rgba(88,0,40,0))}
.photo-marquee::after{right:0;background:linear-gradient(270deg,rgba(88,0,40,.98),rgba(88,0,40,0))}
.photo-track{display:flex;gap:18px;width:max-content;animation:marquee 72s linear infinite;will-change:transform}
.carousel-card{
  width:clamp(210px,19vw,340px);
  aspect-ratio:3/4;
  margin:0;
  border-radius:26px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,194,231,.25);
  box-shadow:0 30px 65px rgba(25,0,12,.30), inset 0 1px 0 rgba(255,255,255,.12);
  transform:translateZ(0);
}
.carousel-card img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.04) contrast(1.02);transition:transform .6s ease, filter .6s ease}
.carousel-card:hover img{transform:scale(1.05);filter:saturate(1.12) contrast(1.06)}
@keyframes marquee{to{transform:translateX(-50%)}}

/* ABOUT */
.about-section{
  position:relative;
  overflow:hidden;
  padding:86px 0 76px;
  background:transparent;
}
.about-section::before{
  display:none;
}
.about-section::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:92vw;
  height:70%;
  transform:translate(-50%,-50%);
  pointer-events:none;
  background:radial-gradient(ellipse at center,rgba(255,133,205,.11),transparent 62%);
  filter:blur(24px);
  z-index:0;
}
.about-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(340px,520px) minmax(0,1fr);
  align-items:stretch;
  gap:34px;
}
.about-photo{
  position:relative;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-width:0;
  min-height:430px;
  padding:24px;
  border-radius:10px;
  background:rgba(38,0,16,.72);
  border:1px solid rgba(255,184,226,.07);
  box-shadow:0 28px 70px rgba(24,0,10,.22), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
  box-sizing:border-box;
}
.about-photo img{
  display:block;
  width:min(100%,488px);
  height:auto;
  filter:drop-shadow(0 26px 54px rgba(32,0,14,.28));
}
.about-card{
  position:relative;
  width:100%;
  min-height:430px;
  padding:38px 52px 42px;
  border-radius:10px;
  background:rgba(38,0,16,.72);
  border:1px solid rgba(255,184,226,.07);
  box-shadow:0 28px 70px rgba(24,0,10,.22), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
}
.about-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  color:var(--pink-3);
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:900;
}
.about-eyebrow::before{
  content:"";
  display:inline-block;
  width:38px;
  height:2px;
  border-radius:20px;
  background:linear-gradient(90deg,var(--pink),var(--pink-3));
}
.about-card h2{
  margin:0 0 18px;
  color:#fff6fb;
  font-size:clamp(32px,3.1vw,48px);
  line-height:1.06;
  letter-spacing:-.045em;
}
.about-card p{
  max-width:780px;
  margin:0 0 16px;
  color:rgba(255,233,244,.82);
  font-size:15.5px;
  line-height:1.55;
  font-weight:400;
  letter-spacing:0;
}
.about-card p:last-of-type{margin-bottom:28px}
.about-cta{min-width:280px}

/* CONTACT / FOOTER VISUAL */
.contact-section{
  position:relative;
  padding:86px 0 0;
  background:transparent;
  overflow:hidden;
}
.contact-shell{position:relative;z-index:1}
.contact-composition{position:relative;min-height:615px;width:min(100%,1180px);margin:0 auto;display:flex;align-items:flex-start;justify-content:flex-end;padding:18px 20px 0 0;isolation:isolate}
.contact-composition::after{content:"";position:absolute;left:50%;top:540px;width:100vw;height:130px;transform:translateX(-50%);pointer-events:none;z-index:1;background:radial-gradient(ellipse at 52% 45%, rgba(255,182,221,.10), transparent 58%),linear-gradient(180deg,rgba(74,8,38,0) 0%,rgba(74,8,38,.46) 34%,rgba(74,8,38,.88) 58%,rgba(74,8,38,.56) 78%,rgba(74,8,38,0) 100%);filter:blur(18px);opacity:.92}
.contact-stack{position:absolute;left:18px;top:18px;width:min(100%,440px);display:flex;flex-direction:column;gap:14px;z-index:2}
.contact-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  width:100%;
  padding:18px;
  min-height:96px;
  text-align:left;
  text-decoration:none;
  color:inherit;
  font:inherit;
  cursor:pointer;
  border-radius:22px;
  background:radial-gradient(circle at 12% 0%, rgba(255,234,244,.16), transparent 34%),linear-gradient(180deg, rgba(95,14,50,.84), rgba(58,6,28,.78));
  border:1px solid rgba(255,234,244,.18);
  box-shadow:0 22px 54px rgba(30,27,18,.24),0 16px 40px rgba(74,8,38,.26),inset 0 1px 0 rgba(255,234,244,.10);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease,background .24s ease;
}
.contact-card:hover,.contact-card:focus-visible{transform:translateY(-5px);border-color:rgba(255,143,207,.54);background:radial-gradient(circle at 12% 0%, rgba(255,234,244,.20), transparent 34%),linear-gradient(180deg, rgba(123,19,67,.92), rgba(68,7,34,.88));box-shadow:0 28px 60px rgba(30,27,18,.30),0 18px 48px rgba(74,8,38,.32),0 0 28px rgba(255,99,181,.12),inset 0 1px 0 rgba(255,234,244,.16);outline:none}
.contact-card-icon{position:relative;flex:0 0 52px;width:52px;height:52px;border-radius:15px;display:inline-flex;align-items:center;justify-content:center;color:var(--pink-3);background:linear-gradient(180deg,rgba(255,99,181,.18),rgba(217,47,132,.12));border:1px solid rgba(255,99,181,.38);box-shadow:inset 0 1px 0 rgba(255,234,244,.14),0 18px 36px rgba(42,4,22,.24)}
.contact-card-icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.contact-copy{display:flex;flex-direction:column;gap:6px;min-height:0;justify-content:center;padding:0}
.contact-copy strong{display:block;margin:0;color:rgba(255,234,244,.98);font-size:17px;line-height:1.15;font-weight:800;letter-spacing:-.015em}
.contact-copy span{display:block;margin:0;color:rgba(255,234,244,.96);font-size:15px;line-height:1.38;font-weight:500;text-shadow:0 1px 10px rgba(42,4,22,.26)}
.contact-cta-wrap{margin-top:8px;display:flex;justify-content:flex-start;position:relative;z-index:3}
.contact-visual{width:min(100%,740px);margin:0 0 0 auto;position:relative;z-index:1;transform:translateX(26px);border-radius:0;overflow:visible;box-shadow:none;background:transparent}
.phone-stage{position:relative;width:min(100%,560px);margin:0 auto;aspect-ratio:1216/1293;filter:drop-shadow(0 28px 54px rgba(42,4,22,.24));-webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 80%,rgba(0,0,0,.96) 86%,rgba(0,0,0,.58) 93%,transparent 100%);mask-image:linear-gradient(to bottom,#000 0%,#000 80%,rgba(0,0,0,.96) 86%,rgba(0,0,0,.58) 93%,transparent 100%);-webkit-mask-size:100% 100%;mask-size:100% 100%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}
.phone-screen-wrap{position:absolute;left:30.10%;top:1.10%;width:35.35%;height:71.15%;overflow:hidden;border-radius:30px 30px 14px 14px;background:#050505;z-index:1}
.phone-screen-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center;background:#050505;transform:scale(1.018);transform-origin:center center}
.phone-shell-img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;z-index:2;pointer-events:none}

/* MODAL */
.contact-map-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;padding:28px;opacity:0;pointer-events:none;transition:opacity .25s ease;z-index:50}
.contact-map-modal.is-open{opacity:1;pointer-events:auto}
.contact-map-backdrop{position:absolute;inset:0;background:rgba(16,4,11,.76);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.contact-map-dialog{position:relative;width:min(880px,100%);padding:22px;border-radius:28px;border:1px solid rgba(255,143,207,.40);background:linear-gradient(180deg,rgba(95,14,50,.96),rgba(58,6,28,.95));box-shadow:0 30px 70px rgba(0,0,0,.42),0 0 34px rgba(255,99,181,.13),inset 0 1px 0 rgba(255,234,244,.16);overflow:auto}
.contact-map-header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:16px}
.contact-map-eyebrow{display:inline-block;margin-bottom:8px;color:var(--pink-3);font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.contact-map-header h3{margin:0;color:var(--cream);font-size:clamp(20px,2vw,28px);line-height:1.16;max-width:540px}
.contact-map-close{flex:0 0 auto;min-height:46px;padding:0 24px}
.contact-map-frame{border-radius:22px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#0b0b0c;box-shadow:inset 0 1px 0 rgba(255,255,255,.08);filter:saturate(.92) contrast(1.02) brightness(.96)}
.contact-map-frame iframe{display:block;width:100%;height:min(380px,46vh);border:0}

/* FOOTER CREDIT */
.footer{padding:18px 0 18px;background:transparent;color:rgba(255,232,242,.78)}
.footer-shell{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;border-radius:999px;background:linear-gradient(180deg,rgba(255,234,244,.15),rgba(255,234,244,.07));border:1px solid rgba(255,234,244,.18);box-shadow:inset 0 1px 0 rgba(255,255,255,.18),inset 0 -1px 0 rgba(255,255,255,.08),0 24px 60px rgba(38,0,17,.18);backdrop-filter:blur(22px) saturate(1.15);-webkit-backdrop-filter:blur(22px) saturate(1.15);position:relative;overflow:hidden}
.footer-shell::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(135deg,rgba(255,234,244,.48),rgba(255,93,180,.24),rgba(255,255,255,.10));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}
.footer small{font-size:13px;position:relative;z-index:1}
.footer a{color:#d8a85c;text-decoration:none;font-weight:800}
.footer a:hover{color:#d8a85c}

/* FLOAT */
.whatsapp-float{position:fixed;right:18px;bottom:18px;width:57.6px;height:57.6px;border-radius:50%;background:radial-gradient(circle at 34% 30%,#66f59a 0%,#3edd74 34%,#25d366 66%,#17b652 100%);border:2px solid rgba(255,255,255,.16);color:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:inset 0 2px 5px rgba(255,255,255,.22),inset 0 -3px 7px rgba(0,0,0,.14),0 18px 36px rgba(0,0,0,.28),0 0 0 5px rgba(37,211,102,.18);transition:transform .24s ease,box-shadow .24s ease,filter .24s ease;z-index:61}
.whatsapp-float:hover{transform:translateY(-2px) scale(1.03);box-shadow:inset 0 2px 5px rgba(255,255,255,.24),inset 0 -3px 7px rgba(0,0,0,.14),0 22px 42px rgba(0,0,0,.32),0 0 0 6px rgba(37,211,102,.22);filter:saturate(1.06)}
.whatsapp-float svg{width:46px;height:46px;display:block;fill:currentColor}

/* REVEALS */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.75,.22,1)}
.reveal.is-visible{opacity:1;transform:translateY(0)}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
  .photo-track{animation:marquee 72s linear infinite!important;will-change:transform}
}

/* RESPONSIVE */
@media (max-width:1100px){
  .hero-section{min-height:840px}
  .hero-section::before{background:linear-gradient(90deg, rgba(55,0,24,.82), rgba(86,0,38,.54)),linear-gradient(0deg,rgba(55,0,24,.78),rgba(55,0,24,0) 45%)}
  .services-layout{grid-template-columns:1fr}
  .sticky-heading{position:relative;top:auto}
  .services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .about-section{padding:74px 0 66px}
  .about-layout{grid-template-columns:minmax(280px,430px) minmax(0,1fr);gap:24px}
  .about-photo{min-height:0;padding:20px}
  .about-card{padding:34px 36px 38px;min-height:0}
  .about-photo img{width:min(100%,390px)}
  .about-cta{min-width:250px}
  .contact-composition{min-height:auto;display:flex;flex-direction:column;gap:24px;padding-right:0}
  .contact-composition::after{top:calc(18px + min(calc(100vw - 32px),620px) - 94px);height:148px}
  .contact-stack{position:relative;left:auto;top:auto;width:min(100%,640px);order:2}
  .contact-visual{width:min(100%,620px);margin:0 auto;transform:none}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,var(--container))}
  .hero-section{min-height:780px;background:#720032}
  .hero-bg{background-position:63% center}
  .hero-section::before{background:linear-gradient(180deg,rgba(47,0,22,.36),rgba(47,0,22,.85) 54%,rgba(47,0,22,.95) 100%)}
  .hero-content{padding:360px 0 60px}
  .hero-copy h1{font-size:clamp(35px,10vw,52px)}
  .hero-copy p{font-size:17px}
  .services-section{padding:80px 0}
  .section-heading h2,.gallery-head h2{font-size:clamp(31px,9vw,42px)}
  .services-grid{grid-template-columns:1fr;gap:14px}
  .service-card{min-height:auto;padding:22px;border-radius:24px}
  .btn{width:100%;min-height:56px;padding-inline:18px}
  .gallery-section{padding:72px 0 80px}
  .carousel-card{width:220px;border-radius:22px}
  .photo-track{animation-duration:58s}
  .about-section{padding:70px 0;background:transparent}
  .about-layout{grid-template-columns:1fr;gap:20px}
  .about-photo{order:1;min-height:0;padding:18px;border-radius:24px;background:rgba(38,0,16,.70)}
  .about-photo img{width:min(100%,430px)}
  .about-card{order:2;padding:28px 22px 26px;border-radius:24px;background:rgba(38,0,16,.70)}
  .about-card h2{font-size:clamp(31px,9vw,42px)}
  .about-card p{font-size:15.5px;line-height:1.55}
  .about-cta{width:100%;min-width:0}
  .contact-section{padding:60px 0 0}
  .contact-composition{gap:12px}
  .contact-stack{gap:12px}
  .contact-card{border-radius:20px;padding:16px;min-height:86px}
  .contact-card-icon{flex:0 0 42px;width:42px;height:42px;border-radius:13px}
  .contact-card-icon svg{width:18px;height:18px}
  .contact-copy{gap:4px}
  .contact-copy strong{font-size:16px}
  .contact-copy span{font-size:14.5px}
  .contact-cta-wrap{justify-content:center;margin-top:10px}
  .phone-screen-wrap{border-radius:22px 22px 10px 10px}
  .contact-map-modal{padding:16px}
  .contact-map-dialog{padding:18px;border-radius:24px}
  .contact-map-header{flex-direction:column}
  .contact-map-close{width:100%}
  .footer-shell{border-radius:28px;justify-content:center;text-align:center}
  body::-webkit-scrollbar{width:6px}
}
@media (max-width:420px){
  .hero-content{padding-top:330px}
  .service-card h3{font-size:19px}
  .about-section{padding:58px 0}
  .about-photo{padding:14px}
  .about-photo img{width:min(100%,390px)}
  .about-card{padding:26px 18px 24px}
  .whatsapp-float{width:52px;height:52px;right:14px;bottom:14px}
  .whatsapp-float svg{width:40px;height:40px}
}
