/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 0.6rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
}

section.hero h2::after,
section:not(.hero) h2::after {
  left: 0;
}

section:not(.hero) {
  text-align: left;
}

section:not(.hero) h2 {
  text-align: center;
}

section:not(.hero) h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.35rem;
  font-weight: 500;
}

p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Site Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  align-items: center;
}

.site-nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  color: var(--color-primary);
}

.site-nav-cta {
  padding: 0.6rem 1.3rem !important;
  background: var(--color-primary);
  color: white !important;
  border-radius: 3px;
}

.site-nav-cta:hover {
  background: var(--color-primary-light) !important;
}

.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-sm);
  }
  .site-nav-links.open {
    display: flex;
  }
  .site-nav-toggle {
    display: block;
  }
}

/* Global layout system */
.hero,
section:not(.hero) {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

@media (min-width: 768px) {
  .hero,
  section:not(.hero) {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* Hero section */
.hero {
  padding-top: var(--space-xl);
  padding-bottom: 0;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(26,47,58,0.6) 0%, rgba(26,47,58,0.82) 70%, var(--color-primary) 100%),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
  z-index: 2;
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  margin-bottom: -70px;
}

.hero-portrait {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--color-bg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 100px var(--space-md) var(--space-xl);
  text-align: center;
}

.hero-specialty {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
}

.hero .accent-line {
  width: 44px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto var(--space-sm);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.hero-credentials {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

.hero-tagline {
  color: var(--color-accent-light);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.hero-tagline em {
  font-style: normal;
}

.hero-summary {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-actions a {
  display: inline-block;
}

.hero-actions button {
  margin: 0;
}

/* About section */
.about {
  max-width: 800px;
}

.about-bio {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  white-space: pre-line;
}

/* Content sections — consistent vertical rhythm */
section:not(.hero) {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

section:not(.hero) h2 {
  margin-bottom: var(--space-lg);
}

section ul {
  list-style: none;
}

section li {
  background: var(--color-bg-soft);
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  border-left: 2px solid var(--color-accent);
}

section li strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-bg-soft);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius);
  border-top: 3px solid var(--color-accent);
  text-align: left;
}

.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.testimonial-card .patient-name {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Clinic Info */
.clinic-info {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.clinic-info h2 {
  color: white;
}

.clinic-info .clinic-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.clinic-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.clinic-info a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.clinic-info a:hover {
  color: var(--color-accent);
}

/* FAQs — accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--color-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.02rem;
  padding: var(--space-md);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.3s ease, background 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-md);
}

.faq-question[aria-expanded="true"] + .faq-answer-wrap {
  max-height: 400px;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Working Hours — table layout */
.hours-by-location {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.hours-location-group {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.hours-location-group h4 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 110px 1fr 90px;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.hours-row .hours {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.status-badge {
  justify-self: end;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.status-badge.status-open {
  color: #4a6b52;
  background: #eef3ee;
  border: 1px solid #d3e0d5;
}

.status-badge.status-closed {
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
}

/* Gallery — premium portfolio */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-soft);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(26,47,58,0.06);
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 12px 28px rgba(26,47,58,0.14);
}

.gallery-item .img-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  padding: 0.85rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,20,15,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--space-md);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-image {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-md);
  font-size: 0.95rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

/* Social Links */
.social-list {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
  overflow: hidden;
  justify-content: center;
}

.social-link svg {
  flex-shrink: 0;
}

.social-link-label {
  display: none;
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15,76,92,0.2);
}
.social-link[aria-label="Facebook"i] { background: #1877F2; color: white; border-color: #1877F2; }
.social-link[aria-label="Instagram"i] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white; border-color: transparent;
}
.social-link[aria-label="Youtube"i] { background: #FF0000; color: white; border-color: #FF0000; }
.social-link[aria-label="Linkedin"i] { background: #0A66C2; color: white; border-color: #0A66C2; }
.social-link[aria-label="whatsapp"i] { background: #25D366; color: white; border-color: #25D366; }
.social-link[aria-label="Twitter"i] { background: #000000; color: white; border-color: #000000; }
/* Practice Locations — premium healthcare cards */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

.location-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.location-card-header {
  margin-bottom: var(--space-sm);
}

.location-badge {
  display: inline-block;
  background: rgba(184,151,95,0.12);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.location-type-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}

.location-address {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.location-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: 0.85rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
}

.location-phone {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
  text-decoration: none;
}

.location-phone-static {
  cursor: default;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-map-link:hover {
  color: var(--color-accent);
}

.location-email {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.location-email a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.location-book-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Patient Education */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.education-card {
  background: var(--color-bg-soft);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
}
.education-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  display: block;
}

.education-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.education-type {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.education-date {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-left: var(--space-sm);
}

.education-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.education-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.education-card a:hover h3 {
  text-decoration: underline;
}

/* Call Request Modal */
.call-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.call-modal-overlay.active {
  display: flex;
}

.call-modal-box {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius);
  max-width: 360px;
  width: 90%;
}

.call-modal-box h3 {
  margin-bottom: 0.3rem;
  color: var(--color-primary);
}

.call-modal-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.call-modal-box label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-top: var(--space-sm);
  margin-bottom: 0.3rem;
}

.call-modal-box input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-sizing: border-box;
}

.call-modal-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.call-modal-actions button {
  flex: 1;
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

#callModalCancel {
  background: var(--color-bg-soft);
  color: var(--color-text);
}

#callModalSubmit {
  background: var(--color-primary);
  color: white;
}

.call-modal-status {
  font-size: 0.85rem;
  margin-top: var(--space-sm);
  text-align: center;
}

.phone-reference {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Research & Academic Contributions */
.research-search {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto var(--space-md);
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.research-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.research-item {
  background: var(--color-bg-soft);
  padding: var(--space-md);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
}

.research-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(15,76,92,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  margin-bottom: 0.4rem;
}

.research-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--color-text);
}

.research-item a h3 {
  color: var(--color-primary);
  text-decoration: underline;
}

.research-venue {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Announcement Banner */
.announcement-banner {
  background: var(--color-accent);
  color: white;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
/* Services — specialist expertise cards, collapsible */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.service-card {
  background: var(--color-bg);
  transition: background 0.25s ease;
}

.service-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.service-card:has(.service-toggle[aria-expanded="true"]) {
  background: var(--color-bg-soft);
}

.service-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.service-toggle h3 {
  font-size: 1.3rem;
  margin: 0;
  flex-grow: 1;
}

.service-card .condition-body {
  padding: 0 var(--space-md);
}

.service-card .condition-icon {
  margin-left: auto;
}
.service-toggle[aria-expanded="true"] + .condition-body {
  max-height: 300px;
  padding: var(--space-md);
}

.service-toggle[aria-expanded="true"] .condition-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}


.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Conditions We Treat — collapsible scannable cards */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  align-items: start;
}

.condition-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.condition-card:has(.condition-toggle[aria-expanded="true"]) {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(26,47,58,0.08);
}

.condition-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.condition-toggle h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0;
}

.condition-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-accent);
  transition: transform 0.3s ease, background 0.25s ease;
}

.condition-toggle[aria-expanded="true"] .condition-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.condition-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-md);
}

.condition-toggle[aria-expanded="true"] + .condition-body {
  max-height: 300px;
  padding: 0 var(--space-md) var(--space-md);
}

.condition-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   UNIFIED BUTTON SYSTEM
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.95rem 2.1rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(26,47,58,0.18);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26,47,58,0.24);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26,47,58,0.18);
}

/* On-dark variants (hero background) */
.btn-primary-onDark {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.btn-primary-onDark:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}

.btn-secondary-onDark {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary-onDark:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}
/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}
/* Compact hours inside location cards */
.location-hours {
  margin-bottom: var(--space-sm);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.location-hours summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  list-style: none;
}

.location-hours summary::-webkit-details-marker {
  display: none;
}

.location-hours summary::after {
  content: '▾';
  margin-left: 0.4rem;
  color: var(--color-accent);
}

.location-hours[open] summary::after {
  content: '▴';
}

.location-hours-list {
  margin-top: var(--space-sm);
}

.location-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--color-border);
}

.location-hours-row:last-child {
  border-bottom: none;
}

.location-hours-row span:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

.site-footer {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: 0.3rem;
  font-size: 0.78rem;
}

.footer-credit a {
  color: var(--color-text-muted);
  text-decoration: underline;
}
