/* =========================================================
   ადვოკატი ინგა კუპრავა — Header + Hero slider
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --navy-900:#081a2b;
  --navy-800:#0d2438;
  --navy-700:#123049;
  --navy-600:#1c4568;
  --navy-400:#3f6a8f;

  --gold-600:#a8811f;
  --gold-500:#c9a227;
  --gold-400:#dfbe57;
  --gold-100:#f3e7c4;

  --ivory:#fbf9f5;
  --ivory-2:#f3efe7;
  --white:#ffffff;

  --text:#14293c;
  --muted:#5b6f81;
  --line:#e4ddd0;

  --font-head:"Noto Serif Georgian",Georgia,"Times New Roman",serif;
  --font-body:"Noto Sans Georgian","Segoe UI",system-ui,sans-serif;

  --radius:14px;
  --shadow-sm:0 4px 14px rgba(8,26,43,.07);
  --shadow-md:0 14px 38px rgba(8,26,43,.12);
  --shadow-lg:0 30px 70px rgba(8,26,43,.20);

  --topbar-h:44px;
  --header-h:86px;
  --ease:cubic-bezier(.4,.14,.3,1);
}

/* ---------- Base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:clip}
body{
  margin:0;max-width:100%;overflow-x:clip;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.7;
  color:var(--text);
  background:var(--ivory);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none;margin:0;padding:0}
h1,h2,h3{font-family:var(--font-head);line-height:1.25;margin:0;font-weight:600}
button{font-family:inherit;cursor:pointer}

.container{
  width:min(1240px,100% - 48px);
  margin-inline:auto;
}

.ic{width:18px;height:18px;flex:none;color:inherit}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 24px;border-radius:10px;border:1px solid transparent;
  font-size:15px;font-weight:600;letter-spacing:.2px;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),
             background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease);
}
.btn--lg{padding:16px 32px;font-size:16px;border-radius:12px}
.btn__short{display:none}

.btn--gold{
  background:linear-gradient(135deg,var(--gold-400),var(--gold-600));
  color:var(--navy-900);
  box-shadow:0 8px 22px rgba(168,129,31,.28);
}
.btn--gold:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(168,129,31,.38)}

.btn--ghost{
  background:transparent;color:var(--navy-800);
  border-color:rgba(18,48,73,.22);
}
.btn--ghost:hover{
  background:var(--navy-800);color:var(--gold-100);
  border-color:var(--navy-800);transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.btn--ghost:hover .ic{transform:translateX(3px)}
.btn--ghost .ic{transition:transform .25s var(--ease)}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar{
  background:linear-gradient(90deg,var(--navy-900),var(--navy-700) 55%,var(--navy-800));
  color:#cfdbe6;
  font-size:13.5px;
  border-bottom:1px solid rgba(201,162,39,.25);
}
.topbar__inner{
  height:var(--topbar-h);
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.topbar__tag{
  margin:0;display:flex;align-items:center;gap:9px;
  color:var(--gold-100);font-weight:500;letter-spacing:.4px;
}
.topbar__tag .ic{color:var(--gold-400)}
.topbar__contacts{display:flex;align-items:center;gap:16px}
.topbar__link{
  display:inline-flex;align-items:center;gap:8px;
  color:#d8e2ea;transition:color .22s var(--ease);
}
.topbar__link .ic{color:var(--gold-400);width:16px;height:16px;transition:transform .22s var(--ease)}
.topbar__link:hover{color:var(--white)}
.topbar__link:hover .ic{transform:scale(1.12)}
.topbar__sep{width:1px;height:16px;background:rgba(255,255,255,.18)}

/* =========================================================
   HEADER
   ========================================================= */
.header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s var(--ease),background .3s var(--ease);
}
.header.is-stuck{box-shadow:0 10px 30px rgba(8,26,43,.10);background:rgba(255,255,255,.98)}
.header__inner{
  height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}

