/* ============================================================
   LUCEARE DENTAL CLINIC - Stylesheet v2
   Design System: Component sheet reference
   Palette: White + Warm Beige/Gold (#C9A876) + Teal (#5BA4A4) + Coral (#E8856C)
   Icons: Outlined thin-line style
   ============================================================ */

:root {
  --color-bg: #fdfaf6;
  --color-bg-alt: #f7f2ec;
  --color-cream: #fbf6ef;
  --color-beige: #ede2d0;
  --color-gold: #c9a876;
  --color-gold-dark: #b0905e;
  --color-gold-light: #e8d6b8;
  --color-teal: #5ba4a4;
  --color-teal-dark: #4a8f8f;
  --color-teal-light: #e8f4f3;
  --color-teal-bg: #f0f8f7;
  --color-coral: #e8856c;
  --color-coral-light: #fdf0ec;
  --color-text: #3d3830;
  --color-text-soft: #6e6459;
  --color-line: #e7ddd0;
  --color-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(70, 50, 20, 0.04);
  --shadow-md: 0 6px 24px rgba(70, 50, 20, 0.07);
  --shadow-lg: 0 14px 40px rgba(70, 50, 20, 0.10);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-jp: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-gold); }

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

.skip-link {
  position: absolute; left: -9999px;
  background: var(--color-teal); color: white;
  padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================================
   HEADER (02. Header / Navigation)
   - White background, gold active underline, dark teal CTA
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 221, 208, 0.4);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center;
  padding: 12px 24px;
  gap: 20px;
}

/* Logo (01) */
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { color: var(--color-text); }
.brand-logo { width: 44px; height: 44px; flex-shrink: 0; }
.brand-logo svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-jp {
  font-family: var(--font-serif);
  font-size: .95rem; font-weight: 600;
  color: var(--color-text);
}
.brand-en {
  font-family: var(--font-display);
  font-size: .6rem; letter-spacing: .22em;
  color: var(--color-gold-dark);
  margin-top: 2px;
}

/* Navigation - gold active underline */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex; gap: 0; justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  font-size: .87rem; color: var(--color-text);
  font-weight: 500; padding: 8px 14px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform .2s;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold-dark);
}

/* WEB予約 Button - Dark teal with white text */
.header-cta {
  display: flex; align-items: center; gap: 10px;
  background: var(--color-teal-dark);
  color: white !important; padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(91, 164, 164, 0.25);
  white-space: nowrap;
  text-decoration: none;
  transition: all .25s;
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--color-teal);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 164, 164, 0.35);
  color: white;
}
.cta-icon { font-size: 1.1rem; }
.cta-text { display: flex; flex-direction: column; line-height: 1.2; }
.cta-main { font-weight: 700; font-size: .9rem; }
.cta-sub { font-size: .6rem; opacity: .85; }
.cta-arrow { font-size: .7rem; opacity: .7; margin-left: 2px; }

.menu-toggle {
  display: none;
  background: transparent; border: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO - Left half solid white gradient, right shows image
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  background: var(--color-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/* LEFT HALF completely white, fading to transparent on right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.3) 65%,
    rgba(255, 255, 255, 0) 80%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
}
.hero-text-area {
  max-width: 480px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.45;
  font-weight: 500;
  margin: 0 0 1.2rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.hero-line { display: block; }
.hero-number {
  font-family: var(--font-display);
  font-size: 1.35em;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.9;
  margin: 0;
}

/* Hero Feature Badges (03) - Circular with outlined icons */
.hero-features-bar {
  position: absolute;
  bottom: 60px;
  left: 40px;
  z-index: 4;
  display: flex;
  gap: 18px;
}
.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.hero-feature-circle {
  width: 72px; height: 72px;
  background: var(--color-white);
  border: 1.5px solid var(--color-line);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hero-feature-circle svg {
  width: 32px; height: 32px;
}
.hero-feature-text {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  max-width: 90px;
}

/* Hero bottom wave (10) */
.hero-bottom-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 5;
  line-height: 0;
}
.hero-bottom-wave svg {
  width: 100%;
  height: 50px;
}

/* ============================================================
   BUTTONS (07, 09)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .92rem;
  border: 2px solid transparent;
  cursor: pointer; transition: all .25s;
  text-decoration: none;
  font-family: var(--font-jp);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-primary {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 118, 0.3);
}
.btn-outline {
  background: white;
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn-outline:hover {
  background: var(--color-teal);
  color: white;
  border-color: var(--color-teal);
}
.btn-outline .btn-arrow {
  color: var(--color-teal);
  transition: color .25s;
}
.btn-outline:hover .btn-arrow { color: white; }

/* Large CTA buttons (09) */
.btn-cta-gold {
  background: var(--color-gold-light);
  color: var(--color-text);
  border: none;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.btn-cta-gold:hover {
  background: var(--color-gold);
  color: white;
  transform: translateY(-2px);
}
.btn-cta-coral {
  background: var(--color-coral);
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.btn-cta-coral:hover {
  background: #d6745c;
  color: white;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADINGS (06) - Decorated with lines
   ============================================================ */
.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin: 0 0 .5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  letter-spacing: .08em;
}
.section-title::before,
.section-title::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--color-gold);
}
.section-title .zen { letter-spacing: .25em; padding-left: .25em; }
.section-sub {
  text-align: center; color: var(--color-text-soft);
  margin-bottom: 3rem;
  font-size: .92rem;
}

/* ============================================================
   FEATURE CARDS (04) - Teal/mint background cards
   ============================================================ */
.features { background: var(--color-bg); padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--color-teal-bg);
  padding: 36px 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  border: 1px solid rgba(91, 164, 164, 0.1);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  background: var(--color-white);
  border: 1.5px solid var(--color-teal);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--color-teal);
  font-size: 1.4rem;
}
.feature-card h3 {
  font-family: var(--font-jp);
  font-size: .95rem; font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
}
.feature-card p {
  font-size: .82rem; color: var(--color-text-soft);
  margin: 0 0 14px; line-height: 1.7;
}
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem;
  color: var(--color-teal);
  font-weight: 500;
}
.feature-link i { font-size: .7rem; }

