/*
  Procee Medical Office website design
  To change the look, start by editing the color variables below.
*/
:root {
  --bg: #f7fbfa;
  --surface: #ffffff;
  --surface-soft: #eef7f5;
  --ink: #18312f;
  --muted: #5d6f6d;
  --primary: #0f766e;
  --primary-dark: #0a5c56;
  --primary-soft: #d7f2ee;
  --accent: #c68d3b;
  --accent-soft: #fff3df;
  --border: #d9e7e4;
  --shadow: 0 18px 45px rgba(24, 49, 47, 0.10);
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-small: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.10), transparent 34rem), var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--primary);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.notice-bar {
  background: var(--ink);
  color: white;
  font-size: 0.92rem;
}

.notice-inner {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 250, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 231, 228, 0.9);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #39a79b);
  color: white;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 25px rgba(15, 118, 110, 0.24);
}

.brand-text {
  display: grid;
}

.brand-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: -2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--primary-soft);
  color: var(--primary-dark);
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  padding-top: 92px;
  padding-bottom: 80px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 820px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.contact-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 25px rgba(15, 118, 110, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--primary-dark);
}

.button.secondary {
  background: var(--surface);
  color: var(--primary-dark);
  border-color: var(--border);
}

.button.ghost {
  color: var(--primary-dark);
  background: transparent;
}

.button.full {
  width: 100%;
}

.hero-card,
.card,
.service-card,
.info-card,
.map-card,
.schedule-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-large);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: var(--primary-soft);
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  background: var(--accent-soft);
  color: #8a5c1d;
  font-weight: 800;
  font-size: 0.84rem;
  border-radius: 999px;
  margin-bottom: 18px;
}

.summary-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.summary-list div {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.summary-list dt {
  font-weight: 800;
  margin-bottom: 3px;
}

.summary-list dd {
  margin: 0;
  color: var(--muted);
}

.alert-section {
  padding: 0 0 56px;
}

.schedule-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.schedule-panel .eyebrow,
.schedule-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.schedule-panel h2 {
  margin-bottom: 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.cards,
.service-grid,
.info-grid {
  display: grid;
  gap: 20px;
}

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

.card,
.service-card,
.info-card,
.map-card {
  border-radius: var(--radius-medium);
  padding: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card.featured {
  border-color: rgba(15, 118, 110, 0.35);
  background: linear-gradient(180deg, #ffffff, #f0faf8);
}

.card-topline {
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 999px;
}

.card p,
.service-card li,
.info-card p,
.map-card p,
.steps p {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.mini-note,
.mini-alert {
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: var(--radius-small);
  font-size: 0.95rem;
}

.mini-note {
  background: var(--surface-soft);
}

.mini-alert {
  background: var(--accent-soft);
  color: #7a531e !important;
}

.process-section {
  background: var(--surface-soft);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 18px;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.steps h3,
.steps p {
  margin-bottom: 0;
}

.services-section {
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.service-card li + li {
  margin-top: 8px;
}

.doctor-card {
  background: linear-gradient(180deg, #ffffff, #f7fbfa);
}

.soft-section {
  background: white;
}

.info-grid {
  grid-template-columns: repeat(4, 1fr);
}

.privacy-card {
  background: var(--accent-soft);
}

.contact-section {
  background: var(--ink);
  color: white;
}

.contact-section .eyebrow,
.contact-section .contact-lead,
.contact-list p,
.contact-list a,
.map-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list p {
  margin-bottom: 0;
}

.contact-list strong {
  color: white;
}

.map-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.map-placeholder {
  min-height: 220px;
  margin-top: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 118, 110, 0.48), rgba(255, 255, 255, 0.12));
  background-size: 28px 28px, 28px 28px, cover;
}

.map-placeholder span {
  display: block;
  font-weight: 800;
  font-size: 1.35rem;
}

.map-placeholder small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.site-footer {
  background: #102321;
  color: rgba(255, 255, 255, 0.74);
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 22px;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin-bottom: 6px;
}

.last-updated {
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .schedule-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .three-col,
  .service-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .menu-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .notice-inner {
    display: block;
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .three-col,
  .service-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .brand-subtitle {
    display: none;
  }
}