/* logo */
.logo{display:flex;align-items:center;gap:14px}
.logo__mark{
  width:52px;height:52px;flex:none;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,var(--navy-700),var(--navy-900));
  border:1px solid rgba(201,162,39,.45);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05),0 8px 20px rgba(8,26,43,.18);
  transition:transform .3s var(--ease);
}
.logo:hover .logo__mark{transform:rotate(-6deg)}
.logo__mark svg{width:28px;height:28px;color:var(--gold-400)}
.logo__text{display:flex;flex-direction:column;line-height:1.2}
.logo__text strong{
  font-family:var(--font-head);font-size:20px;font-weight:600;
  color:var(--navy-900);letter-spacing:.2px;
}
.logo__text em{
  font-style:normal;font-size:11px;font-weight:600;
  letter-spacing:3px;text-transform:uppercase;color:var(--gold-600);
}

/* nav */
.nav{display:flex;align-items:center;gap:34px}
.nav__list{display:flex;align-items:center;gap:30px}
.nav__link{
  position:relative;font-size:15.5px;font-weight:500;color:var(--navy-800);
  padding:6px 0;transition:color .22s var(--ease);
}
.nav__link::after{
  content:"";position:absolute;left:0;bottom:0;height:2px;width:0;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-400));
  transition:width .28s var(--ease);
}
.nav__link:hover{color:var(--gold-600)}
.nav__link:hover::after,.nav__link.is-active::after{width:100%}
.nav__link.is-active{color:var(--gold-600);font-weight:600}

/* mobile call button */
.call-btn{
  display:none;position:relative;
  width:42px;height:42px;flex:none;border-radius:50%;
  align-items:center;justify-content:center;
  background:linear-gradient(140deg,var(--gold-400),var(--gold-600));
  color:var(--navy-900);
  box-shadow:0 6px 16px rgba(168,129,31,.36);
  animation:callShake 2.6s var(--ease) infinite;
}
.call-btn svg{width:19px;height:19px;position:relative;z-index:2}
.call-btn__wave{
  position:absolute;inset:0;border-radius:50%;
  border:1.5px solid rgba(201,162,39,.65);
  animation:callWave 2.2s cubic-bezier(.2,.6,.4,1) infinite;
}
.call-btn__wave:nth-of-type(2){animation-delay:1.1s}

@keyframes callWave{
  0%{transform:scale(1);opacity:.8}
  70%{transform:scale(1.85);opacity:0}
  100%{transform:scale(1.85);opacity:0}
}
@keyframes callShake{
  0%,58%,100%{transform:rotate(0)}
  62%{transform:rotate(-14deg)}
  66%{transform:rotate(12deg)}
  70%{transform:rotate(-10deg)}
  74%{transform:rotate(8deg)}
  78%{transform:rotate(-5deg)}
  82%{transform:rotate(0)}
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.sect-head{max-width:720px;margin:0 auto 38px;text-align:center}
.sect-head__eyebrow{
  display:flex;align-items:center;justify-content:center;gap:14px;margin:0 0 16px;
  font-size:13px;font-weight:600;letter-spacing:2.6px;text-transform:uppercase;
  color:var(--gold-600);
}
.sect-head__eyebrow .line{width:40px;height:2px;flex:none;background:var(--gold-500);opacity:.55}
.sect-head__title{
  font-size:clamp(25px,2.7vw,34px);color:var(--navy-900);margin:0 0 12px;letter-spacing:-.4px;
}
.sect-head__title span{color:var(--gold-600)}
.sect-head__text{margin:0;color:var(--muted);font-size:15.5px;line-height:1.8}

/* =========================================================
   PRACTICE
   ========================================================= */
.practice{
  position:relative;
  padding:74px 0 80px;
  background:var(--white);
  border-top:1px solid var(--line);
}

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

.pcard{
  position:relative;
  display:flex;align-items:flex-start;gap:15px;
  padding:19px 20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--white);
  transition:transform .35s var(--ease),opacity .45s var(--ease),
             border-color .3s var(--ease),background .3s var(--ease),box-shadow .3s var(--ease);
}
.pcard:hover{
  transform:translateY(-3px);
  border-color:rgba(201,162,39,.5);
  background:#fffdf7;
  box-shadow:0 12px 26px rgba(8,26,43,.08);
}

