/* =============================================
   CLÍNICA DE PODOLOGÍA — Design System
   Paleta cálida · Layout asimétrico · Bento grid
   ============================================= */

:root {
  --slate: #334155;
  --slate-dark: #1e293b;
  --slate-light: #64748b;
  --copper: #c27803;
  --copper-light: #d97706;
  --copper-glow: rgba(194, 120, 3, 0.18);
  --sand: #f8f6f3;
  --sand-dark: #ede8e1;
  --cream: #fffbf7;
  --warm: #e8ddd0;
  --white: #ffffff;
  --text: #1c1917;
  --text-muted: #78716c;
  --border: rgba(51, 65, 85, 0.1);

  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --header-height: 72px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

img {
  height: auto;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(30, 41, 59, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.top-nav--scrolled {
  background: rgba(30, 41, 59, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.top-nav__inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.top-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.top-nav__brand:hover { opacity: 0.85; }

.top-nav__mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper);
  border-radius: 9px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.top-nav__name {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.top-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.top-nav__links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.top-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--copper-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.top-nav__links a:hover,
.top-nav__links a.active {
  color: white;
}

.top-nav__links a.active::after,
.top-nav__links a:hover::after {
  transform: scaleX(1);
}

.top-nav__cta {
  padding: 10px 20px;
  background: var(--copper);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.top-nav__cta:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
}

.top-nav__cta-mobile { display: none; }

.top-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.top-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.top-nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top-nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.top-nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.top-nav__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.top-nav__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--copper);
  transition: width 0.1s linear;
}

/* ===== MAIN LAYOUT ===== */
.main {
  padding-top: var(--header-height);
}

.section-wrap {
  width: min(1100px, 88vw);
  margin-inline: auto;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section--dark {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.85);
}

.section--sand {
  background: var(--sand);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  margin-bottom: 14px;
}

.section-label--light { color: var(--copper-light); }

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 1.02rem;
}

.section-head--center {
  text-align: center;
  margin-bottom: 56px;
}

.section-head--center p {
  margin-inline: auto;
}

.section--dark .section-head h2,
.section--dark h2 { color: white; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn--copper {
  background: var(--copper);
  color: white;
  box-shadow: 0 4px 20px var(--copper-glow);
}

.btn--copper:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--copper-glow);
}

.btn--line {
  color: var(--slate);
  border: 2px solid var(--border);
  background: transparent;
}

.btn--line:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn--full { width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__panel--text {
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 64px);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--slate-dark);
  margin-bottom: 24px;
}

.hero__title i {
  font-style: italic;
  color: var(--copper);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 16px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.chip strong {
  color: var(--slate);
  font-weight: 700;
}

/* Hero visual panel */
.hero__panel--visual {
  position: relative;
  background: var(--sand);
  border-left: 1px solid var(--border);
  padding: 40px;
  overflow: hidden;
}

.hero__frame {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__path {
  position: absolute;
  width: 80%;
  height: 90%;
  opacity: 0.6;
}

.hero__path-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPath 3s var(--ease) forwards;
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

.hero__step {
  opacity: 0;
  animation: stepPop 0.5s var(--ease) forwards;
}

.hero__step--1 { animation-delay: 0.6s; }
.hero__step--2 { animation-delay: 1.2s; }
.hero__step--3 { animation-delay: 1.8s; }
.hero__step--4 { animation-delay: 2.4s; }

@keyframes stepPop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.hero__photo {
  position: relative;
  width: min(360px, 85%);
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(30, 41, 59, 0.15);
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}

.hero__photo:hover .hero__img {
  transform: scale(1.05);
}

.hero__photo-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--slate-dark);
  color: white;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: badgeSlide 0.8s var(--ease) 1s both;
}

@keyframes badgeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__photo-badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
}

.hero__photo-badge-txt {
  font-size: 0.72rem;
  opacity: 0.75;
}

