/* ===========================
   CHESHIRE ENT - Stylesheet
   Aesthetic: Refined Medical / Editorial Luxury
   =========================== */

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

:root {
  --navy: #0d1f35;
  --teal: #1a6b6b;
  --teal-light: #2a8f8f;
  --gold: #b8966a;
  --gold-light: #d4b080;
  --cream: #f7f4ef;
  --white: #ffffff;
  --gray-50: #f9f8f6;
  --gray-100: #eeeae3;
  --gray-200: #d8d0c4;
  --gray-400: #8c8477;
  --gray-600: #5a5348;
  --gray-800: #2e2a24;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(13,31,53,0.07);
  --shadow-md: 0 8px 32px rgba(13,31,53,0.12);
  --shadow-lg: 0 20px 60px rgba(13,31,53,0.18);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== PAGE SYSTEM ====== */
.page {
  display: none;
  animation: fadeInUp 0.5s ease forwards;
}
.page.active {
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo img {
  height: auto;
  width:150px;
  filter: brightness(0) invert(1);
  opacity: 0.92;

}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-text .title {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links li a,
.nav-links li button {
  display: block;
  padding: 0 1rem;
  height: 72px;
  line-height: 72px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover,
.nav-links li button:hover,
.nav-links li a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}
.nav-links .dropdown-parent > button::after {
  content: ' ▾';
  font-size: 0.65rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  background: var(--navy);
  min-width: 200px;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.dropdown-parent:hover .dropdown-menu,
.dropdown-parent:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  height: auto !important;
  line-height: 1.4 !important;
  padding: 0.75rem 1.25rem !important;
  display: block;
  font-size: 0.78rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dropdown-menu a:last-child { border-bottom: none; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0 1.25rem !important;
  height: 40px !important;
  line-height: 40px !important;
  border-radius: 2px !important;
  font-weight: 500 !important;
  margin-left: 0.5rem;
  align-self: center;
  transition: background var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ====== CONTENT SECTIONS ====== */
.section {
  padding: 5rem 0;
}
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); }
.section-teal { background: var(--teal); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--teal);
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* ====== HOME PAGE ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
/* .about-image {
  position: relative;
} */
.about-image img {
  width: 100%;
  /* aspect-ratio: 4/5; */
  object-fit: cover;
  display: block;
}
/*
.about-image::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
} */
.about-text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.75;
}
.btn {
  margin-top: 10px;
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-light); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); }

/* Insurers */
.insurers-section { text-align: center; }
.insurer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.insurer-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.3);
  opacity: 0.75;
  transition: var(--transition);
}
.insurer-logos img:hover { filter: grayscale(0); opacity: 1; }

/* Qualifications Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-4px);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.timeline-degree {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.timeline-degree a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  transition: border-color var(--transition), color var(--transition);
}
.timeline-degree a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* Review badge */
.review-badge {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--navy);
  border-left: 4px solid var(--gold);
}
.review-badge img { height: 64px; width: auto;}
.review-badge-text { color: var(--white); }
.review-badge-text h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; margin-bottom: 0.25rem; }
.review-badge-text p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.review-badge a { color: var(--gold-light); text-decoration: none; }
.review-badge a:hover { text-decoration: underline; }

/* ====== ABOUT PAGE ====== */
.about-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,107,0.2) 0%, transparent 70%);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
  height: 480px;
}
.about-hero-img {
  margin-top: 50px;
  width: 100%;
  object-fit: cover;
  border: 3px solid rgba(184,150,106,0.4);
}
.about-hero-text h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  /* margin-bottom: 0.25rem; */
}

.about-hero-text .section-label {
  margin-bottom: -10px;
}

.about-hero-text .credentials {
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  /* margin-bottom: 2rem; */
}
.about-hero-text p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.5rem;
  line-height: 1.75;
  font-size: 0.97rem;
}
.about-quote {
  background: var(--gray-50);
  border-left: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  margin: 3rem 0;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

/* ====== PATIENT INFO PAGES ====== */
.patient-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.patient-hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.patient-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}

.patient-tabs {
  display: flex;
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  overflow-x: auto;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.patient-tab {
  padding: 1rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.patient-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.patient-tab:hover { color: var(--teal); }

.patient-content { display: none; }
.patient-content.active { display: block; }

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
}
.condition-card {
  background: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--gray-800);
  transition: var(--transition);
}
.condition-card:hover {
  background: var(--gray-50);
  color: var(--teal);
  padding-left: 2.5rem;
}
.condition-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--transition);
}
.condition-card:hover .condition-icon {
  background: var(--teal);
  color: var(--white);
}
.condition-name {
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.3;
}

.patient-img-hero {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ====== QUALIFICATIONS PAGE ====== */
.quals-hero {
  background: var(--gray-50);
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.quals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ====== PRACTICE SITES PAGE ====== */
.sites-hero {
  background: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
}
.sites-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
}
.sites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;   /* this is where to go */
  gap: 2rem;
  margin-top: 3rem;
}
.site-card {
  background: var(--white);
  border-top: 3px solid var(--teal);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  width: 350px;
}
.site-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.site-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.site-detail-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.site-detail-text { font-size: 0.93rem; line-height: 1.5; }
.site-detail-text strong { display: block; font-weight: 500; color: var(--gray-800); }
.site-detail-text a { color: var(--teal); text-decoration: none; }
.site-detail-text a:hover { text-decoration: underline; }
.site-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-map-link:hover { color: var(--teal-light); }

.secretary-box {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-100);
}
.secretary-box h3 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

/* ====== APPOINTMENT PAGE ====== */
.appt-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.appt-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.appt-hero p { color: rgba(255,255,255,0.7); }
.appt-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  text-align: center;
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #e8f5f5;
  border: 1px solid var(--teal);
  border-radius: 4px;
  margin-top: 1.5rem;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

/* ====== PAYMENTS PAGE ====== */
.payments-info {
  max-width: 720px;
  margin: 0 auto;
}
.payment-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.payment-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.payment-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== RESEARCH PAGE ====== */
.research-section {
  text-align: center;
  padding: 5rem 0;
}
.orcid-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--gray-100);
  padding: 1.5rem 2.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--navy);
  transition: var(--transition);
}
.orcid-badge:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.orcid-id {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--teal);
}
.orcid-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ====== PAGE HERO GENERIC ====== */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  margin-top: 72px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}
.page-hero .breadcrumb span { color: var(--gold); }

/* ====== FOOTER ====== */
.footer {
  background: #080f1a;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a,
.footer-col ul li button {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.footer-col ul li a:hover,
.footer-col ul li button:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ====== FLOATING CTA ====== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26,107,107,0.45);
  transition: var(--transition);
  white-space: nowrap;
}
.floating-cta a:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,107,0.5);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .nav-links li a, .nav-links li button {
    height: auto;
    line-height: 1;
    padding: 0.9rem 2rem;
  }
  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(255,255,255,0.05);
    border-top: none;
    box-shadow: none;
  }
  .dropdown-parent.open .dropdown-menu { display: block; }
  .nav-cta {
    margin: 0.5rem 2rem;
    display: inline-block;
    height: auto !important;
    line-height: 1 !important;
    padding: 0.85rem 1.5rem !important;
  }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-img { max-width: 280px; }
  .quals-grid { grid-template-columns: 1fr; }
  .sites-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slide-content { padding: 2rem 2.5rem; }
  .slide-content h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .hero-slider { height: 380px; }
  .slide-content h2 { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-badge { flex-direction: column; gap: 1rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