.pcard__icon{
  width:44px;height:44px;flex:none;
  display:grid;place-items:center;border-radius:12px;
  background:rgba(201,162,39,.12);
  color:var(--gold-600);
  transition:background .3s var(--ease),color .3s var(--ease);
}
.pcard__icon svg{width:23px;height:23px}
.pcard:hover .pcard__icon{
  background:linear-gradient(140deg,var(--gold-400),var(--gold-600));
  color:var(--navy-900);
}

.pcard__body{flex:1 1 auto;min-width:0}
.pcard__title{
  font-size:16.5px;line-height:1.35;color:var(--navy-900);margin:0 0 5px;
  transition:color .3s var(--ease);
}
.pcard:hover .pcard__title{color:var(--gold-600)}
.pcard__text{margin:0;font-size:13.5px;line-height:1.65;color:var(--muted)}

.pcard__arrow{
  width:18px;height:18px;flex:none;margin-top:13px;color:var(--gold-600);
  opacity:0;transform:translateX(-6px);
  transition:opacity .3s var(--ease),transform .3s var(--ease);
}
.pcard:hover .pcard__arrow{opacity:1;transform:none}

/* reveal on scroll (only enabled by JS) */
.pcard.is-hidden{opacity:0;transform:translateY(18px)}

/* bottom CTA */
.practice__cta{
  margin-top:34px;padding:22px 28px;border-radius:16px;
  display:flex;align-items:center;justify-content:space-between;gap:22px;flex-wrap:wrap;
  background:linear-gradient(120deg,var(--navy-900),var(--navy-700));
  position:relative;overflow:hidden;
}
.practice__cta::after{
  content:"";position:absolute;right:-50px;top:-70px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,162,39,.20),transparent 65%);
}
.practice__cta > div{position:relative;z-index:2;max-width:620px}
.practice__cta h3{font-size:19px;color:var(--white);margin:0 0 4px}
.practice__cta p{margin:0;color:#aabbca;font-size:14px;line-height:1.65}
.practice__cta .btn{position:relative;z-index:2;flex:none;padding:12px 24px;font-size:14.5px}

/* =========================================================
   ABOUT
   ========================================================= */
.about{
  position:relative;
  padding:84px 0 90px;
  background:
    radial-gradient(760px 420px at 12% 0%,rgba(201,162,39,.09),transparent 62%),
    linear-gradient(180deg,var(--ivory) 0%,var(--ivory-2) 100%);
  border-top:1px solid var(--line);
}
.about__inner{
  display:grid;grid-template-columns:.88fr 1.12fr;
  align-items:center;gap:62px;
}

/* ----- media ----- */
.about__media{position:relative;padding:0 0 46px 14px}
.about__photo{
  position:relative;z-index:2;
  border-radius:22px;overflow:hidden;
  aspect-ratio:4/4.7;
  background:radial-gradient(circle at 50% 28%,var(--navy-700),var(--navy-900));
  box-shadow:0 26px 60px rgba(8,26,43,.20);
}
.about__photo img{
  width:100%;height:100%;object-fit:cover;object-position:52% 14%;
  transition:transform .8s var(--ease);
}
.about__media:hover .about__photo img{transform:scale(1.04)}

.about__frame{
  position:absolute;z-index:1;left:0;top:26px;bottom:20px;right:34px;
  border:1px solid rgba(201,162,39,.55);border-radius:22px;
  transform:translate(-14px,0);
}

.about__quote{
  position:absolute;z-index:3;right:-6px;bottom:0;
  max-width:275px;margin:0;
  padding:18px 20px 18px 22px;
  background:var(--white);
  border:1px solid var(--line);
  border-left:3px solid var(--gold-500);
  border-radius:14px;
  box-shadow:var(--shadow-md);
}
.about__quote-ic{
  width:22px;height:22px;color:var(--gold-400);
  display:block;margin-bottom:8px;
}
.about__quote blockquote{
  margin:0;font-family:var(--font-head);font-size:14.5px;line-height:1.65;
  color:var(--navy-800);
}

/* ----- content ----- */
.about__eyebrow{
  display:flex;align-items:center;gap:12px;margin:0 0 16px;
  font-size:13px;font-weight:600;letter-spacing:2.6px;text-transform:uppercase;
  color:var(--gold-600);
}
.about__eyebrow .line{
  width:46px;height:2px;flex:none;
  background:linear-gradient(90deg,var(--gold-500),transparent);
}
.about__title{
  font-size:clamp(25px,2.7vw,36px);color:var(--navy-900);
  margin:0 0 18px;letter-spacing:-.4px;
}
.about__title span{color:var(--gold-600)}
.about__lead{
  margin:0 0 14px;font-size:17px;line-height:1.8;color:var(--navy-700);font-weight:500;
}
.about__text{margin:0 0 24px;font-size:15.5px;line-height:1.85;color:var(--muted)}

.about__list{
  display:grid;grid-template-columns:1fr 1fr;gap:12px 24px;
  margin:0 0 28px;
}
.about__list li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14.5px;line-height:1.6;color:var(--navy-700);
}
.about__list svg{width:19px;height:19px;flex:none;margin-top:2px;color:var(--gold-600)}

