/* ==========================================================================
   Elite Dental — La Vista, NE
   Palette taken from the practice's own brand assets:
     teal   #00ab98 / #3faa9b   leaf #98c952   orange #f58d00
     charcoal #373737          logo: white serif wordmark + wave
   ========================================================================== */

:root{
  --teal:        #00ab98;
  --teal-deep:   #00897a;
  --teal-dark:   #006f63;
  --teal-ink:    #08554c;
  --leaf:        #98c952;
  --leaf-deep:   #7cb03a;
  --orange:      #f58d00;

  --charcoal:    #373737;
  --charcoal-2:  #2b2b2b;
  --charcoal-3:  #1f1f1f;

  --ink:         #2c3735;
  --body:        #6a7472;
  --muted:       #9aa5a3;
  --line:        #e3ebe9;
  --mint:        #f0f9f7;
  --mint-2:      #e2f2ef;
  --white:       #ffffff;

  --container:   1200px;
  --radius:      10px;
  --shadow:      0 8px 28px rgba(44,55,53,.08);
  --shadow-lg:   0 18px 46px rgba(44,55,53,.13);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:104px; }

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size:15px;
  line-height:1.68;
  color:var(--body);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
p{ margin:0; }
address{ font-style:normal; }
table{ border-collapse:collapse; width:100%; }

h1,h2,h3,h4,h5{ margin:0; color:var(--ink); font-weight:600; line-height:1.25; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--teal-deep); color:#fff; padding:12px 20px; border-radius:0 0 6px 0;
  font-size:14px; font-weight:600;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:3px solid var(--teal); outline-offset:2px; border-radius:3px; }

