:root{
  --dark:#211813;
  --brown:#46372f;
  --gold:#8f5a14;
  --gold-accent:#c9963e;
  --gold-light:#f4dfbd;
  --cream:#fbf7ef;
  --white:#fff;
  --text:#221a16;
  --muted:#5d524b;
  --border:#e4d4bf;
  --green:#0b6f35;
  --shadow:0 22px 55px rgba(33,24,19,.10);
}

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

html{scroll-behavior:smooth}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,Helvetica,sans-serif;
  background:linear-gradient(180deg,#fffaf3 0%,#fbf7ef 100%);
  color:var(--text);
  line-height:1.58;
  font-size:16px;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block;height:auto}

a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline:3px solid #0b5fff;
  outline-offset:3px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:var(--dark);
  color:white;
  padding:10px 14px;
  border-radius:8px;
  z-index:999;
}

.skip-link:focus{left:12px}

.container{width:min(1120px,92%);margin:auto}

.topbar{
  background:var(--dark);
  color:white;
  font-size:13px;
  padding:8px 0;
}

.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
}

header{
  background:rgba(255,255,255,.97);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 8px 22px rgba(33,24,19,.07);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;
  font-size:15px;
  line-height:1.2;
  flex:0 0 300px;
  min-width:0;
}

.brand picture,
.brand img{
  width:72px;
  aspect-ratio:1134/662;
  object-fit:cover;
  border-radius:13px;
  border:1px solid var(--border);
  flex:0 0 auto;
}

.brand picture{
  display:block;
  overflow:hidden;
}

.brand picture img{
  width:100%;
  height:100%;
  border:0;
  border-radius:0;
}

.brand span{min-width:0}

.brand small{
  display:block;
  color:var(--muted);
  font-weight:700;
  margin-top:2px;
}

.menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:13px;
  color:#514841;
  font-size:13px;
  flex:1;
}

.menu a:not(.btn):hover,
footer a:hover,
.topbar a:hover{text-decoration:underline}

.nav-toggle,
.mobile-nav summary{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--border);
  border-radius:999px;
  background:white;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.nav-toggle span,
.mobile-nav summary span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--brown);
  transition:.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1),
.mobile-nav[open] summary span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2),
.mobile-nav[open] summary span:nth-child(2){
  opacity:0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3),
.mobile-nav[open] summary span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-nav{
  display:none;
}

.mobile-nav summary{
  list-style:none;
}

.mobile-nav summary::-webkit-details-marker{
  display:none;
}

.mobile-menu{
  display:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:13px 22px;
  font-weight:900;
  font-size:14px;
  transition:.2s;
  white-space:nowrap;
  min-height:46px;
}

.wa-icon{
  width:20px;
  height:20px;
  object-fit:contain;
  flex:0 0 auto;
}

.wa-icon-large{
  width:34px;
  height:34px;
}

.wa-inline-icon{
  width:20px;
  height:20px;
  object-fit:contain;
  display:inline-block;
  vertical-align:-4px;
  margin-right:6px;
}

.mobile-call.btn{display:none}

.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--brown);color:white}
.btn-gold{background:linear-gradient(135deg,var(--gold-accent),#e3b96f);color:#24170b}
.btn-outline{background:white;border:1px solid var(--border);color:var(--text)}
.btn-green{background:var(--green);color:white}

.btn-green .wa-icon{
  filter:brightness(0) invert(1);
}

.hero{padding:72px 0 50px}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:start;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#fff2da;
  border:1px solid #e6c58c;
  color:#7c5318;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:22px;
}

h1{
  font-size:clamp(38px,5vw,60px);
  line-height:1.04;
  letter-spacing:0;
  margin-bottom:22px;
}

.gold-text{color:var(--gold)}

.lead{
  max-width:560px;
  color:var(--muted);
  font-size:18px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.note{
  background:white;
  border:1px solid var(--border);
  border-radius:12px;
  padding:17px 20px;
  box-shadow:0 12px 30px rgba(33,24,19,.06);
  max-width:540px;
  font-size:14px;
}

.note strong{color:var(--brown)}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
  max-width:540px;
}

.stat{
  background:white;
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
  min-height:92px;
  box-shadow:0 10px 25px rgba(33,24,19,.05);
}

.stat strong{display:block;margin-bottom:5px}
.stat span{color:var(--muted);font-size:13px}

.doctor-card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  align-self:start;
}

.hero-side{
  display:grid;
  gap:18px;
  align-self:start;
}

.doctor-card img{
  width:100%;
  height:395px;
  object-fit:cover;
  object-position:center top;
  border-radius:18px;
}

.doctor-card picture{
  display:block;
}

.doctor-card h2{font-size:25px;margin-top:22px}
.doctor-card p{color:var(--muted);margin-top:8px}