.about__stats{
  display:flex;align-items:center;justify-content:space-between;
  margin:0 0 30px;
  padding:6px 0;
}
.stat{
  position:relative;flex:0 1 auto;min-width:0;
  display:flex;align-items:center;gap:12px;
  padding:0 20px;
}
.stat:first-child{padding-left:0}
.stat:last-child{padding-right:0}
.stat + .stat::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:1px;height:42px;
  background:linear-gradient(180deg,transparent,rgba(201,162,39,.55),transparent);
}

.stat__ic{
  width:27px;height:27px;flex:none;color:var(--gold-500);
  transition:transform .3s var(--ease),color .3s var(--ease);
}
.stat:hover .stat__ic{color:var(--gold-600);transform:translateY(-2px)}

.stat__body{display:flex;flex-direction:column;gap:1px;min-width:0}
.stat strong{
  font-family:var(--font-head);font-size:27px;line-height:1.1;letter-spacing:-.5px;
  color:var(--gold-600);
  background:linear-gradient(135deg,var(--gold-400),var(--gold-600));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
}
.stat__label{font-size:12px;line-height:1.45;color:var(--muted)}

.about__foot{display:flex;align-items:center;flex-wrap:wrap;gap:16px 24px}
.about__phone{
  display:inline-flex;align-items:center;gap:9px;
  font-size:15.5px;font-weight:600;color:var(--navy-800);
  transition:color .25s var(--ease);
}
.about__phone .ic{color:var(--gold-600)}
.about__phone:hover{color:var(--gold-600)}

/* =========================================================
   MOBILE BOTTOM BAR
   ========================================================= */