/* ---- icons ---- */
.ico{
  width:19px; height:19px; flex:none;
  fill:none; stroke:currentColor; stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.ico--xs{ width:14px; height:14px; stroke-width:2; }
.ico--md{ width:27px; height:27px; stroke-width:1.5; }
.ico--g{ fill:currentColor; stroke:none; width:18px; height:18px; }

/* ---- type ---- */
.eyebrow{
  display:block; font-size:11.5px; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase; color:var(--teal-deep);
  margin-bottom:14px;
}
.h2{
  font-family:'Cormorant Garamond','Georgia',serif;
  font-size:clamp(28px,3.2vw,40px); font-weight:600; line-height:1.14;
  letter-spacing:.004em; color:var(--ink);
}
.h2--light{ color:#fff; }
.stars{ color:var(--orange); letter-spacing:2px; font-size:14px; }

.sec-head{ max-width:700px; margin:0 auto 42px; text-align:center; }
.sec-head__lead{ margin-top:14px; font-size:15px; }
.sec-head__lead strong{ color:var(--ink); font-weight:600; }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px; border-radius:6px; border:1.5px solid transparent;
  font-size:14px; font-weight:600; letter-spacing:.01em; text-align:center;
  cursor:pointer; transition:background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn--solid{ background:var(--teal-deep); color:#fff; }
.btn--solid:hover{ background:var(--teal-dark); transform:translateY(-2px); box-shadow:0 12px 24px rgba(0,137,122,.28); }
.btn--ghost{ background:#fff; color:var(--teal-ink); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--teal); color:var(--teal-deep); transform:translateY(-2px); }
.btn--outline{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn--outline:hover{ border-color:var(--teal); color:var(--teal-deep); }
.btn--light{ background:#fff; color:var(--teal-ink); }
.btn--light:hover{ background:var(--mint-2); transform:translateY(-2px); box-shadow:0 12px 24px rgba(0,0,0,.16); }
.btn--outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.45); }
.btn--outline-light:hover{ background:rgba(255,255,255,.14); border-color:#fff; }
.btn--block{ width:100%; }
.btn--block + .btn--block{ margin-top:10px; }

.btn-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 20px; border-radius:999px;
  background:var(--teal-deep); color:#fff;
  font-size:13px; font-weight:600; white-space:nowrap;
  transition:background .2s, transform .2s, box-shadow .2s;
}
.btn-pill:hover{ background:var(--teal-dark); transform:translateY(-1px); box-shadow:0 8px 18px rgba(0,137,122,.3); }

.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:600; color:var(--teal-deep);
  transition:gap .2s, color .2s;
}
.link-arrow:hover{ gap:12px; color:var(--teal-dark); }
.link-arrow--light{ color:#fff; }
.link-arrow--light:hover{ color:var(--leaf); }

/* ==========================================================================
   TOP BAR + HEADER
   ========================================================================== */
.topbar{ background:var(--charcoal); color:#c8d0ce; font-size:12.5px; }
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; height:40px; }
.topbar__item{ display:inline-flex; align-items:center; gap:8px; transition:color .2s; }
a.topbar__item:hover{ color:#fff; }
.topbar__right{ display:flex; align-items:center; gap:24px; }
.topbar__status{ color:var(--leaf); font-weight:600; }
.topbar__phone{ color:#fff; font-weight:600; }

.header{ position:sticky; top:0; z-index:60; background:#fff; transition:box-shadow .25s; }
.header.is-stuck{ box-shadow:0 2px 18px rgba(44,55,53,.11); }
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; height:74px; }

.logo{ display:flex; flex-direction:column; align-items:flex-start; gap:2px; }
.logo img{ width:186px; height:auto; }
.logo__sub{
  align-self:flex-end;
  font-size:9.5px; font-weight:600; letter-spacing:.32em;
  text-transform:uppercase; color:var(--teal-deep);
}
.logo--light .logo__sub{ color:var(--leaf); }

.nav{ display:flex; align-items:center; gap:28px; }
.nav__list{ display:flex; align-items:center; gap:24px; }
.nav__list > li > a{
  position:relative; display:block; padding:26px 0;
  font-size:13.5px; font-weight:500; color:var(--ink);
  transition:color .2s;
}
.nav__list > li > a:hover{ color:var(--teal-deep); }
.nav__list > li > a::after{
  content:''; position:absolute; left:0; right:0; bottom:18px;
  height:2px; background:var(--teal); border-radius:2px;
  transform:scaleX(0); transition:transform .25s;
}
.nav__list > li > a.is-active{ color:var(--teal-deep); }
.nav__list > li > a.is-active::after{ transform:scaleX(1); }

.nav-toggle{ display:none; width:44px; height:38px; padding:9px 10px; background:none; border:0; cursor:pointer; }
.nav-toggle span{ display:block; height:2px; background:var(--charcoal); border-radius:2px; transition:transform .25s, opacity .2s; }
.nav-toggle span + span{ margin-top:5px; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  display:grid; grid-template-columns:1.02fr 1fr;
  background:linear-gradient(155deg,#ffffff 0%,var(--mint) 62%,var(--mint-2) 100%);
}
.hero__content{
  padding:64px 58px 60px max(24px,calc((100vw - var(--container)) / 2 + 24px));
  align-self:center;
}
.hero__title{
  font-family:'Cormorant Garamond','Georgia',serif;
  font-size:clamp(38px,4.7vw,60px); font-weight:600; line-height:1.06;
  letter-spacing:.004em; color:var(--ink);
}
.hero__title em{ font-style:italic; color:var(--teal-deep); }
.hero__sub{ margin-top:22px; font-size:15px; line-height:1.78; max-width:490px; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }

.usp{ display:flex; flex-wrap:wrap; gap:14px 30px; margin-top:38px; padding-top:30px; border-top:1px solid rgba(0,137,122,.16); }
.usp li{ display:flex; align-items:center; gap:12px; font-size:12.5px; font-weight:600; line-height:1.35; color:var(--ink); }
.usp__icon{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; flex:none; border-radius:50%;
  background:#fff; border:1.5px solid rgba(0,171,152,.28); color:var(--teal-deep);
  box-shadow:0 4px 12px rgba(0,137,122,.09);
}

.hero__media{ position:relative; min-height:440px; background:var(--mint-2); }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center 28%; }
.hero__media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(100deg,rgba(240,249,247,.9) 0%,rgba(240,249,247,.16) 26%,transparent 52%);
  pointer-events:none;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.strip{ background:var(--charcoal); color:#fff; }
.strip__inner{ display:grid; grid-template-columns:repeat(5,1fr); }
.strip__cell{
  display:flex; flex-direction:column; align-items:center; gap:9px;
  padding:28px 16px; text-align:center;
}
.strip__cell + .strip__cell{ border-left:1px solid rgba(255,255,255,.11); }
.strip__cell .ico{ color:var(--leaf); }
.strip__cell h4{ font-size:13px; font-weight:600; color:#fff; }
.strip__cell p{ font-size:11.5px; color:#a9b3b1; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ padding:76px 0 78px; }
.about__inner{ display:grid; grid-template-columns:1fr 1.08fr; gap:56px; align-items:center; }

.about__media{ position:relative; }
.about__media img{
  width:100%; border-radius:var(--radius); box-shadow:var(--shadow-lg);
  aspect-ratio:5/3.6; object-fit:cover;
}
.about__badge{
  position:absolute; right:-14px; bottom:-22px;
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-lg);
  padding:16px 22px; text-align:center; border-top:3px solid var(--leaf);
}
.about__badge strong{ display:block; font-family:'Cormorant Garamond',serif; font-size:34px; font-weight:600; color:var(--ink); line-height:1; }
.about__badge .stars{ display:block; margin:5px 0 3px; }
.about__badge em{ font-style:normal; font-size:11px; font-weight:500; color:var(--body); }

.about__body .h2{ margin-bottom:18px; }
.about__body > p + p{ margin-top:14px; }

.checklist{ display:grid; grid-template-columns:1fr 1fr; gap:9px 18px; margin:24px 0 26px; }
.checklist li{ display:flex; align-items:center; gap:9px; font-size:13.5px; font-weight:500; color:var(--ink); }
.checklist .ico{ color:var(--leaf-deep); stroke-width:1.7; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services{ background:var(--mint); padding:76px 0 80px; }
.svc-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.svc{
  background:#fff; border:1px solid #e2efec; border-radius:var(--radius);
  padding:26px 24px 28px;
  transition:transform .24s, box-shadow .24s, border-color .24s;
}
.svc:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:#cbe6e0; }
.svc__icon{
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:12px; margin-bottom:16px;
  background:var(--mint-2); color:var(--teal-deep);
}
.svc h3{ font-size:15.5px; margin-bottom:8px; }
.svc p{ font-size:13.5px; line-height:1.62; }

.svc--cta{ background:var(--teal-deep); border-color:var(--teal-deep); color:#dff3f0; }
.svc--cta:hover{ background:var(--teal-dark); border-color:var(--teal-dark); }
.svc--cta h3{ color:#fff; }
.svc--cta p{ color:#cceae5; margin-bottom:14px; }

/* ==========================================================================
   BAND
   ========================================================================== */
.band{
  position:relative;
  background:linear-gradient(rgba(29,64,33,.86),rgba(29,64,33,.86)), url('images/cta-bg.jpg') center/cover no-repeat;
  color:#dfeadc;
}
.band__inner{
  display:grid; grid-template-columns:1.5fr 1fr; gap:40px; align-items:center;
  padding-top:52px; padding-bottom:52px;
}
.band .h2{ margin-bottom:12px; }
.band p{ font-size:14.5px; max-width:560px; }
.band__actions{ display:flex; flex-direction:column; gap:12px; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team{ padding:78px 0 80px; }

.lead-doc{
  display:grid; grid-template-columns:280px 1fr; gap:38px; align-items:center;
  background:var(--mint); border-radius:var(--radius); padding:34px;
  margin-bottom:36px;
}
.lead-doc__photo img{
  width:100%; aspect-ratio:1/1; object-fit:cover; object-position:center 22%;
  border-radius:var(--radius); box-shadow:var(--shadow);
}
.lead-doc__body h3{ font-family:'Cormorant Garamond',serif; font-size:29px; font-weight:600; }
.lead-doc__body p{ font-size:14px; margin-top:12px; }
.role{
  display:block; margin-top:4px;
  font-size:11.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--teal-deep);
}
.tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.tags li{
  padding:6px 13px; border-radius:999px;
  background:#fff; border:1px solid var(--line);
  font-size:11.5px; font-weight:500; color:var(--ink);
}

.team__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.member{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; text-align:center;
  transition:transform .24s, box-shadow .24s;
}
.member:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.member__photo{ width:118px; margin:0 auto 16px; }
.member__photo img{
  width:118px; height:118px; border-radius:50%; object-fit:cover;
  border:3px solid var(--mint-2);
}
.member h3{ font-size:19px; font-family:'Cormorant Garamond',serif; font-weight:600; }
.member p{ font-size:13.5px; margin-top:12px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials{ background:var(--charcoal); padding:76px 0 78px; }
.testimonials .eyebrow{ color:var(--leaf); }
.testimonials .sec-head__lead{ color:#b4bebc; }
.testimonials .sec-head__lead strong{ color:#fff; }

.tst-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  align-items:start;
}
.tst{
  position:relative; margin:0;
  background:#404040; border:1px solid rgba(255,255,255,.09); border-radius:var(--radius);
  padding:26px 26px 24px;
  transition:transform .24s, background .24s;
}
.tst:hover{ transform:translateY(-4px); background:#474747; }
.tst--wide{ grid-column:span 2; }
.tst__mark{
  width:34px; height:34px; fill:rgba(152,201,82,.26); stroke:none;
  position:absolute; top:20px; right:22px;
}
.tst .stars{ display:block; margin-bottom:12px; }
.tst p{ font-size:14px; line-height:1.72; color:#dfe4e3; position:relative; z-index:1; }
.tst cite{
  display:flex; align-items:center; gap:11px; margin-top:18px;
  font-style:normal; font-size:13px; font-weight:600; color:#fff;
}
.avatar{
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%; flex:none;
  background:var(--teal-deep); color:#fff; font-size:13px; font-weight:700;
}
.tst__actions{ display:flex; justify-content:center; margin-top:34px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ padding:78px 0 80px; }
.faq__inner{ display:grid; grid-template-columns:.85fr 1.15fr; gap:52px; align-items:start; }
.faq__intro .h2{ margin-bottom:14px; }
.faq__intro > p{ font-size:14.5px; }
.faq__intro a{ color:var(--teal-deep); font-weight:600; }

.faq__card{
  margin-top:28px; padding:26px;
  background:var(--mint); border:1px solid var(--mint-2); border-radius:var(--radius);
}
.faq__card .ico{ color:var(--teal-deep); margin-bottom:12px; }
.faq__card h3{ font-size:17px; margin-bottom:8px; }
.faq__card p{ font-size:13.5px; margin-bottom:18px; }

.accordion{ display:grid; gap:10px; }
.acc{ border:1px solid var(--line); border-radius:8px; background:#fff; overflow:hidden; transition:border-color .2s, box-shadow .2s; }
.acc.is-open{ border-color:var(--mint-2); box-shadow:var(--shadow); }
.acc__head{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  width:100%; padding:17px 20px; text-align:left;
  background:none; border:0; cursor:pointer;
  font-family:inherit; font-size:14.5px; font-weight:600; color:var(--ink);
  transition:color .2s;
}
.acc__head:hover{ color:var(--teal-deep); }
.acc__icon{ color:var(--teal-deep); transition:transform .28s; }
.acc.is-open .acc__icon{ transform:rotate(45deg); }
.acc__panel{ max-height:0; overflow:hidden; transition:max-height .32s ease; }
.acc__panel p{ padding:0 20px 20px; font-size:14px; line-height:1.72; }
.acc__panel a{ color:var(--teal-deep); font-weight:600; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ background:var(--mint); padding:76px 0 80px; }
.contact__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.info-card{ background:#fff; border:1px solid #e2efec; border-radius:var(--radius); padding:28px 26px 26px; }
.info-card h3{ display:flex; align-items:center; gap:10px; font-size:17px; margin-bottom:18px; }
.info-card h3 .ico{ color:var(--teal-deep); }
.info-card__lead{ font-size:13.5px; margin-bottom:18px; }
.info-card__note{ margin-top:14px; font-size:12px; color:var(--muted); }

.hours th{ text-align:left; font-weight:600; color:var(--ink); font-size:13.5px; padding:6px 0; border-bottom:1px solid var(--line); }
.hours td{ text-align:right; font-size:13px; padding:6px 0; border-bottom:1px solid var(--line); white-space:nowrap; }
.hours tr:last-child th,.hours tr:last-child td{ border-bottom:0; }
.hours .is-closed th,.hours .is-closed td{ color:var(--muted); }

.contact-lines{ display:grid; gap:14px; margin-bottom:20px; }
.contact-lines li{ display:flex; flex-direction:column; gap:3px; }
.contact-lines span{ font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.contact-lines strong{ font-size:13.5px; font-weight:600; color:var(--ink); line-height:1.55; }
.contact-lines a:hover{ color:var(--teal-deep); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:var(--charcoal-2); color:#a9b3b1; font-size:13px; }
.footer__inner{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.3fr; gap:44px; padding-top:56px; padding-bottom:48px; }
.footer__brand img{ width:180px; height:auto; }
.footer__brand > p{ margin-top:18px; font-size:13px; line-height:1.7; max-width:330px; }

.footer__col h5,
.footer__col--contact h5{ font-size:14px; font-weight:600; color:#fff; margin-bottom:16px; }
.footer__col ul{ display:grid; gap:9px; }
.footer__col a{ transition:color .2s; }
.footer__col a:hover{ color:var(--leaf); }

.footer__contact{ display:grid; gap:13px; }
.footer__contact li{ display:flex; align-items:flex-start; gap:10px; line-height:1.62; }
.footer__contact .ico{ margin-top:4px; color:var(--leaf); }
.footer__contact small{ color:#8a9391; }
.footer__contact a:hover{ color:var(--leaf); }

.social{ display:flex; gap:12px; margin-top:20px; }
.social a{
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.08); color:#c8d0ce;
  transition:background .2s, color .2s, transform .2s;
}
.social svg{ width:16px; height:16px; }
.social a:hover{ background:var(--teal-deep); color:#fff; transform:translateY(-2px); }

.footer__bottom{ background:var(--charcoal-3); }
.footer__bottom-inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding-top:16px; padding-bottom:16px; font-size:12px; color:#8a9391;
}
.footer__bottom a:hover{ color:var(--leaf); }

/* ---- back to top ---- */
.to-top{
  position:fixed; right:22px; bottom:22px; z-index:70;
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background:var(--teal-deep); color:#fff;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s, transform .25s, visibility .25s, background .2s;
  box-shadow:0 8px 20px rgba(0,137,122,.34);
}
.to-top .ico{ transform:rotate(-90deg); }
.to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ background:var(--teal-dark); }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(20px); transition:opacity .65s ease, transform .65s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1140px){
  .svc-grid{ grid-template-columns:repeat(3,1fr); }
  .footer__inner{ grid-template-columns:1.4fr 1fr 1.2fr; }
  .footer__col--contact{ grid-column:span 3; }
}

@media (max-width:1024px){
  .about__inner{ grid-template-columns:1fr; gap:44px; }
  .about__badge{ right:16px; bottom:-20px; }
  .checklist{ grid-template-columns:repeat(2,1fr); }
  .faq__inner{ grid-template-columns:1fr; gap:36px; }
  .lead-doc{ grid-template-columns:220px 1fr; gap:28px; }
  .tst-grid{ grid-template-columns:repeat(2,1fr); }
  .tst--wide{ grid-column:span 2; }
  .strip__inner{ grid-template-columns:repeat(3,1fr); }
  .strip__cell:nth-child(3n+1){ border-left:0; }
  .strip__cell:nth-child(n+4){ border-top:1px solid rgba(255,255,255,.11); }
}

@media (max-width:940px){
  html{ scroll-padding-top:80px; }
  .nav-toggle{ display:block; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:#fff; border-top:1px solid var(--line);
    box-shadow:0 16px 30px rgba(44,55,53,.14);
    padding:8px 24px 22px; display:none;
  }
  .nav.is-open{ display:flex; }
  .nav__list{ flex-direction:column; align-items:stretch; gap:0; }
  .nav__list > li > a{ padding:14px 0; border-bottom:1px solid var(--line); font-size:14.5px; }
  .nav__list > li > a::after{ display:none; }
  .nav__cta{ margin-top:18px; justify-content:center; }

  .hero{ grid-template-columns:1fr; }
  .hero__content{ padding:46px 24px 44px; order:2; }
  .hero__media{ order:1; min-height:300px; max-height:46vh; }
  .hero__media::after{ background:linear-gradient(0deg,rgba(240,249,247,.85) 0%,transparent 42%); }

  .contact__grid{ grid-template-columns:1fr 1fr; }
  .contact__grid .info-card:last-child{ grid-column:span 2; }
  .team__grid{ grid-template-columns:1fr 1fr; }
  .band__inner{ grid-template-columns:1fr; gap:24px; }
  .band__actions{ flex-direction:row; flex-wrap:wrap; }
}

@media (max-width:760px){
  .topbar__inner{ height:auto; flex-direction:column; align-items:flex-start; gap:4px; padding-top:9px; padding-bottom:9px; }
  .topbar__right{ gap:16px; }
  .svc-grid{ grid-template-columns:1fr 1fr; }
  .tst-grid{ grid-template-columns:1fr; }
  .tst--wide{ grid-column:span 1; }
  .strip__inner{ grid-template-columns:repeat(2,1fr); }
  .strip__cell{ border-left:0 !important; border-top:1px solid rgba(255,255,255,.11); }
  .strip__cell:nth-child(-n+2){ border-top:0; }
  .lead-doc{ grid-template-columns:1fr; text-align:center; padding:26px; }
  .lead-doc__photo{ max-width:200px; margin:0 auto; }
  .tags{ justify-content:center; }
  .team__grid{ grid-template-columns:1fr; }
  .footer__inner{ grid-template-columns:1fr 1fr; gap:32px; }
  .footer__col--contact{ grid-column:span 2; }
  .footer__bottom-inner{ flex-direction:column; text-align:center; gap:6px; }
}

@media (max-width:560px){
  .about{ padding:52px 0 56px; }
  .services,.contact,.testimonials,.faq,.team{ padding:52px 0 56px; }
  .checklist{ grid-template-columns:1fr; }
  .svc-grid{ grid-template-columns:1fr; }
  .contact__grid{ grid-template-columns:1fr; }
  .contact__grid .info-card:last-child{ grid-column:span 1; }
  .footer__inner{ grid-template-columns:1fr; }
  .footer__col--contact{ grid-column:span 1; }
  .usp{ gap:14px 20px; }
  .about__badge{ right:auto; left:16px; bottom:-18px; padding:12px 18px; }
  .logo img{ width:154px; }
  .to-top{ right:14px; bottom:14px; }
}