.doctor-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid var(--border);
}

.doctor-mini div{font-size:13px;color:var(--muted)}
.doctor-mini strong{display:block;color:var(--text)}

.senes-hero-logo{
  display:block;
  background:#f3dfbf;
  border:1px solid var(--border);
  border-radius:0;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(33,24,19,.06);
}

.senes-hero-logo img{
  width:100%;
  height:220px;
  object-fit:contain;
  padding:8px 0;
}

.senes-hero-logo picture{
  display:block;
}

section{
  padding:48px 0;
  scroll-margin-top:96px;
}

@supports (content-visibility:auto){
  main section:not(.hero){
    content-visibility:auto;
    contain-intrinsic-size:1px 720px;
  }
}

.section-title{
  text-align:center;
  margin-bottom:34px;
}

.section-title h2{
  font-size:34px;
  line-height:1.15;
}

.section-title p{
  color:var(--muted);
  margin-top:8px;
}

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

.card{
  background:white;
  border:1px solid var(--border);
  border-radius:12px;
  padding:22px 18px;
  box-shadow:0 12px 30px rgba(33,24,19,.06);
}

.card .icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff1db;
  border-radius:11px;
  font-size:22px;
  margin-bottom:14px;
}

.card h3{font-size:16px;margin-bottom:10px}
.card p{color:var(--muted);font-size:13px}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.panel{
  border-radius:18px;
  padding:34px;
  min-height:280px;
}