.mobilebar{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  box-shadow:0 -8px 28px rgba(8,26,43,.10);
  padding:8px 6px calc(8px + env(safe-area-inset-bottom));
}
.mobilebar__link{
  flex:1 1 0;min-width:0;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  padding:6px 2px;border-radius:12px;
  color:var(--navy-700);
  transition:color .25s var(--ease),background .25s var(--ease);
}
.mobilebar__link svg{width:22px;height:22px;transition:transform .25s var(--ease)}
.mobilebar__link span{
  font-size:11px;font-weight:600;letter-spacing:.1px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;
}
.mobilebar__link:active{background:var(--ivory-2)}
.mobilebar__link.is-active{color:var(--gold-600)}
.mobilebar__link.is-active svg{transform:translateY(-2px)}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;overflow:hidden;
  min-height:calc(100vh - var(--topbar-h) - var(--header-h));
  display:flex;align-items:center;
  padding:64px 0 76px;
  background:
    radial-gradient(900px 520px at 88% 12%,rgba(201,162,39,.13),transparent 62%),
    radial-gradient(760px 520px at 6% 88%,rgba(18,48,73,.10),transparent 60%),
    linear-gradient(180deg,var(--ivory) 0%,var(--ivory-2) 100%);
}
.hero__bg{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.hero__bg::before{
  content:"";position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(18,48,73,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(18,48,73,.05) 1px,transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(70% 60% at 50% 40%,#000,transparent 78%);
          mask-image:radial-gradient(70% 60% at 50% 40%,#000,transparent 78%);
  opacity:.65;
}
.hero__watermark{
  position:absolute;left:-90px;bottom:-110px;
  width:420px;height:420px;color:rgba(18,48,73,.045);
  transform:rotate(-12deg);
}

.hero__inner{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1.05fr .95fr;
  align-items:center;gap:70px;
}

/* ---------- Slider text ---------- */
.slider{position:relative}
.slide{display:none}
.slide.is-active{display:block}

.slide__eyebrow{
  display:flex;align-items:center;gap:12px;margin:0 0 18px;
  font-size:13px;font-weight:600;letter-spacing:2.6px;text-transform:uppercase;
  color:var(--gold-600);
}
.slide__eyebrow .line{
  width:46px;height:2px;flex:none;
  background:linear-gradient(90deg,var(--gold-500),transparent);
}
.slide__title{
  font-size:clamp(32px,4.1vw,54px);
  color:var(--navy-900);margin:0 0 20px;letter-spacing:-.5px;
}
.slide__title span{color:var(--gold-600)}
.slide__text{
  margin:0;max-width:560px;font-size:17px;color:var(--muted);line-height:1.85;
}

/* entry animation (transition based — resting state is always visible) */
.slide__eyebrow,
.slide__title,
.slide__text{
  opacity:1;transform:none;
  transition:opacity .65s var(--ease),transform .65s var(--ease);
}
.slide__title{transition-delay:.09s}
.slide__text{transition-delay:.18s}

.slide.is-entering .slide__eyebrow,
.slide.is-entering .slide__title,
.slide.is-entering .slide__text{
  opacity:0;transform:translateY(22px);
  transition:none;
}

/* ---------- Hero actions ---------- */
.hero__actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:34px}

.hero__trust{
  display:flex;flex-wrap:wrap;gap:14px 30px;margin-top:30px;
  padding-top:24px;border-top:1px solid var(--line);
}
.hero__trust p{
  margin:0;display:flex;align-items:center;gap:9px;
  font-size:14.5px;font-weight:500;color:var(--navy-700);
}
.hero__trust .ic{color:var(--gold-600);width:20px;height:20px}

/* ---------- Slider nav ---------- */
.slider__nav{display:flex;align-items:center;gap:14px;margin-top:34px}
.slider__arrow{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--white);border:1px solid var(--line);
  color:var(--navy-700);box-shadow:var(--shadow-sm);
  transition:all .25s var(--ease);
}
.slider__arrow svg{width:19px;height:19px}
.slider__arrow--prev svg{transform:rotate(180deg)}
.slider__arrow:hover{
  background:var(--navy-800);color:var(--gold-400);
  border-color:var(--navy-800);transform:translateY(-2px);
}
.slider__dots{display:flex;align-items:center;gap:9px;margin-inline:6px}
.dot{
  width:9px;height:9px;padding:0;border:none;border-radius:50%;
  background:rgba(18,48,73,.22);transition:all .3s var(--ease);
}
.dot:hover{background:rgba(18,48,73,.40)}
.dot.is-active{
  width:30px;border-radius:6px;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-400));
}