.hero__floating-note {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: white;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  animation: noteFade 0.8s var(--ease) 1.5s both;
}

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

.hero__floating-note svg {
  color: var(--copper);
  flex-shrink: 0;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  color: var(--sand);
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 50px;
}

/* ===== BENTO GRID ===== */
.treatments {
  background: var(--sand);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  margin-top: 48px;
}

.bento__item {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.bento__item:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.08);
  border-color: transparent;
}

.bento__item--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  padding: 0;
  min-height: 380px;
}

.bento__item--img {
  padding: 0;
  color: white;
  border: none;
}

.bento__item--img .bento__content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.bento__item--img h3 { color: white; }
.bento__item--img p { color: rgba(255, 255, 255, 0.88); }
.bento__item--img .bento__num { color: var(--copper-light); }

.bento__item--wide.bento__item--img {
  min-height: 220px;
}

.bento__item--wide.bento__item--img h3,
.bento__item--wide.bento__item--img p {
  color: var(--slate-dark);
}

.bento__item--wide.bento__item--img .bento__num {
  color: var(--copper);
}

.bento__item--wide.bento__item--img .bento__link {
  color: var(--copper);
}

.bento__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}

.bento__item:hover .bento__bg {
  transform: scale(1.06);
}

.bento__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.92) 0%, rgba(30, 41, 59, 0.35) 55%, transparent 100%);
}

.bento__overlay--light {
  background: linear-gradient(to right, rgba(255, 251, 247, 0.95) 0%, rgba(255, 251, 247, 0.7) 45%, transparent 100%);
}

.bento__overlay--copper {
  background: linear-gradient(to top, rgba(194, 120, 3, 0.92) 0%, rgba(194, 120, 3, 0.45) 50%, transparent 100%);
}

.bento__item--has-img {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bento__thumb {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -1px -1px 0;
}

.bento__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bento__item--has-img:hover .bento__thumb img {
  transform: scale(1.08);
}

.bento__item--has-img .bento__num,
.bento__item--has-img h3,
.bento__item--has-img p,
.bento__item--has-img .bento__link {
  margin-left: 0;
}

.bento__item--has-img .bento__num {
  margin: 16px 28px 0;
}

.bento__item--has-img h3,
.bento__item--has-img p,
.bento__item--has-img .bento__link {
  margin-left: 28px;
  margin-right: 28px;
}

.bento__item--has-img .bento__link {
  margin-bottom: 24px;
  margin-top: auto;
}

.bento__item--large h3,
.bento__item--large p { color: rgba(255,255,255,0.9); }

.bento__item--large .bento__num { color: var(--copper-light); }

.bento__item--wide {
  grid-column: span 2;
}

.bento__item--accent {
  color: white;
  border: none;
}

.bento__item--accent h3 { color: white; }
.bento__item--accent .bento__num { color: rgba(255,255,255,0.5); }

.bento__num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.bento__item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--slate-dark);
}

.bento__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.bento__item--accent p { color: rgba(255,255,255,0.8); }

.bento__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  transition: letter-spacing var(--transition);
}

.bento__link:hover { letter-spacing: 0.04em; }

.bento__link--light { color: white; }

.bento__deco {
  position: absolute;
  pointer-events: none;
}

.bento__deco--circle {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

/* ===== CLINIC ===== */
.clinic__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.clinic__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
}

.clinic__text h2 i {
  font-style: italic;
  color: var(--copper-light);
}

.clinic__text > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 1rem;
}

.clinic__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clinic__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), border-color var(--transition);
}

.clinic__features li:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(194, 120, 3, 0.3);
}

.clinic__feat-icon {
  color: var(--copper-light);
  font-size: 0.6rem;
  padding-top: 6px;
  flex-shrink: 0;
}

.clinic__features strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.clinic__features span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.clinic__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.clinic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.clinic__img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.clinic__img--main {
  grid-row: span 2;
  min-height: 280px;
}

