:root {
  --bg: #fdf8f3;
  --bg-elevated: #fbf5ef;
  --surface: rgba(255, 251, 245, 0.92);
  --surface-strong: rgba(255, 251, 245, 0.98);
  --primary: #8b5a3c;
  --primary-ink: #6b4428;
  --primary-soft: rgba(139, 90, 60, 0.10);
  --accent: #d4896a;
  --border-subtle: rgba(139, 90, 60, 0.12);
  --text-main: #3d2914;
  --text-soft: rgba(61, 41, 20, 0.64);
  --shadow-soft: 0 14px 34px rgba(139, 90, 60, 0.11);
  --shadow-faint: 0 8px 18px rgba(139, 90, 60, 0.09);
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1120px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 90, 60, 0.08), transparent 45%),
    radial-gradient(circle at 80% 12%, rgba(212, 137, 106, 0.10), transparent 46%),
    radial-gradient(circle at 50% 95%, rgba(212, 137, 106, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg), #f8f0e8);
  padding: 1.75rem 1rem 3.25rem;
  display: flex;
  justify-content: center;
}
.shell {
  width: 100%;
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
header {
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.95), rgba(251, 245, 235, 0.92));
  color: var(--text-main);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(139, 90, 60, 0.12), 0 2px 8px rgba(139, 90, 60, 0.08);
  border: 1px solid rgba(212, 137, 106, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 1rem;
  z-index: 10;
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
  opacity: 0.6;
}

.social-fb {
  position: fixed;
  top: 0.9rem;
  left: 0.9rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 90, 60, 0.16);
  background: rgba(255, 251, 245, 0.9);
  box-shadow: var(--shadow-faint);
  z-index: 50;
  text-decoration: none;
}

.social-fb svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-ink);
}

.social-fb:hover {
  transform: translateY(-1px);
}

.social-fb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 137, 106, 0.22), var(--shadow-faint);
}
.brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  flex: 1;
  justify-content: flex-start;
}
.brand-mark {
  width: auto;
  height: 90px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-ink);
  box-shadow: none;
  padding: 0;
}
.brand-mark img {
  width: auto;
  height: 100%;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

.page-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.page-logo-large {
  width: 280px;
  height: auto;
  margin-top: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  align-self: flex-start;
}

.contact-hero {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-hero-text {
  flex: 0 1 36rem;
  min-width: 0;
}

.contact-hero .contact-list {
  margin-top: 1rem;
}

.highlight-pink {
  border: 2px solid rgba(236, 72, 153, 0.38);
  background: rgba(236, 72, 153, 0.06);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.05rem 0.35rem;
  box-shadow: 0 14px 26px rgba(236, 72, 153, 0.08);
}

.highlight-green {
  border: 2px solid rgba(22, 163, 74, 0.36);
  background: rgba(22, 163, 74, 0.06);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.05rem 0.35rem;
  box-shadow: 0 14px 26px rgba(22, 163, 74, 0.08);
}
.brand-text h1 {
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 700;
  color: var(--primary-ink);
  line-height: 1.2;
}
.brand-text span {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 0.1rem;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.7), rgba(251, 245, 235, 0.6));
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 137, 106, 0.12);
  box-shadow: inset 0 1px 3px rgba(139, 90, 60, 0.08);
}
nav a {
  text-decoration: none;
  color: rgba(61, 41, 20, 0.75);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}
nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: none;
  box-shadow: 0 2px 8px rgba(139, 90, 60, 0.2);
}
nav a:hover:not(.active) {
  background: rgba(212, 137, 106, 0.12);
  color: var(--primary-ink);
  transform: translateY(-1px);
}
main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  align-items: flex-start;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.65rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 90, 60, 0.08), transparent 58%),
    radial-gradient(circle at 18% 85%, rgba(212, 137, 106, 0.08), transparent 55%);
  pointer-events: none;
}
h2 {
  color: var(--primary-ink);
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.25;
}
.lede {
  font-size: 0.98rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  max-width: 34rem;
  line-height: 1.6;
}
.section-block {
  margin-top: 1.6rem;
}
.section-block h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: rgba(61, 41, 20, 0.92);
  margin-bottom: 0.55rem;
}
.section-block p {
  color: rgba(61, 41, 20, 0.72);
  line-height: 1.7;
  max-width: 48rem;
}
.value-list {
  margin-top: 0.7rem;
  padding-left: 1.15rem;
  color: rgba(61, 41, 20, 0.72);
  display: grid;
  gap: 0.45rem;
  border-color: 5px solid rgba(212, 137, 106, 0.14);
}
.value-list li {
  line-height: 1.55;
}
.gallery {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.gallery-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 90, 60, 0.14);
  box-shadow: 0 14px 28px rgba(139, 90, 60, 0.10);
}
.split {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
.card-subtle {
  background: rgba(255, 249, 240, 0.80);
  border: 1px solid rgba(139, 90, 60, 0.12);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.05rem 1.1rem;
  box-shadow: 0 12px 26px rgba(139, 90, 60, 0.08);
}

.card-subtle.highlight-pink {
  border: 2px solid rgba(236, 72, 153, 0.42);
  background: rgba(236, 72, 153, 0.06);
  box-shadow: 0 14px 26px rgba(236, 72, 153, 0.10);
}

/* Green highlight styling for cancer screening boxes */
.card-subtle.highlight-green {
  border: 2px solid rgba(24, 100, 53, 0.85);
  background: rgba(34, 97, 94, 0.08);
  box-shadow: 0 14px 26px rgba(34, 97, 94, 0.12);
}
.card-subtle h4 {
  font-size: 0.95rem;
  color: rgba(61, 41, 20, 0.9);
  margin-bottom: 0.55rem;
}
.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(61, 41, 20, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(61, 41, 20, 0.08);
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}
.cta-block {
  background: rgba(212, 137, 106, 0.10);
  border: 1px solid rgba(212, 137, 106, 0.20);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.15rem 1.25rem;
}
.cta-block .lede {
  max-width: 46rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}
.pill {
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 90, 60, 0.14);
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(61, 41, 20, 0.72);
  background: rgba(255, 251, 245, 0.74);
}
.hero-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.stat {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(139, 90, 60, 0.08);
  border: 1px solid rgba(139, 90, 60, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.stat strong {
  font-size: 1.1rem;
}
.stat span {
  font-size: 0.78rem;
  color: var(--text-soft);
}
.contact-list,
.team-list {
  list-style: none;
  margin-top: 1.2rem;
  padding: 0;
}
.team-member {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed rgba(139, 90, 60, 0.3);
}
.team-member:last-child {
  border-bottom: none;
}
.team-photo {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 2px solid rgba(212, 137, 106, 0.6);
  box-shadow: 0 10px 20px rgba(139, 90, 60, 0.22);
  object-fit: cover;
  background: rgba(255, 251, 245, 0.9);
}

.team-photo-portrait {
  width: 200px;
  height: 260px;
  border-radius: var(--radius-md);
  object-position: center 18%;
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 2px solid rgba(212, 137, 106, 0.6);
  box-shadow: 0 10px 20px rgba(139, 90, 60, 0.22);
  background: rgba(139, 90, 60, 0.10);
  color: var(--primary-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-meta strong {
  display: block;
  font-size: 1.15rem;
}
.team-meta span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
}
form {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
label {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(61, 41, 20, 0.78);
}
input,
textarea,
select {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 90, 60, 0.16);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(139, 90, 60, 0.14);
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.field-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.8rem;
}
button {
  margin-top: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: 0 14px 28px rgba(139, 90, 60, 0.26);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.1s ease;
}
button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 36px rgba(139, 90, 60, 0.30);
}
button:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(139, 90, 60, 0.28);
}
.hint {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(139, 90, 60, 0.10);
  color: var(--primary-ink);
  font-size: 0.76rem;
  font-weight: 500;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 90, 60, 0.20);
}
.aside-card {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.hours {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.4rem 1.2rem;
  font-size: 0.86rem;
}
.schedule {
  margin-top: 0.65rem;
  border: 1px solid rgba(139, 90, 60, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.35fr 1fr;
}
.schedule-cell {
  padding: 0.55rem 0.6rem;
  font-size: 0.83rem;
  color: rgba(61, 41, 20, 0.78);
  border-right: 1px solid rgba(139, 90, 60, 0.18);
  border-top: 1px solid rgba(139, 90, 60, 0.18);
  line-height: 1.2;
}
.schedule-row:first-child .schedule-cell {
  border-top: none;
}
.schedule-cell:last-child {
  border-right: none;
}
.schedule-head .schedule-cell {
  background: rgba(139, 90, 60, 0.06);
  font-weight: 700;
  color: rgba(61, 41, 20, 0.9);
}
.schedule-row:not(.schedule-head) .schedule-cell:first-child {
  font-weight: 600;
  color: rgba(61, 41, 20, 0.86);
}
.hours span:nth-child(odd) {
  color: var(--text-soft);
}
.hours span:nth-child(even) {
  font-weight: 500;
}
footer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(61, 41, 20, 0.55);
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.footer-brand img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.92;
}
@media (max-width: 880px) {
  main {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  header {
    padding-left: 4.25rem;
  }
  .contact-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-logo-large {
    height: 86px;
    margin-top: 0.35rem;
    margin-right: 0;
  }
  .team-photo-portrait {
    width: 160px;
    height: 220px;
  }
  .team-photo {
    width: 80px;
    height: 80px;
  }
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-photo {
    height: 190px;
  }
  .map-embed iframe {
    height: 200px;
  }
  .schedule {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .schedule-row {
    min-width: 640px;
  }
  body {
    padding: 1.1rem 0.8rem 2.6rem;
  }
}

@media (max-width: 720px) {
  body {
    padding: 1rem 0.75rem 2rem;
  }
  header {
    padding-left: 3.75rem;
  }
  .social-fb {
    width: 38px;
    height: 38px;
    top: 0.75rem;
    left: 0.75rem;
  }
  .social-fb svg {
    width: 18px;
    height: 18px;
  }
  .brand-text h1 {
    font-size: 1.1rem;
  }
  .brand-text span {
    font-size: 0.82rem;
  }
  nav {
    gap: 0.1rem;
    padding: 0.25rem;
  }
  nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }
  .page-logo-large {
    width: 200px;
    margin-top: 1.5rem;
  }
  .contact-hero {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-hero-text {
    flex: 1;
  }
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-photo.team-photo-portrait {
    width: 220px;
    height: 300px;
    margin-bottom: 1.5rem;
  }
  .team-meta {
    width: 100%;
  }
  .brand-mark {
    height: 62px;
  }
  nav {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .social-fb {
    top: 0.75rem;
    left: 0.75rem;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 640px) {
  header {
    padding: 0.95rem 1.05rem;
    padding-left: 4.15rem;
  }
  .brand-text h1 {
    font-size: 1.15rem;
  }
  .brand-mark {
    height: 62px;
  }
  nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
  .field-inline {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-photo {
    height: 190px;
  }
  .map-embed iframe {
    height: 200px;
  }
  .schedule {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .schedule-row {
    min-width: 640px;
  }
  body {
    padding: 1.1rem 0.8rem 2.6rem;
  }
}