/* =========================================================
   PHOTO
   ========================================================= */
.hero__media{display:flex;justify-content:center}
.photo{
  position:relative;
  width:min(470px,100%);
  aspect-ratio:1;
  display:grid;place-items:center;
}
.photo__frame{
  position:relative;z-index:2;
  width:86%;height:86%;border-radius:50%;
  overflow:hidden;
  background:radial-gradient(circle at 50% 30%,var(--navy-700),var(--navy-900));
  border:8px solid var(--white);
  box-shadow:var(--shadow-lg),0 0 0 2px rgba(201,162,39,.55);
  animation:float 7s ease-in-out infinite;
}
.photo__frame img{
  width:100%;height:100%;
  object-fit:cover;object-position:52% 12%;
  transition:transform .8s var(--ease);
}
.photo:hover .photo__frame img{transform:scale(1.05)}

/* outer soft ring */
.photo__ring{
  position:absolute;inset:0;border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%,rgba(201,162,39,.16),transparent 62%);
  border:1px solid rgba(201,162,39,.30);
}
/* rotating dashed ring */
.photo__dash{
  position:absolute;inset:5%;border-radius:50%;
  border:2px dashed rgba(18,48,73,.18);
  animation:spin 46s linear infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}
@keyframes spin{to{transform:rotate(360deg)}}

/* badge */
.photo__badge{
  position:absolute;z-index:3;left:-6px;bottom:10%;
  display:flex;align-items:center;gap:12px;
  padding:14px 20px;border-radius:14px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
  animation:float 7s ease-in-out infinite reverse;
}
.photo__badge .ic{width:26px;height:26px;color:var(--gold-600)}
.photo__badge span{display:flex;flex-direction:column;line-height:1.3}
.photo__badge strong{
  font-family:var(--font-head);font-size:17px;color:var(--navy-900);
}
.photo__badge span{font-size:12.5px;color:var(--muted)}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1100px){
  .nav__list{gap:22px}
  .nav{gap:24px}
  .hero__inner{gap:46px}
  .pgrid{gap:12px}
  .pcard{padding:17px 16px;gap:13px}
  .pcard__title{font-size:15.5px}
  .pcard__text{font-size:13px}
  .about__inner{gap:44px}
  .about__list{grid-template-columns:1fr}
}

@media (max-width:980px){
  .nav{display:none}
  .call-btn{display:flex}
  .mobilebar{display:flex}
  body{padding-bottom:78px}

  .hero{min-height:0;padding:56px 0 70px}
  .hero__inner{grid-template-columns:1fr;gap:56px;text-align:center}
  .slide__eyebrow{justify-content:center}
  .slide__text{margin-inline:auto}
  .hero__actions,.hero__trust,.slider__nav{justify-content:center}
  .hero__trust{border-top:1px solid var(--line);justify-content:center}
  .hero__media{order:-1}
  .photo{width:min(400px,86%)}
  .hero__watermark{display:none}

  .practice{padding:62px 0 68px}
  .pgrid{grid-template-columns:repeat(2,1fr);gap:12px}
  .sect-head{margin-bottom:32px}
  .practice__cta{padding:24px 24px;text-align:center;justify-content:center}
  .practice__cta > div{max-width:none}

  .about{padding:62px 0 68px}
  .about__inner{grid-template-columns:1fr;gap:46px}
  .about__media{max-width:440px;margin-inline:auto;width:100%}
  .about__list{grid-template-columns:1fr 1fr}
}