.clinic__img--sub,
.clinic__img--sub2 {
  min-height: 130px;
}

.clinic__stats-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.clinic__stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.clinic__stat:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
}

.clinic__stat-val {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
}

.clinic__stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--copper-light);
}

.clinic__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.clinic__quote {
  padding: 28px;
  border-left: 3px solid var(--copper);
  background: rgba(194, 120, 3, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.clinic__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.process__track {
  position: relative;
}

.process__line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--sand-dark), var(--copper), var(--sand-dark));
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 0 12px;
}

.process__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: white;
  border: 3px solid var(--copper);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process__step:hover .process__dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px var(--copper-glow);
}

.process__step time {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 8px;
}

.process__step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 8px;
}

.process__step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== PATIENTS ===== */
.patients__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.patients__faq h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--slate-dark);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__item summary {
  padding: 18px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}

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

.accordion__item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--copper);
  transition: transform var(--transition);
}

.accordion__item[open] summary::after {
  transform: rotate(45deg);
}

.accordion__item summary:hover { color: var(--copper); }

.accordion__item p {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  animation: accordionOpen 0.35s var(--ease);
}

@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.patients__voices-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.patients__voices-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.patients__voices-img:hover img {
  transform: scale(1.04);
}

.patients__voices h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.voices {
  position: relative;
  min-height: 220px;
}

.voice-card {
  position: absolute;
  inset: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}

.voice-card--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.voice-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--slate-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}

.voice-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--sand-dark);
}

.voice-card strong {
  display: block;
  font-size: 0.9rem;
}

.voice-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.voices__dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.voices__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.voices__dot--active {
  background: var(--copper);
  transform: scale(1.2);
}

/* ===== CONTACT ===== */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.contact__info > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact__photo {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.contact__photo:hover img {
  transform: scale(1.04);
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact__card {
  padding: 20px;
  background: var(--sand);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
}

.contact__card:hover {
  transform: translateY(-2px);
  border-color: var(--copper);
}

.contact__card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 6px;
}

.contact__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact__card a {
  color: var(--slate);
  transition: color var(--transition);
}

.contact__card a:hover { color: var(--copper); }

.contact__form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 12px 40px rgba(30, 41, 59, 0.06);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--sand);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: white;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px var(--copper-glow);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-ok {
  margin-top: 14px;
  padding: 12px;
  background: rgba(194, 120, 3, 0.1);
  border: 1px solid var(--copper);
  border-radius: 8px;
  color: var(--copper);
  font-size: 0.88rem;
  text-align: center;
  animation: accordionOpen 0.4s var(--ease);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.45);
  padding: 24px 0;
  font-size: 0.82rem;
}

.footer__inner {
  width: min(1100px, 88vw);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== ANIMATIONS ===== */
.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(36px); }
.reveal-scale { transform: scale(0.92); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--large { grid-row: span 1; }
  .bento__item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }

  .top-nav__name { display: none; }

  .top-nav__links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: var(--slate-dark);
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .top-nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .top-nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .top-nav__links a::after { display: none; }

  .top-nav__cta { display: none; }

  .top-nav__cta-mobile {
    display: block;
    margin-top: 12px;
    padding: 14px;
    text-align: center;
    background: var(--copper);
    color: white !important;
    font-weight: 600;
    border-radius: 8px;
    border-bottom: none !important;
  }

  .top-nav__toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__panel--visual {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 420px;
  }

  .clinic__grid,
  .patients__grid,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process__line { display: none; }

  .clinic__stats-block {
    grid-template-columns: repeat(3, 1fr);
  }

  .clinic__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .clinic__img--main {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }

  .process__steps { grid-template-columns: 1fr; }

  .contact__cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .clinic__stats-block { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-left, .reveal-right, .reveal-up, .reveal-scale,
  .slide-in {
    opacity: 1;
    transform: none;
  }
}
