/* ═══════════════════════════════════════════════════
   ARCHA.DENT — Editorial Magazine Style
   Palette: Warm parchment + Terracotta accent
   Typography: EB Garamond + Josefin Sans
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #f8f5f0;
  --surface: #eee9e2;
  --accent: #b8402a;
  --accent-hover: #d04a32;
  --text: #1c1c1c;
  --text-muted: #6b6560;
  --border: #d4cfc8;
  --white: #ffffff;
  --heading-font: 'EB Garamond', Georgia, serif;
  --body-font: 'Josefin Sans', 'Segoe UI', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --base-size: 16px;
  --letter-spacing-heading: 0.08em;
  --shadow-soft: 0 4px 30px rgba(28,28,28,0.06);
  --shadow-card: 0 8px 40px rgba(28,28,28,0.08);
  --shadow-deep: 0 16px 60px rgba(28,28,28,0.12);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.label {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding: clamp(3rem, 8vw, 7rem) 0;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--body-font);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 1px;
}

/* Desktop Nav */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--body-font) !important;
  font-weight: 600 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  background: var(--accent) !important;
  padding: 0.6rem 1.4rem !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .burger { display: none !important; }
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .mob-cta {
  margin-top: 1rem;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 1rem 2.5rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
}

.mobile-menu .mob-cta:hover {
  background: var(--accent-hover);
}

@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* ══════════════════════════════════════════
   HERO — SLIDER
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(184,64,42,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(184,64,42,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #f8f5f0 0%, #eee9e2 40%, #f8f5f0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184,64,42,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 4vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-label {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: 1.05;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Slider */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

@media (min-width: 900px) {
  .hero-slider {
    aspect-ratio: auto;
    height: 520px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(28,28,28,0.7) 0%, transparent 100%);
}

.hero-slide .slide-caption {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-slide .slide-sub {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  display: flex;
  gap: 0.25rem;
  z-index: 5;
}

.slider-dot {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}

.slider-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}

.slider-dot.active::after {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.4);
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  min-height: 48px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,64,42,0.25);
}

.btn-outline {
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-white-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header .label {
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin: 0 auto;
  max-width: 550px;
}

.section-header .divider {
  margin: 1rem auto;
}

/* ══════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════ */
.stats-strip {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 25%,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.03) 25.3%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
}

.stat-number .accent-num { color: #d04a32; }

.stat-label {
  font-family: var(--body-font);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════
   SERVICE CARDS — PHOTO OVERLAY
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 600px) {
  .service-card { height: 420px; }
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: background 0.4s;
}

.service-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(28,28,28,0.92) 0%, rgba(28,28,28,0.35) 60%, rgba(28,28,28,0.1) 100%);
}

.service-card .card-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card .card-desc {
  font-family: var(--body-font);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, opacity 0.4s;
  opacity: 0;
}

.service-card:hover .card-desc {
  max-height: 120px;
  opacity: 1;
}

.service-card .card-link {
  margin-top: 0.75rem;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d04a32;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card .card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   BEFORE-AFTER GALLERY
   ══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

.ba-card {
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-slider .ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.ba-slider .ba-handle::after {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--text);
  z-index: 1;
  line-height: 1;
}

.ba-label {
  position: absolute;
  top: 0.75rem;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(28,28,28,0.55);
  padding: 0.35rem 0.7rem;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.ba-label.label-before { left: 0.75rem; }
.ba-label.label-after { right: 0.75rem; }

.ba-info {
  padding: 1.25rem 1.5rem;
}

.ba-info h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.ba-info p {
  font-size: 0.82rem;
}

.ba-info .ba-doctor {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 500px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 1.2rem 1rem;
  text-align: center;
}

.team-card-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.team-card-info .team-role {
  font-family: var(--body-font);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════ */
.reviews-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-track { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-quote {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-quote::before {
  content: '\201C';
  font-size: 2.8rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--accent);
  margin-right: 0.1em;
  font-family: var(--heading-font);
  font-style: normal;
}

.review-author {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-source {
  font-size: 0.62rem;
  color: var(--accent);
  margin-top: 0.15rem;
  font-family: var(--body-font);
}

/* ══════════════════════════════════════════
   CONTACTS
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,64,42,0.08);
  color: var(--accent);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details h4 {
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-details a {
  color: var(--accent);
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--accent-hover);
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.88rem;
  font-family: var(--body-font);
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.hours-table tr.day-off td {
  color: var(--accent);
}

.map-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══════════════════════════════════════════
   ADVANTAGES
   ══════════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .advantages-grid { grid-template-columns: repeat(3, 1fr); }
}

.advantage-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}

.advantage-card:hover {
  border-bottom-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.advantage-card .adv-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,64,42,0.08);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.advantage-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.advantage-card p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   INSTALLMENT BANNER
   ══════════════════════════════════════════ */
.installment-banner {
  background: var(--accent);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.installment-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.installment-banner h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.installment-banner p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto;
  max-width: 500px;
}

.installment-banner .btn {
  margin-top: 1.25rem;
  background: var(--white);
  color: var(--accent);
}

.installment-banner .btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section {
  background: var(--text);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,64,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(184,64,42,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 2rem;
  max-width: 500px;
  position: relative;
}

.cta-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* ══════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s;
  min-height: 48px;
}

.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.floating-wa svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.floating-wa span {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .floating-wa span { display: none; }
  .floating-wa { padding: 0.9rem; border-radius: 50%; }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }
}

.footer-brand .logo-brand { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.footer h5 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p,
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   CLIP-REVEAL SCROLL ANIMATION
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  clip-path: inset(15% 0 15% 0);
  transform: translateY(30px);
  transition: opacity 0.7s ease, clip-path 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════
   PAGE HEADER (internal pages)
   ══════════════════════════════════════════ */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(184,64,42,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.page-header .label {
  display: block;
  margin-bottom: 0.75rem;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  margin: 0 auto;
  max-width: 550px;
}

/* ══════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════ */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
