/* ============================================
   CI-Dent s.r.o. — Mockup Styles
   ============================================ */

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

/* --- Custom Properties --- */
:root {
  --color-navy: #1B2A4A;
  --color-navy-light: #2C4066;
  --color-navy-lighter: #3D5680;
  --color-accent: #2A9D8F;
  --color-accent-hover: #238B80;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F7FA;
  --color-text: #1B2A4A;
  --color-text-muted: #5A6A80;
  --color-text-light: #FFFFFF;
  --color-border: #E2E8F0;
  --font-family: 'Montserrat', Arial, sans-serif;
  --container-width: 1140px;
  --section-padding: 80px;
  --header-height: 80px;
  --radius: 8px;
  --shadow-card: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-card-hover: 0 4px 16px rgba(27, 42, 74, 0.12);
  --transition: all 0.2s ease;
}

/* --- Fonts --- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--color-accent-hover);
}
ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-padding) 0;
}
.section--alt {
  background: var(--color-bg-alt);
}

/* --- Section Heading --- */
.section__heading {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.section__heading h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}
.section__heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.section__heading p {
  color: var(--color-text-muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 4px rgba(27, 42, 74, 0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header__logo-icon {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.15;
}
.header__logo-text small {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-muted);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  position: relative;
  padding: 4px 0;
}
.header__nav a:hover {
  color: var(--color-accent);
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}
.header__nav a:hover::after {
  width: 100%;
}
.header__nav a.btn {
  color: var(--color-text-light);
  padding: 8px 18px;
}
.header__nav a.btn:hover {
  color: var(--color-text-light);
}
.header__nav a.btn::after {
  display: none;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-light);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-text-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}
.btn--outline:hover {
  background: var(--color-text-light);
  color: var(--color-navy);
  transform: translateY(-1px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-text-light);
  transform: translateY(-1px);
}
.btn--sm {
  font-size: 13px;
  padding: 8px 20px;
}
.btn--nav {
  padding: 14px 48px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  pointer-events: none;
}
.hero__watermark img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.hero__content h1 {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 48px;
}
.hero__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Carousel --- */
.carousel {
  position: relative;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}
.carousel__track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.carousel__arrow:hover {
  background: var(--color-bg);
  transform: translateY(-50%) scale(1.05);
}
.carousel__arrow svg {
  width: 20px;
  height: 20px;
}
.carousel__arrow--prev { left: 12px; }
.carousel__arrow--next { right: 12px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.carousel__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.carousel__dot.active {
  background: var(--color-accent);
  transform: scale(1.25);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 16, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__img {
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.lightbox__close,
.lightbox__arrow {
  position: absolute;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox__close {
  top: 20px;
  right: 20px;
}
.lightbox__close svg,
.lightbox__arrow svg {
  width: 22px;
  height: 22px;
}
.lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__arrow--prev { left: 20px; }
.lightbox__arrow--next { right: 20px; }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================
   AKTUALITY (News)
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.news-grid--single {
  max-width: 640px;
  margin: 0 auto;
}
.news-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.news-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.news-card__date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  background: var(--color-navy);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.news-card__title {
  font-size: 20px;
  margin-bottom: 12px;
}
.news-card__excerpt {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.news-card__link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================
   O NÁS (About)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.about__text h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}
.about__text p {
  color: var(--color-text-muted);
  font-size: 16px;
}
.about__text > p:first-of-type {
  color: var(--color-text);
  font-size: 17px;
}

/* Doctor card */
.doctor-card {
  background: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}
.doctor-card__name {
  font-size: 22px;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.doctor-card__detail {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}
.doctor-card__detail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Staff list */
.staff-list {
  margin-top: 16px;
}
.staff-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--color-text-muted);
  font-size: 15px;
}
.staff-list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 16px;
}

/* About photos — sloupec se roztáhne přesně na výšku textu */
.about__photos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}
.about__photo {
  position: relative;
  height: 0;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(27, 42, 74, 0.75);
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(2px);
}

/* ============================================
   DENTÁLNÍ HYGIENA (Services)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}
.service-card__title {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card__desc {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.services__cta {
  text-align: center;
  margin-top: 40px;
}

/* Hygiene photos */
.hygiene-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.hygiene-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* Hygiene pricing */
.hygiene-pricing {
  max-width: 720px;
  margin: 0 auto 48px;
}
.hygiene-pricing h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* Insurance benefits */
.insurance-benefits {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.insurance-benefits h3 {
  margin-bottom: 12px;
}
.insurance-benefits p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.insurance-benefits__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}
.insurance-benefits__list a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.insurance-benefits__list a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================
   CENÍK (Pricing)
   ============================================ */
.pricing-note {
  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 32px;
  font-size: 15px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pricing-table thead th {
  background: var(--color-navy);
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 24px;
  text-align: left;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}
.pricing-table tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table tbody td {
  padding: 14px 24px;
  font-size: 15px;
}
.pricing-table tbody td:last-child {
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}

/* ============================================
   KONTAKTY (Contact)
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact__info h3 {
  margin-bottom: 20px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.contact__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}
.contact__item strong {
  color: var(--color-text);
}

/* Office hours */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.hours-table caption {
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 12px;
  caption-side: top;
}
.hours-table td {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}
.hours-table td:first-child {
  font-weight: 700;
  color: var(--color-navy);
  width: 120px;
}
.hours-table td:last-child {
  color: var(--color-text-muted);
}

/* Booking block */
.contact__booking {
  margin-top: 32px;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  text-align: center;
}
.contact__booking p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* Map placeholder */
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 2px dashed var(--color-border);
}
.contact__map svg {
  width: 48px;
  height: 48px;
  color: var(--color-border);
}
.contact__map span {
  color: var(--color-text-muted);
  font-size: 14px;
}
.contact__map--live {
  border: none;
  display: block;
}
.contact__map--live iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}
.contact__item small {
  color: var(--color-text-muted);
  font-size: 13px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer__logo-icon {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-light);
  line-height: 1.15;
}
.footer__logo-text small {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__logo p {
  font-size: 14px;
  line-height: 1.6;
}
.footer h4 {
  color: var(--color-text-light);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 4px 0;
}
.footer__nav a:hover {
  color: var(--color-text-light);
}
.footer__contact-item {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}
.footer__bottom {
  border-top: 1px solid var(--color-navy-light);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover {
  color: var(--color-accent);
}
.mobile-nav .btn {
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --section-padding: 60px;
  }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }
  .carousel {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
  .about-grid,
  .contact-grid {
    gap: 32px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --section-padding: 48px;
    --header-height: 60px;
  }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }

  /* Header */
  .header__nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
  }
  .hero__content p {
    font-size: 17px;
  }
  .hero__watermark {
    width: 300px;
    height: 300px;
    right: -15%;
  }
  .carousel__arrow {
    width: 36px;
    height: 36px;
  }

  /* Lightbox */
  .lightbox__img {
    max-width: 100vw;
    max-height: calc(100vh - 120px);
    border-radius: 0;
  }
  .lightbox__close {
    top: 12px;
    right: 12px;
  }
  .lightbox__arrow--prev { left: 8px; }
  .lightbox__arrow--next { right: 8px; }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about__photos {
    order: -1;
    grid-template-rows: none;
  }
  .about__photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  /* Hygiene */
  .hygiene-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hygiene-photos img {
    aspect-ratio: 16 / 10;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 24px 16px;
  }

  /* Pricing table - scrollable */
  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-table {
    min-width: 500px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Hero actions */
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
