/* ===================================================
   dralanteh.net — design system
   Modern, clean, fast. No external dependencies.
   =================================================== */

:root {
  --bg:           #ffffff;
  --fg:           #0f172a;
  --muted:        #64748b;
  --line:         #e2e8f0;
  --card:         #ffffff;
  --accent:       #0f766e;
  --accent-dark:  #134e4a;
  --accent-light: #99f6e4;
  --accent-bg:    #f0fdfa;
  --shadow-sm:    0 1px 3px rgba(15,23,42,.04), 0 4px 12px rgba(15,23,42,.06);
  --shadow-md:    0 4px 16px rgba(15,23,42,.08), 0 12px 40px rgba(15,23,42,.06);
  --r:            16px;
  --r-sm:         10px;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.brand {
  font-weight: 800;
  font-size: 15px;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.2px;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nav a:hover    { color: var(--fg); background: #f1f5f9; }
.nav a.active   { color: var(--accent); background: var(--accent-bg); font-weight: 600; }

.nav .btn-appt {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 10px;
  transition: background .15s;
}
.nav .btn-appt:hover { background: var(--accent-dark); }

/* ===== HERO (homepage) ===== */
.hero-section {
  background: linear-gradient(150deg, #d0f5f0 0%, #e8faf7 40%, #f9fefe 100%);
  padding: 68px 0 76px;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: center;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 118, 110, .12);
  border: 1px solid rgba(15, 118, 110, .25);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

h1.hero-name {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 16px;
}

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.cred-pill {
  background: rgba(15, 118, 110, .08);
  border: 1px solid rgba(15, 118, 110, .2);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .1px;
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.65;
  max-width: 500px;
}

.hero-reg {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 34px;
}

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

/* Profile photo */
.hero-photo {
  width: 230px;
  height: 230px;
  min-width: 230px;
  min-height: 230px;
  max-width: 230px;
  max-height: 230px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bg) 0%, var(--accent-light) 100%);
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-initials {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  opacity: .28;
  user-select: none;
  letter-spacing: -3px;
}

/* ===== INFO STRIP ===== */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin: 52px 0 44px;
  box-shadow: var(--shadow-sm);
}

.info-strip-item {
  padding: 22px 28px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.info-strip-item:last-child { border-right: none; }

.info-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.info-strip-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
}

.info-strip-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== CARDS GRID ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #cbd5e1;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.card p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 22px;
  line-height: 1.65;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.card-link:hover { text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  line-height: 1;
  transition: background .15s, transform .1s, box-shadow .15s;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 118, 110, .28);
}

.btn:active { transform: none; box-shadow: none; }

.btn.secondary {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--line);
  box-shadow: none;
}

.btn.secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: none;
  transform: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(150deg, var(--accent-bg) 0%, #ffffff 60%);
  padding: 52px 0 44px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: var(--fg);
}

.page-hero .page-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}

.page-hero .page-sub a { color: var(--accent); }

/* ===== CONTENT BLOCKS ===== */
.content-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
}

.content-block-header {
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}

.content-block-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.content-block-body {
  padding: 4px 28px 24px;
}

/* ===== HOURS ===== */
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.hour-row:last-child  { border-bottom: none; }
.hour-day             { color: var(--fg); font-weight: 500; }
.hour-time            { color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
.hour-row.closed .hour-time { color: var(--muted); font-weight: 400; }

/* ===== CONTACT ROWS ===== */
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child { border-bottom: none; }

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}

.contact-value a  { color: var(--accent); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.contact-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

/* ===== ALERT ===== */
.alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  margin-top: 20px;
  font-size: 14px;
  color: #78350f;
  line-height: 1.6;
}

.alert-icon { font-size: 17px; flex-shrink: 0; margin-top: 2px; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fafc;
  margin-top: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 20px;
}

.footer-brand { font-weight: 700; color: var(--fg); font-size: 15px; }

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  font-size: 12px;
  color: #94a3b8;
  padding: 14px 0 20px;
  border-top: 1px solid var(--line);
}

/* ===== UTILITIES ===== */
.small  { font-size: 13px; }
.muted  { color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .hero-photo {
    width: 130px !important;
    height: 130px !important;
    min-width: 130px !important;
    min-height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
    border-width: 4px;
    order: -1;
  }
  .hero-photo-initials { font-size: 42px; }
  .info-strip {
    grid-template-columns: 1fr;
  }
  .info-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .info-strip-item:last-child { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .nav .btn-appt { display: none; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 40px 0 52px; }
  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: 32px; letter-spacing: -.5px; }
  h1.hero-name { letter-spacing: -1px; }
  .content-block-header,
  .content-block-body { padding-left: 20px; padding-right: 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
}