.panel.dark{
  background:
  radial-gradient(circle at 100% 90%,rgba(201,150,62,.22),transparent 28%),
  linear-gradient(135deg,#211813,#2b211c);
  color:white;
  box-shadow:var(--shadow);
}

.panel.light{
  background:rgba(255,255,255,.72);
  border:1px solid #eee0cf;
}

.panel h2{
  font-size:29px;
  line-height:1.14;
  margin-bottom:14px;
}

.panel p{
  color:inherit;
  opacity:.88;
  margin-bottom:16px;
}

.checks{list-style:none}

.checks li{
  margin:10px 0;
  font-size:14px;
}

.checks li:before{
  content:"✓";
  color:var(--gold-accent);
  font-weight:900;
  margin-right:8px;
}

.table{
  background:white;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(33,24,19,.07);
}

.row{
  display:grid;
  grid-template-columns:70px .8fr 1.6fr 30px;
  align-items:center;
  gap:18px;
  padding:16px 22px;
  border-bottom:1px solid #eadccb;
}

.row:last-child{border-bottom:0}
.row-icon{color:var(--gold);font-size:22px;text-align:center}
.row strong{font-size:15px}
.row span{color:var(--muted);font-size:14px}
.arrow{color:var(--gold);font-weight:900;text-align:right}

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

.quote{
  background:white;
  border:1px solid var(--border);
  border-radius:14px;
  padding:26px;
  box-shadow:0 14px 34px rgba(33,24,19,.07);
}

.quote-mark{
  color:var(--gold);
  font-size:28px;
  font-weight:900;
  line-height:1;
  margin-bottom:16px;
}

.quote h3{font-size:18px;margin-bottom:10px}
.quote p{font-size:14px;color:var(--muted)}

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

.booking-step{
  background:white;
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
  box-shadow:0 14px 34px rgba(33,24,19,.07);
}

.booking-step span{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff1db;
  color:var(--gold);
  font-weight:900;
  margin-bottom:14px;
}

.booking-step h3{
  font-size:18px;
  margin-bottom:10px;
}

.booking-step p{
  color:var(--muted);
  font-size:14px;
}

.contact-options{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.cta-band{
  margin-top:34px;
  background:linear-gradient(135deg,#211813,#2e221c);
  color:white;
  border-radius:18px;
  padding:26px 34px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}

.cta-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  border:2px solid var(--gold-accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.cta-icon .wa-icon{
  display:block;
}

.cta-band p{color:#e7d9ca}

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

details{
  background:white;
  border:1px solid var(--border);
  border-radius:10px;
  padding:15px 18px;
}

summary{
  cursor:pointer;
  font-weight:800;
  font-size:14px;
}

details p{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.location-card{
  background:white;
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
  box-shadow:0 14px 34px rgba(33,24,19,.07);
}

.location-card p + p{margin-top:18px}

.contact-card{
  background:linear-gradient(135deg,#211813,#2c211c);
  color:white;
  border-radius:14px;
  padding:28px;
  box-shadow:var(--shadow);
}

.contact-card p{margin-bottom:12px}
.contact-card a{text-decoration:underline;text-underline-offset:3px}

.map-btns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.clinic-photo-section{
  padding-top:10px;
  padding-bottom:54px;
}

.clinic-photo-card{
  background:white;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(33,24,19,.07);
}

.clinic-photo-link{
  display:block;
}

.clinic-photo-link img{
  transition:transform .25s ease;
}

.clinic-photo-link:hover img{
  transform:scale(1.015);
}

.clinic-photo-card picture,
.clinic-photo-card img{
  display:block;
  width:100%;
}

.clinic-photo-card img{
  aspect-ratio:1600/538;
  object-fit:cover;
}

.clinic-photo-card figcaption{
  padding:18px 22px;
  color:var(--text);
  font-size:16px;
  font-weight:700;
  text-align:center;
  background:#fffaf3;
  border-top:1px solid var(--border);
}

footer{
  background:#17110e;
  color:white;
  padding:42px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.4fr;
  gap:48px;
}

.footer-brand{
  display:flex;
  gap:14px;
}

.footer-brand picture,
.footer-brand img{
  width:78px;
  height:58px;
  object-fit:cover;
  border-radius:10px;
}

.footer-brand picture{
  display:block;
  overflow:hidden;
  flex:0 0 auto;
}

.footer-brand picture img{
  width:100%;
  height:100%;
  border-radius:0;
}

footer p,footer a{
  color:#cfc3b8;
  font-size:14px;
}

footer h4{margin-bottom:10px}

.legal{
  margin-top:28px;
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  font-size:12px;
  color:#a99d94;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.float{
  position:fixed;
  right:22px;
  bottom:22px;
  background:var(--green);
  color:white;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0;
  z-index:99;
  box-shadow:0 14px 32px rgba(0,0,0,.26);
}

.float .wa-icon{
  filter:brightness(0) invert(1);
}

.mobile-contact-bar{
  display:none;
}

.fade{animation:fadeUp .8s ease both}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(22px)}
  to{opacity:1;transform:translateY(0)}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .fade{animation:none}
  .btn{transition:none}
}

@media(max-width:1000px){
  .nav-toggle{display:none}

  .mobile-nav{
    display:block;
    flex:0 0 auto;
  }

  .mobile-nav summary{
    display:inline-flex;
  }

  .menu{
    display:none;
  }

  .mobile-menu{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 10px);
    background:white;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:18px;
    z-index:60;
  }

  .mobile-nav[open] .mobile-menu{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }

  .mobile-menu a{
    padding:12px 10px;
    border-radius:10px;
  }

  .mobile-menu a:not(.btn):hover{
    background:#fff7ec;
    text-decoration:none;
  }

  header{position:sticky}
  .mobile-call.btn{display:none}
  .brand{flex:1}

  .hero-grid,
  .split,
  .location-grid,
  .footer-grid,
  .cta-band{
    grid-template-columns:1fr;
  }

  .cards-6{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-grid,
  .booking-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .row{
    grid-template-columns:40px 1fr;
  }

  .row span,
  .arrow{
    grid-column:2;
  }

  .stats,
  .doctor-mini{
    grid-template-columns:1fr;
  }

  .doctor-card img{
    height:auto;
  }

  .senes-hero-logo img{
    height:auto;
    aspect-ratio:1134/662;
  }

  .cta-band{
    text-align:center;
  }

  .cta-icon{
    margin:auto;
  }
}

@media(max-width:640px){
  body{padding-bottom:76px}

  .topbar .container{
    flex-direction:column;
    gap:4px;
  }

  .nav{
    gap:12px;
    padding:10px 0;
  }

  .brand{
    font-size:14px;
    line-height:1.25;
  }

  .brand picture,
  .brand img{width:64px}
  .mobile-call.btn{padding:10px 14px}
  .mobile-call.btn{display:none}
  .hero{padding:44px 0 34px}
  h1{font-size:36px}
  .lead{font-size:17px}
  .cards-6{grid-template-columns:1fr}
  .panel{padding:26px}
  .section-title h2{font-size:28px}
  .hero-actions .btn{width:100%}

  .clinic-photo-section{
    padding-top:0;
    padding-bottom:34px;
  }

  .clinic-photo-card{
    border-radius:12px;
  }

  .clinic-photo-card img{
    aspect-ratio:4/3;
    object-position:center;
  }

  .clinic-photo-card figcaption{
    padding:14px 16px;
    font-size:15px;
    line-height:1.45;
  }

  .float{display:none}

  .mobile-contact-bar{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:100;
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:8px;
    background:#17110e;
    padding:8px;
    border-radius:16px;
    box-shadow:0 16px 34px rgba(0,0,0,.28);
  }

  .mobile-contact-bar a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:46px;
    border-radius:12px;
    background:white;
    color:var(--text);
    font-size:14px;
    font-weight:900;
  }

  .mobile-contact-bar a:first-child{
    background:var(--green);
    color:white;
  }

  .mobile-contact-bar a:first-child .wa-icon{
    filter:brightness(0) invert(1);
  }
}