/* ============================================================
   SEDATION HIGHLIGHT
   ============================================================ */
.sedation-highlight {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
  padding: 80px 0;
  position: relative;
}
.sh-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px; align-items: center;
}
.sh-eyebrow {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  letter-spacing: .15em;
  margin-bottom: .8rem;
  font-size: .9rem;
}
.sh-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--color-text);
}
.sh-lead { line-height: 1.9; margin-bottom: 1.5rem; color: var(--color-text-soft); }
.sh-lead strong { color: var(--color-gold-dark); }
.sh-bullets {
  list-style: none; padding: 0; margin: 0 0 1.8rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.sh-bullets li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .9rem;
}
.sh-bullets i { color: var(--color-teal); margin-top: 4px; }
.sh-image {
  display: grid; place-items: center;
  font-size: 7rem; color: var(--color-gold);
  opacity: .2;
}

/* ============================================================
   MENU GRID (05) - Outlined icon style
   ============================================================ */
.menu-section { padding: 80px 0; background: var(--color-bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.menu-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  transition: all .25s;
  color: var(--color-text);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-teal-light);
  color: var(--color-text);
}
.menu-icon {
  width: 56px; height: 56px;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  color: var(--color-teal);
  font-size: 1.8rem;
}
.menu-card h3 {
  font-family: var(--font-jp);
  font-size: .88rem; font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-text);
}
.menu-card p {
  font-size: .72rem; color: var(--color-text-soft);
  margin: 0; line-height: 1.4;
  display: none; /* Hide in grid for cleaner look */
}
.menu-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 8px;
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
  font-size: .65rem; font-weight: 600;
  border-radius: 50px;
}
.menu-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 80px 0; background: var(--color-bg-alt); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.eyebrow {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  letter-spacing: .12em;
  font-size: .88rem; margin: 0 0 .8rem;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.5; margin: 0 0 1rem;
}
.about-text p { color: var(--color-text-soft); line-height: 1.9; margin-bottom: 1rem; font-size: .92rem; }
.about-text .btn { margin-top: 1rem; }

/* ============================================================
   DOCTOR / ACCESS
   ============================================================ */
.doctor-section { padding: 80px 0; background: var(--color-bg); }
.doctor-card {
  max-width: 800px; margin: 0 auto;
  background: white; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}
.doctor-info { text-align: center; }
.doctor-role {
  color: var(--color-teal);
  font-family: var(--font-display);
  letter-spacing: .2em; font-size: .85rem;
  margin: 0 0 .3rem;
}
.doctor-name {
  font-family: var(--font-serif);
  font-size: 1.7rem; margin: 0 0 1rem;
}
.doctor-name-en {
  font-family: var(--font-display);
  font-size: .95rem; color: var(--color-text-soft);
  font-weight: 400;
}
.doctor-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-soft);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.2rem; text-align: left;
  margin: 1.5rem 0;
  line-height: 1.9;
}
.doctor-credentials {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  text-align: left;
}
.doctor-credentials li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: .9rem;
}
.doctor-credentials i { color: var(--color-teal); margin-right: 10px; }

