/* ═══════════════════════════════════════════════════════
   DENTAL SPA JÓZEFOSŁAW — Polished Clinical Warmth
   Typography: Playfair Display × Questrial
   Palette: cream / slate / rose / dark
   Inspired by bhdentists.com layout patterns
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f0f1eb;
  --white: #ffffff;
  --slate: #3d4f5f;
  --slate-light: #5a7089;
  --rose: #c95578;
  --rose-hover: #b14465;
  --rose-light: #f5e8ed;
  --dark: #1e2830;
  --dark-soft: #2a3640;
  --text: #2c3038;
  --text-light: #6b7280;
  --olive: #8a9070;
  --border: #ddd;
  --card-radius: 12px 12px 0 12px;
  --radius-sm: 8px 8px 0 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Questrial', 'Segoe UI', sans-serif;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(3.5rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* — GRAIN OVERLAY — */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color .3s; }
a:hover { color: var(--rose-hover); }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1.5rem; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: 900px; }
.container--wide { max-width: 1400px; }

section { padding: var(--section-pad) 0; }
section.bg-cream { background: var(--cream); }
section.bg-rose { background: var(--rose-light); }
section.bg-dark { background: var(--dark); color: #d4d8dc; }
section.bg-dark h2, section.bg-dark h3, section.bg-dark h4 { color: var(--white); }
section.bg-dark .section-label { color: var(--rose); opacity: .9; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--rose-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 85, 120, .3);
}

.btn--outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--slate);
}
.btn--outline:hover {
  background: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--slate);
}
.btn--white:hover {
  background: var(--cream);
  color: var(--slate);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.btn--sm { padding: .6rem 1.4rem; font-size: .85rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all .4s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
  padding: .6rem 0;
}

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

.header-logo img {
  height: 42px;
  width: auto;
  transition: height .3s;
}
.site-header.scrolled .header-logo img { height: 36px; }

.header-nav { display: flex; gap: 0; align-items: center; }
.header-nav a {
  padding: .5rem 1.1rem;
  font-size: .9rem;
  color: var(--white);
  letter-spacing: .03em;
  transition: color .3s;
  position: relative;
}
.site-header.scrolled .header-nav a { color: var(--text); }
.header-nav a:hover { color: var(--rose); }
.header-nav a.active { color: var(--rose); }

.header-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .03em;
}
.site-header.scrolled .header-phone { color: var(--slate); }
.header-phone svg { width: 18px; height: 18px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  border-radius: 2px;
}
.site-header.scrolled .menu-toggle span { background: var(--slate); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 40, 48, .82) 0%,
    rgba(30, 40, 48, .55) 50%,
    rgba(30, 40, 48, .35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 8rem 0 4rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--rose);
  opacity: .9;
}
.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-badge {
  text-align: center;
}
.hero-badge .number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-badge .label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .35rem;
  display: block;
}

/* ── INTRO SECTION ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.intro-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.intro-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 50%;
  height: 4px;
  background: var(--rose);
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p { color: var(--text-light); }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.intro-feature svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--rose);
  margin-top: 2px;
}
.intro-feature span {
  font-size: .9rem;
  line-height: 1.4;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  border: 1px solid rgba(0,0,0,.04);
}
section.bg-cream .service-card { border: 1px solid rgba(0,0,0,.06); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rose);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.service-card:hover::before { opacity: 1; }

.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--rose-light);
  border-radius: 10px 10px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s;
}
.service-card:hover .icon { background: var(--rose); }
.service-card .icon svg {
  width: 22px;
  height: 22px;
  color: var(--rose);
  transition: color .3s;
}
.service-card:hover .icon svg { color: var(--white); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,.05);
  transition: all .35s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.team-card .avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--rose-light), var(--cream));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose);
  font-weight: 700;
}

.team-card .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: .25rem;
}
.team-card .role {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .02em;
}

/* ── AMENITIES ── */
.amenities-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}
.amenity-item .icon-circle {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.amenity-item:hover .icon-circle {
  background: var(--rose);
  border-color: var(--rose);
}
.amenity-item svg { width: 22px; height: 22px; color: rgba(255,255,255,.8); }
.amenity-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-hover) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.cta-phone svg { width: 28px; height: 28px; }

/* ── PRICING TABLES ── */
.pricing-section + .pricing-section { margin-top: 3rem; }
.pricing-section h3 {
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--rose);
  margin-bottom: 0;
  display: inline-block;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.pricing-table tr {
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .2s;
}
.pricing-table tr:hover { background: var(--cream); }
.pricing-table td {
  padding: .85rem .5rem;
  font-size: .92rem;
}
.pricing-table td:first-child {
  color: var(--text);
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
}
.pricing-note {
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1.5rem;
}

/* Two-column pricing on desktop */
.pricing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,40,48,.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.lightbox-close:hover { background: var(--rose); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item .ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  border-radius: 10px 10px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item .ci-icon svg { width: 20px; height: 20px; color: var(--rose); }
.contact-item h4 { margin-bottom: .2rem; font-size: 1rem; }
.contact-item p { margin-bottom: 0; font-size: .92rem; color: var(--text-light); }
.contact-item a { color: var(--slate); font-weight: 500; }
.contact-item a:hover { color: var(--rose); }

.contact-map {
  border-radius: var(--card-radius);
  overflow: hidden;
  min-height: 400px;
  background: var(--cream);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.hours-table { margin-top: .25rem; }
.hours-table div {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  font-size: .9rem;
}
.hours-table div span:last-child { font-weight: 500; color: var(--slate); }

/* ── SERVICE PAGE DETAIL ── */
.service-detail {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail h3 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  transition: color .3s;
}
.service-detail h3:hover { color: var(--rose); }
.service-detail h3 .toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  flex-shrink: 0;
}
.service-detail h3 .toggle-icon svg {
  width: 14px;
  height: 14px;
  color: var(--slate);
  transition: transform .3s;
}
.service-detail.open h3 .toggle-icon { background: var(--rose); }
.service-detail.open h3 .toggle-icon svg { color: var(--white); transform: rotate(180deg); }
.service-detail .detail-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}
.service-detail.open .detail-content { max-height: 600px; }
.service-detail .detail-inner {
  padding: 1rem 0 .5rem;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
.footer-brand p {
  font-size: .88rem;
  margin-top: .75rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}
.footer-brand img { height: 36px; margin-bottom: .5rem; filter: brightness(1.5); }

.site-footer h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.site-footer ul li { margin-bottom: .5rem; }
.site-footer ul a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color .3s;
}
.site-footer ul a:hover { color: var(--rose); }

.footer-contact p {
  font-size: .88rem;
  margin-bottom: .4rem;
  color: rgba(255,255,255,.55);
}
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--rose); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.footer-social a:hover { background: var(--rose); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── PAGE HEADER (non-home pages) ── */
.page-header {
  background: var(--dark);
  padding: 8rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,85,120,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 { color: var(--white); margin-bottom: .5rem; }
.page-header .breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.page-header .breadcrumb a { color: rgba(255,255,255,.6); }
.page-header .breadcrumb a:hover { color: var(--rose); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-columns { grid-template-columns: 1fr; }
  .intro-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 30px rgba(0,0,0,.1);
  }
  .header-nav.open { right: 0; }
  .header-nav a {
    color: var(--text) !important;
    padding: .8rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .header-phone { display: none; }

  .hero-content { padding: 7rem 0 3rem; }
  .hero-badges { gap: 1.5rem; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

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

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 1rem; text-align: left; }
  .hero-badge { display: flex; align-items: center; gap: .75rem; text-align: left; }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .amenities-row { gap: 1.25rem 2rem; }
}
