/* Clean medical dark theme (green + charcoal). */
:root {
  --bg: #0e1512;
  --surface: #14201a;
  --surface-2: #1b2a22;
  --card: #1a2721;
  --text: #e7f3ec;
  --muted: #b5c9bc;
  --primary: #2ea24d;
  --primary-2: #25853f;
  --border: rgba(183, 214, 196, 0.2);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--card);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 21, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-title {
  display: inline-block;
  max-width: 60vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 120ms ease, color 120ms ease;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(46, 162, 77, 0.2);
  color: #d4f3df;
  outline: none;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
  }

  .site-header.is-open .site-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  .nav-link {
    padding: 10px 12px;
  }
}

/* Sections */
.section {
  padding: 64px 0;
}
.section.alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.section-header {
  margin-bottom: 22px;
}

h1,
h2,
h3 {
  margin: 0;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.small-muted {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.tiny-muted {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 38px 0 52px;
  background: radial-gradient(1000px 500px at 20% 0%, rgba(46, 162, 77, 0.18), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.hero-kicker {
  margin: 0;
  color: var(--primary-2);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-title {
  margin-top: 10px;
  font-size: 3rem;
  letter-spacing: -0.9px;
}

.hero-tagline {
  margin-top: 12px;
  font-size: 1.6rem;
  color: var(--primary-2);
  line-height: 1.25;
}

.hero-intro {
  margin-top: 14px;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(27, 42, 34, 0.92);
  border: 1px solid rgba(46, 162, 77, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-inner {
  padding: 18px;
}
.info-list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}
.info-list li {
  margin: 10px 0;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.hero-cta-row {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: rgba(31, 138, 58, 0.25);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-2);
  outline: none;
}

.btn-secondary {
  background: var(--card);
  color: #d8f6e2;
  border-color: rgba(46, 162, 77, 0.45);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(46, 162, 77, 0.18);
  outline: none;
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.inline-link {
  color: var(--primary-2);
  text-decoration: none;
  border-bottom: 1px dashed rgba(31, 138, 58, 0.35);
}
.inline-link:hover {
  border-bottom-style: solid;
}

/* About */
.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.image-frame {
  background: rgba(27, 42, 34, 0.92);
  border: 1px solid rgba(46, 162, 77, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.image-frame img {
  border-radius: 12px;
}

/* About photo gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.photo {
  margin: 0;
}

.photo-gallery .photo:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.photo-gallery .photo:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.photo-gallery .photo:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #121c17;
}

.details-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.details-card p {
  margin: 10px 0;
  color: var(--muted);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cards-grid.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  min-height: 140px;
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.quote {
  font-size: 1.02rem;
  color: var(--text);
}
.quote-meta {
  margin-top: 14px !important;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.contact-aside {
  padding-top: 52px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.contact-card p {
  margin: 12px 0;
  color: var(--muted);
}

.timing-title {
  margin-bottom: 6px;
}
.timing-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.timing-row:first-of-type {
  border-top: none;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.contact-actions .btn {
  width: 100%;
}

.mini-card {
  background: rgba(27, 42, 34, 0.92);
  border: 1px solid rgba(46, 162, 77, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.mini-card h3 {
  margin: 0;
  font-size: 1.1rem;
}
.mini-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.footer-brand {
  margin: 0 0 10px;
}
.footer-right {
  text-align: right;
}

/* Responsive */
@media (max-width: 980px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .photo-gallery .photo:first-child,
  .photo-gallery .photo:nth-child(2),
  .photo-gallery .photo:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .cards-grid,
  .cards-grid.testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-aside {
    margin-top: 16px;
    padding-top: 0;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .section-grid {
    gap: 14px;
  }

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

  .details-card {
    padding: 14px;
  }

  .details-card p {
    margin: 12px 0;
    line-height: 1.6;
  }

  .details-card p strong {
    display: block;
    margin-bottom: 2px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .section {
    padding: 48px 0;
  }

  .cards-grid,
  .cards-grid.testimonials-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    height: 320px;
  }
}