.access-quick { padding: 80px 0; background: var(--color-bg-alt); }
.access-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 32px; align-items: start;
}
.access-info p { line-height: 1.9; }
.access-name {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 600;
  margin: 0 0 .8rem;
}
.access-name i { color: var(--color-teal); margin-right: 8px; }
.access-address { font-size: .95rem; }
.access-detail i { color: var(--color-teal); margin-right: 8px; }
.access-map iframe { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ============================================================
   FOOTER CTA (09) - Gold + Coral buttons
   ============================================================ */
.footer-cta {
  background: var(--color-white);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--color-line);
}
.footer-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 0 0 .5rem;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.footer-cta h2::before,
.footer-cta h2::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--color-gold);
}
.footer-cta p { color: var(--color-text-soft); margin-bottom: 1.5rem; font-size: .9rem; }
.footer-cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Footer */
.site-footer { background: #2c2620; color: #ddd; }
.footer-main { padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand-col {}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; flex-shrink: 0; filter: brightness(0) invert(.85); }
.footer-clinic-name {
  font-family: var(--font-serif);
  color: #f0e8db; font-size: 1rem; font-weight: 600;
  margin: 0;
}
.footer-clinic-en {
  font-family: var(--font-display);
  letter-spacing: .18em;
  color: var(--color-gold-light);
  font-size: .65rem; margin: 0;
}
.footer-brand-col address {
  font-style: normal;
  font-size: .82rem;
  color: #bdb6ad; line-height: 1.8;
}
.footer-brand-col a { color: var(--color-gold-light); }
.footer-nav h3, .footer-hours h3 {
  font-family: var(--font-serif);
  color: #f0e8db; font-size: .9rem;
  margin: 0 0 .8rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4138;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .35rem; }
.footer-nav a { color: #bdb6ad; font-size: .8rem; }
.footer-nav a:hover { color: var(--color-gold-light); }

.footer-hours table {
  width: 100%; border-collapse: collapse;
  font-size: .75rem; color: #bdb6ad;
  margin-bottom: .8rem;
}
.footer-hours th, .footer-hours td {
  border: 1px solid #4a4138;
  padding: 3px 2px; text-align: center;
}
.footer-hours th { background: #3a342c; color: #f0e8db; font-weight: 500; }
.hours-note { font-size: .7rem; color: #948c83; line-height: 1.6; margin: 0; }

.footer-bottom {
  border-top: 1px solid #4a4138;
  padding: 18px 0;
  text-align: center;
  font-size: .75rem; color: #948c83;
}

/* ============================================================
   WAVE DIVIDER (10) - Between sections
   ============================================================ */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { width: 100%; height: 40px; }

/* ============================================================
   LEAF ORNAMENT (11)
   ============================================================ */
.leaf-ornament {
  text-align: center;
  margin: 2rem 0;
  opacity: .4;
}
.leaf-ornament svg { display: inline-block; width: 120px; height: 20px; }

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg-alt) 100%);
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0 0 .8rem;
  letter-spacing: .05em;
  color: var(--color-text);
}
.page-hero h1 i { color: var(--color-teal); margin-right: 12px; }
.ph-eyebrow {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  letter-spacing: .2em;
  margin-bottom: .5rem;
}
.ph-sub { color: var(--color-text-soft); max-width: 720px; margin: 0 auto; line-height: 1.9; }
.ph-sub strong { color: var(--color-gold-dark); }
.breadcrumb { font-size: .82rem; color: var(--color-text-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--color-text-soft); }

.sedation-hero { background: linear-gradient(135deg, #f4ede0 0%, #e6d9c0 100%); }
.fear-hero { background: linear-gradient(135deg, #f4eee5 0%, #e7e0d3 100%); }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 64px 0; }
.content-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 2.5rem 0 1rem;
  padding-left: 16px;
  border-left: 4px solid var(--color-teal);
  line-height: 1.5;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 1.6rem 0 .8rem;
  color: var(--color-text);
}
.content-section p { line-height: 1.95; color: var(--color-text); margin-bottom: 1rem; }
.content-section .lead {
  font-size: 1rem; color: var(--color-text-soft);
  background: var(--color-teal-bg);
  padding: 24px; border-radius: var(--radius);
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin: 1.5rem 0 2rem;
}
.info-card {
  background: white; border: 1px solid var(--color-line);
  padding: 22px; border-radius: var(--radius);
}
.info-card h3 { margin: 0 0 .5rem; font-size: 1rem; }
.info-card h3 i { color: var(--color-teal); margin-right: 8px; }
.info-card p { margin: 0; font-size: .88rem; color: var(--color-text-soft); }

.callout-box {
  background: var(--color-cream);
  border-left: 4px solid var(--color-gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.callout-box p { margin: 0 0 .5rem; line-height: 1.9; }
.callout-box p:last-child { margin: 0; }

.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--color-line);
  line-height: 1.7;
}
.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 6px; top: 12px;
  color: var(--color-teal);
}

.step-list {
  counter-reset: step;
  list-style: none; padding: 0; margin: 1rem 0;
}
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 56px;
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.step-list li::before {
  content: counter(step);
  position: absolute; left: 14px; top: 14px;
  width: 30px; height: 30px;
  background: var(--color-teal);
  color: white; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.procedure-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  list-style: none; padding: 0; margin: 1rem 0 2rem;
}
.procedure-list li {
  background: var(--color-teal-bg);
  padding: 12px 16px; border-radius: 8px;
  font-size: .88rem;
}
.procedure-list i { color: var(--color-teal-dark); margin-right: 6px; }

/* FAQ */
.faq-list { margin: 1rem 0 2rem; }
.faq-item {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--color-teal); }
.faq-item summary {
  padding: 18px 24px 18px 56px;
  cursor: pointer; font-weight: 600;
  font-size: .95rem;
  position: relative; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q';
  position: absolute; left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--color-teal);
  color: white; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
}
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-teal);
  transition: transform .2s;
  font-size: .8rem;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px 56px;
  position: relative;
  color: var(--color-text-soft);
  line-height: 1.95;
}
.faq-answer::before {
  content: 'A';
  position: absolute; left: 22px; top: 0;
  width: 26px; height: 26px;
  background: var(--color-coral-light);
  color: var(--color-coral);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
}