@media (max-width:720px){
  .container{width:min(1240px,100% - 32px)}
  .topbar{font-size:12px}
  .topbar__inner{gap:12px}
  .topbar__tag{gap:7px;letter-spacing:.2px}
  .topbar__tag,.topbar__link span{white-space:nowrap}
  .topbar__link--phone,.topbar__sep{display:none}
  .topbar__contacts{gap:10px}
  :root{--topbar-h:42px;--header-h:76px}
  .header__inner{height:var(--header-h)}
  .logo__mark{width:46px;height:46px;border-radius:12px}
  .logo__mark svg{width:24px;height:24px}
  .logo__text strong{font-size:17.5px}
  .logo__text em{font-size:10px;letter-spacing:2.4px}
  .hero__actions{flex-wrap:nowrap;gap:10px}
  .hero__actions .btn{flex:1 1 0;min-width:0}
  .btn--lg{padding:14px 12px;font-size:14.5px;gap:8px}
  .btn--lg .ic{width:17px;height:17px}
  .btn__long{display:none}
  .btn__short{display:inline}
  .slide__text{font-size:16px}
  .photo__badge{padding:11px 15px;left:-2px}
  .photo__badge strong{font-size:15px}

  .practice{padding:48px 0 54px}
  .sect-head{margin-bottom:24px}
  .sect-head__text{font-size:14.5px}
  .sect-head__eyebrow{font-size:11.5px;letter-spacing:2px;margin-bottom:12px}
  .sect-head__eyebrow .line{width:24px}

  .pgrid{grid-template-columns:1fr;gap:9px}
  .pcard{padding:13px 15px;gap:12px;align-items:center;border-radius:12px}
  .pcard:hover{transform:none}
  .pcard__icon{width:38px;height:38px;border-radius:10px}
  .pcard__icon svg{width:20px;height:20px}
  .pcard__title{font-size:14.5px;margin:0}
  .pcard__text{display:none}
  .pcard__arrow{opacity:.4;transform:none;margin-top:0;width:16px;height:16px}

  .practice__cta{padding:20px 18px;margin-top:22px;border-radius:14px}
  .practice__cta h3{font-size:17px}
  .practice__cta p{font-size:13.5px}
  .practice__cta .btn{width:100%}

  .about{padding:48px 0 54px}
  .about__inner{gap:38px}
  .about__media{padding:0 0 40px 0;max-width:340px}
  .about__photo{aspect-ratio:4/4.4;border-radius:18px}
  .about__frame{left:-10px;right:26px;top:20px;bottom:16px;transform:none;border-radius:18px}
  .about__quote{right:-4px;max-width:245px;padding:14px 16px;border-radius:12px}
  .about__quote blockquote{font-size:13.5px}
  .about__quote-ic{width:19px;height:19px;margin-bottom:6px}
  .about__eyebrow{font-size:11.5px;letter-spacing:2px;margin-bottom:12px}
  .about__eyebrow .line{width:28px}
  .about__lead{font-size:15.5px}
  .about__text{font-size:14.5px;margin-bottom:20px}
  .about__list{grid-template-columns:1fr;gap:10px;margin-bottom:22px}
  .about__list li{font-size:14px}
  .about__stats{margin-bottom:24px;padding:4px 0}
  .stat{flex:1 1 0;flex-direction:column;text-align:center;gap:5px;padding:0 8px}
  .stat + .stat::before{height:54px}
  .stat__ic{width:22px;height:22px}
  .stat strong{font-size:22px}
  .stat__label{font-size:11px}
  .about__foot{gap:14px}
  .about__foot .btn{width:100%}
  .about__phone{width:100%;justify-content:center}
}

@media (max-width:400px){
  .topbar{font-size:10.5px}
  .topbar__inner{gap:8px}
  .topbar__tag .ic{width:14px;height:14px}
  .topbar__link .ic{width:14px;height:14px}
  .mobilebar__link span{font-size:10.5px}
}

/* ---------- Accessibility ---------- */
:focus-visible{outline:2px solid var(--gold-600);outline-offset:3px;border-radius:6px}

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