/* CTA BOX */
.cta-box {
  background: var(--color-teal-bg);
  padding: 36px; border-radius: var(--radius-lg);
  text-align: center; margin: 2.5rem 0;
  border: 1px solid rgba(91, 164, 164, 0.15);
}
.cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; margin: 0 0 .6rem;
}
.cta-box p { color: var(--color-text-soft); margin-bottom: 1.2rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ACCESS PAGE */
.big-address { font-size: 1.05rem; line-height: 1.9; margin: 1rem 0; font-style: normal; }
.hours-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
  font-size: .9rem;
}
.hours-table th, .hours-table td {
  border: 1px solid var(--color-line);
  padding: 10px; text-align: center;
}
.hours-table thead th { background: var(--color-teal-bg); }

/* DOCTOR DETAIL */
.doctor-detail {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}
.doctor-detail-head {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 1.5rem;
}
.doctor-detail blockquote {
  background: var(--color-cream);
  border-left: 4px solid var(--color-gold);
  padding: 20px 24px; margin: 1rem 0;
  font-family: var(--font-serif);
  line-height: 1.9;
}

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 2rem;
}
.contact-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px; text-align: center;
}
.contact-card h2 { margin: 0 0 1rem; padding: 0; border: none; font-size: 1.15rem; }
.contact-card.contact-primary {
  background: var(--color-teal-bg);
  border-color: var(--color-teal);
}
.big-tel {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 600;
  margin: .5rem 0 .2rem;
}
.big-tel a { color: var(--color-teal-dark); }
.form-section {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px; margin-top: 2rem;
}
.booking-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .88rem; font-weight: 500;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-family: inherit; font-size: .92rem;
  background: var(--color-bg);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  background: white;
}
.req {
  display: inline-block;
  background: var(--color-coral);
  color: white; font-size: .65rem;
  padding: 2px 7px; border-radius: 4px;
  margin-left: 6px;
}
.form-actions { text-align: center; margin-top: 1rem; }
.form-note { font-size: .78rem; color: var(--color-text-soft); text-align: center; margin-top: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-features-bar { gap: 14px; }
  .hero-feature-circle { width: 60px; height: 60px; }
}
@media (max-width: 960px) {
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 24px 100px; min-height: 480px; }
  .hero-features-bar { left: 24px; bottom: 40px; }
  .sh-inner { grid-template-columns: 1fr; }
  .sh-image { display: none; }
  .about-grid, .access-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .main-nav {
    position: fixed; top: 68px; left: 0; right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 16px 24px;
    border-top: 1px solid var(--color-line);
    display: none; z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--color-line); }
  .main-nav a { display: block; padding: 14px 4px; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 640px) {
  .hero { min-height: 420px; }
  .hero-content { min-height: 420px; padding: 50px 20px 90px; }
  .hero-headline { font-size: 1.6rem; }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.9) 50%,
      rgba(255,255,255,0.5) 70%,
      rgba(255,255,255,0.2) 100%
    );
  }
  .hero-features-bar {
    position: relative; bottom: auto; left: auto;
    margin-top: 20px;
    gap: 12px;
  }
  .hero-feature-circle { width: 52px; height: 52px; }
  .hero-feature-circle svg { width: 24px; height: 24px; }
  .hero-feature-text { font-size: .65rem; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sh-bullets { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .header-cta .cta-sub { display: none; }
  .header-cta .cta-arrow { display: none; }
  .header-cta { padding: 8px 12px; }
}
