/*
 * Crystal Dental — main stylesheet
 *
 * Most design tokens come from theme.json (palette, typography, spacing).
 * This file holds the supplemental pieces that theme.json can't express:
 * the always-visible phone bar, mobile bottom bar, clinic cards,
 * service tiles, testimonial slider, hero parallax scaffolding,
 * accordion, and print styles.
 */

/* -------------------------------------------------------
 * 1. Root / resets
 * ------------------------------------------------------- */
:root {
  --crystal-primary:        #326473;
  --crystal-primary-dark:   #244d5a;
  --crystal-accent:         #00bdc4;
  --crystal-accent-dark:    #009ea4;
  --crystal-secondary:      #42a58c;
  --crystal-tertiary:       #01a398;
  --crystal-footer:         #00102E;
  --crystal-text:           #2b3943;
  --crystal-text-muted:     #666667;
  --crystal-surface:        #ffffff;
  --crystal-surface-soft:   #f4fafb;
  --crystal-surface-muted:  #eff9f9;
  --crystal-border:         #d9e6ea;

  --crystal-shadow-soft:   0 2px 10px rgba(10,16,46,0.06);
  --crystal-shadow-med:    0 8px 30px rgba(10,16,46,0.10);
  --crystal-shadow-strong: 0 16px 50px rgba(10,16,46,0.18);

  --crystal-radius-sm: 8px;
  --crystal-radius-md: 14px;
  --crystal-radius-lg: 22px;
  --crystal-radius-pill: 999px;

  --crystal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --crystal-topbar-h: 40px;
  --crystal-nav-h: 88px;
  --crystal-mobile-bar-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--crystal-nav-h) + 12px); }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
/* Any element targeted by a hash link (#doctors, #why-us, #book, etc.) scrolls
 * so its top sits below the sticky header — not hidden by it. */
:target { scroll-margin-top: calc(var(--crystal-nav-h) + 20px); }
[id] { scroll-margin-top: calc(var(--crystal-nav-h) + 20px); }
img, svg, video { max-width: 100%; height: auto; }
a { transition: color 180ms var(--crystal-ease); }

/* Remove the default WP block-gap between top-level template sections so our
 * patterns stack flush with no white stripes between them. The internal
 * `.crystal-section` padding already creates proper breathing room. */
.wp-site-blocks,
.wp-site-blocks > main,
.wp-site-blocks > main > .wp-block-group {
  --wp--style--block-gap: 0;
}
.wp-site-blocks > * + *,
.wp-site-blocks > main > * + *,
.wp-site-blocks > main > .wp-block-group > * + *,
.crystal-section + .crystal-section,
.crystal-hero + section,
.crystal-hero + .wp-block-group,
.crystal-section + .crystal-site-footer,
.wp-block-group + .crystal-site-footer,
section + section {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}

:focus-visible {
  outline: 3px solid var(--crystal-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; word-wrap: normal;
}

/* -------------------------------------------------------
 * 2. Buttons
 * ------------------------------------------------------- */
.crystal-btn,
.wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--crystal-radius-pill);
  padding: 0.85rem 1.55rem;
  transition: transform 220ms var(--crystal-ease), background 220ms var(--crystal-ease), box-shadow 220ms var(--crystal-ease);
  text-decoration: none;
  line-height: 1;
  border: 2px solid transparent;
  white-space: nowrap;
}
.crystal-btn:hover, .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,189,196,0.25); }
.crystal-btn--primary { background: var(--crystal-accent); color: #fff; }
.crystal-btn--primary:hover { background: var(--crystal-primary); color: #fff; }
.crystal-btn--outline { background: transparent; color: var(--crystal-primary); border-color: var(--crystal-primary); }
.crystal-btn--outline:hover { background: var(--crystal-primary); color: #fff; }
.crystal-btn--ghost {
  background: var(--crystal-surface-muted);
  color: var(--crystal-primary);
  border-color: var(--crystal-border);
  padding-left: 1.1rem; padding-right: 1.1rem;
}
.crystal-btn--ghost:hover { background: var(--crystal-primary); color: #fff; border-color: var(--crystal-primary); }
.crystal-btn--ghost.is-my-clinic { background: var(--crystal-accent); color: #fff; border-color: var(--crystal-accent); }
.crystal-btn--ghost.is-my-clinic:hover { background: var(--crystal-accent-dark); border-color: var(--crystal-accent-dark); }
.crystal-btn--on-dark { color: #fff; border-color: rgba(255,255,255,0.5); }
.crystal-btn--on-dark:hover { background: #fff; color: var(--crystal-primary); border-color: #fff; }

/* -------------------------------------------------------
 * 3. Always-visible phone bar (top, desktop/tablet)
 * ------------------------------------------------------- */
.crystal-topbar {
  background: var(--crystal-primary);
  color: #fff;
  font-size: 0.9rem;
  min-height: var(--crystal-topbar-h);
  display: flex; align-items: center;
}
.crystal-topbar__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0.35rem 1rem;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.crystal-topbar__phones { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.crystal-topbar a { color: #fff; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; }
.crystal-topbar a:hover { color: var(--crystal-accent); }
.crystal-topbar__socials { display: flex; gap: 0.75rem; align-items: center; }
.crystal-topbar__socials a { opacity: 0.85; }
.crystal-topbar__socials a:hover { opacity: 1; }

.crystal-phone__label { opacity: 0.8; font-weight: 600; }
.crystal-phone__number { font-weight: 700; letter-spacing: 0.01em; }
.crystal-phone__icon { flex-shrink: 0; }

@media (max-width: 720px) {
  .crystal-topbar { display: none; } /* replaced by sticky bottom bar on mobile */
}

/* -------------------------------------------------------
 * 4. Main navigation (sticky, shrinks on scroll)
 * ------------------------------------------------------- */
.crystal-site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--crystal-ease), border-color 220ms var(--crystal-ease), box-shadow 220ms var(--crystal-ease);
  /* Guard against WP block padding pushing the logo off-centre. */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.crystal-site-header.is-scrolled {
  border-color: var(--crystal-border);
  box-shadow: var(--crystal-shadow-soft);
}
.crystal-site-header__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0.75rem 1rem;
  min-height: var(--crystal-nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.crystal-logo { display: inline-flex; align-items: center; line-height: 0; }
.crystal-logo img {
  display: block;
  height: clamp(48px, 6vw, 68px);
  width: auto;
  transition: height 220ms var(--crystal-ease), filter 220ms var(--crystal-ease);
  /* Give the logo a subtle lift on the glassy white bar so the outline reads. */
  filter: drop-shadow(0 1px 0 rgba(10,16,46,0.08)) drop-shadow(0 4px 10px rgba(10,16,46,0.06));
}
.is-scrolled .crystal-logo img { height: clamp(40px, 5vw, 54px); }

.crystal-nav { display: flex; align-items: center; gap: 1.25rem; }
.crystal-nav a { color: var(--crystal-primary); text-decoration: none; font-weight: 600; }
.crystal-nav a:hover { color: var(--crystal-accent); }
.crystal-nav > ul { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.crystal-nav > ul > li { position: relative; }
.crystal-nav > ul > li > a { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.35rem 0; }
.crystal-nav__caret {
  font-size: 0.7em;
  opacity: 0.7;
  transition: transform 220ms var(--crystal-ease), opacity 220ms var(--crystal-ease);
}
.crystal-nav__has-children:hover > a > .crystal-nav__caret,
.crystal-nav__has-children:focus-within > a > .crystal-nav__caret {
  transform: rotate(180deg);
  opacity: 1;
}
.crystal-nav > ul > li > ul {
  position: absolute; top: 100%; left: -1rem;
  background: #fff; border-radius: var(--crystal-radius-md);
  box-shadow: var(--crystal-shadow-med);
  min-width: 280px; padding: 0.75rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 180ms, visibility 180ms, transform 220ms var(--crystal-ease);
  border: 1px solid var(--crystal-border);
}
.crystal-nav > ul > li:hover > ul,
.crystal-nav > ul > li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.crystal-nav > ul > li > ul li a {
  display: block; padding: 0.55rem 0.8rem; border-radius: 8px;
  font-size: 0.95rem;
}
.crystal-nav > ul > li > ul li a:hover { background: var(--crystal-surface-muted); color: var(--crystal-primary); }
.crystal-nav__divider {
  height: 1px;
  background: var(--crystal-border);
  margin: 0.45rem 0.25rem;
  list-style: none;
}

.crystal-nav__toggle {
  display: none; background: transparent; border: 0; padding: 0.5rem; cursor: pointer;
}
.crystal-nav__toggle svg { width: 28px; height: 28px; color: var(--crystal-primary); }

@media (max-width: 960px) {
  .crystal-nav > ul { display: none; }
  .crystal-nav__toggle { display: inline-flex; }
  .crystal-nav__cta { display: none; }
}

/* Mobile overlay (hidden by default; JS adds .is-open) */
.crystal-mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 95;
  background: #fff;
  overflow-y: auto; padding: 1.5rem;
  padding-bottom: calc(var(--crystal-mobile-bar-h) + 1.5rem);
  opacity: 0;
  transition: opacity 220ms var(--crystal-ease);
}
.crystal-mobile-menu.is-open {
  display: block;
  opacity: 1;
}
.crystal-mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.crystal-mobile-menu__close { background: transparent; border: 0; padding: 0.5rem; cursor: pointer; }
.crystal-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.crystal-mobile-menu__list > li { border-bottom: 1px solid var(--crystal-border); }
.crystal-mobile-menu__list > li > a,
.crystal-mobile-menu__list > li > details > summary {
  display: block; padding: 1rem 0; font-size: 1.1rem; font-weight: 600;
  color: var(--crystal-primary); text-decoration: none;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.crystal-mobile-menu__list > li > details > summary::-webkit-details-marker { display: none; }
.crystal-mobile-menu__list > li > details > summary::after {
  content: "+";
  position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 300; color: var(--crystal-accent);
  transition: transform 220ms var(--crystal-ease);
  line-height: 1;
}
.crystal-mobile-menu__list > li > details[open] > summary::after {
  content: "–";
}
.crystal-mobile-submenu {
  padding: 0 0 0.75rem 0.85rem !important;
  border-left: 2px solid var(--crystal-surface-muted);
  margin-left: 0.1rem !important;
}
.crystal-mobile-submenu li a {
  display: block;
  padding: 0.55rem 0.25rem;
  font-size: 0.98rem;
  color: var(--crystal-text);
  font-weight: 500;
  text-decoration: none;
}
.crystal-mobile-submenu li a:hover,
.crystal-mobile-submenu li a:focus { color: var(--crystal-accent); }
.crystal-mobile-menu__cta {
  display: flex !important;
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}
.crystal-mobile-menu__clinics { display: grid; gap: 1rem; margin-bottom: 1.25rem; }

/* Mobile sticky bottom bar (always-visible phones) */
.crystal-mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  background: #fff; border-top: 1px solid var(--crystal-border);
  box-shadow: 0 -6px 20px rgba(10,16,46,0.08);
  padding: 0.5rem;
  gap: 0.45rem;
}
.crystal-mobile-bar__btn {
  flex: 1; min-height: 56px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 0.45rem;
  border-radius: var(--crystal-radius-md);
  text-decoration: none; color: var(--crystal-primary);
  font-size: 0.75rem; font-weight: 700;
  background: var(--crystal-surface-muted);
}
.crystal-mobile-bar__btn strong { font-size: 0.95rem; display: block; }
.crystal-mobile-bar__btn--primary { background: var(--crystal-accent); color: #fff; }

@media (max-width: 720px) {
  .crystal-mobile-bar { display: flex; }
  body { padding-bottom: var(--crystal-mobile-bar-h); }
}

/* -------------------------------------------------------
 * 5. Hero
 * ------------------------------------------------------- */
.crystal-hero {
  position: relative; overflow: hidden;
  min-height: clamp(480px, 80vh, 780px);
  color: #fff;
  isolation: isolate;
}
.crystal-hero__slide {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 900ms var(--crystal-ease);
  will-change: opacity;
}
.crystal-hero__slide.is-active { opacity: 1; z-index: 1; }
.crystal-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(100deg, rgba(0,16,46,0.78) 0%, rgba(50,100,115,0.55) 45%, rgba(0,16,46,0.20) 100%),
    linear-gradient(180deg, rgba(10,15,20,0.10) 0%, rgba(0,16,46,0.60) 100%);
}
.crystal-hero__inner {
  position: relative; z-index: 3;
  max-width: 1320px; margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 1rem;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  min-height: clamp(480px, 80vh, 780px);
}
.crystal-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #ffffff; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 1.1rem;
  padding: 0.45rem 0.9rem;
  background: rgba(0,189,196,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--crystal-radius-pill);
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0,16,46,0.35);
}
.crystal-hero__eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--crystal-accent); box-shadow: 0 0 0 3px rgba(0,189,196,0.35);
}
.crystal-hero__title { color: #fff; font-size: clamp(2.25rem, 5.5vw, 4.5rem); font-weight: 700; line-height: 1.05; max-width: 860px; margin: 0 0 1rem; text-shadow: 0 2px 12px rgba(0,16,46,0.35); }
.crystal-hero__sub { color: rgba(255,255,255,0.94); font-size: clamp(1.05rem, 1.6vw, 1.35rem); max-width: 640px; margin: 0 0 2rem; line-height: 1.55; text-shadow: 0 1px 6px rgba(0,16,46,0.3); }
.crystal-hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.crystal-hero__dots { position: absolute; left: 1rem; bottom: 1.25rem; z-index: 4; display: flex; gap: 0.5rem; }
.crystal-hero__dot {
  width: 34px; height: 4px; border-radius: 4px; border: 0;
  background: rgba(255,255,255,0.35); cursor: pointer; padding: 0;
  transition: background 220ms var(--crystal-ease), width 220ms var(--crystal-ease);
}
.crystal-hero__dot.is-active { background: var(--crystal-accent); width: 54px; }

/* -------------------------------------------------------
 * 5b. Interior page hero (About, Treatments hub, Contact)
 *     — a compact gradient banner with white title + subtitle
 *       shown above the breadcrumb strip on secondary pages.
 * ------------------------------------------------------- */
.crystal-page-hero {
  position: relative;
  overflow: hidden;
}
.crystal-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.14), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(0,189,196,0.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.crystal-page-hero > * { position: relative; z-index: 1; }
/* The post-title block; force white regardless of theme.json primary colour. */
.crystal-page-hero .wp-block-post-title,
.crystal-page-hero .crystal-page-hero__title,
.crystal-page-hero h1 {
  color: #ffffff !important;
  font-size: clamp(2.25rem, 4.2vw + 1rem, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 14px rgba(0,16,46,0.28);
  letter-spacing: -0.01em;
}
.crystal-page-hero .crystal-page-hero__sub,
.crystal-page-hero p {
  color: rgba(255,255,255,0.94) !important;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.2rem);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 720px;
  text-shadow: 0 1px 6px rgba(0,16,46,0.28);
}

/* Body column for interior pages — comfortable reading width + spacing. */
.crystal-page-body { }
.crystal-page-body > * { max-width: 100%; }
.crystal-page-body .wp-block-post-content > * + * { margin-top: 1.25rem; }
.crystal-page-body h2 {
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.1rem);
  line-height: 1.2;
  margin-top: 2.5rem;
  color: var(--crystal-primary);
}
.crystal-page-body h2:first-child { margin-top: 0; }
.crystal-page-body h3 {
  font-size: clamp(1.25rem, 0.7vw + 1rem, 1.5rem);
  margin-top: 2rem;
  color: var(--crystal-primary);
}
.crystal-page-body p,
.crystal-page-body li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--crystal-text);
}
.crystal-page-body ul,
.crystal-page-body ol { padding-left: 1.25rem; }
.crystal-page-body ul li + li,
.crystal-page-body ol li + li { margin-top: 0.4rem; }
.crystal-page-body strong { color: var(--crystal-primary); }
.crystal-page-body a { color: var(--crystal-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.crystal-page-body a:hover { color: var(--crystal-accent); }

/* -------------------------------------------------------
 * 6. Sections
 * ------------------------------------------------------- */
.crystal-section { padding: clamp(3rem, 8vw, 6rem) 1rem; }
.crystal-section--soft { background: var(--crystal-surface-soft); }
.crystal-section--muted { background: var(--crystal-surface-muted); }
.crystal-section--dark { background: var(--crystal-footer); color: #fff; }
.crystal-section--dark h1, .crystal-section--dark h2, .crystal-section--dark h3 { color: #fff; }
.crystal-container { max-width: 1240px; margin: 0 auto; }
.crystal-narrow { max-width: 760px; margin: 0 auto; }
.crystal-eyebrow {
  display: inline-block;
  color: var(--crystal-accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 0.4vw + 0.8rem, 1.1rem);
  margin-bottom: 0.9rem;
}
/* Section headings default (H2) — make them noticeably larger per client direction. */
.crystal-section h2,
.crystal-section .wp-block-heading,
.crystal-cta-band h2 {
  font-size: clamp(2rem, 2.4vw + 1.25rem, 3.1rem);
  line-height: 1.12;
  font-weight: 700;
}
.crystal-section .crystal-eyebrow + h2 { margin-top: 0.25rem; }

/* -------------------------------------------------------
 * 7. Two-clinic chooser
 * ------------------------------------------------------- */
.crystal-clinic-chooser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 780px) { .crystal-clinic-chooser { grid-template-columns: 1fr; } }

.crystal-clinic-card {
  background: #fff; border-radius: var(--crystal-radius-lg);
  padding: 2rem; box-shadow: var(--crystal-shadow-soft);
  border: 1px solid var(--crystal-border);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 280ms var(--crystal-ease), box-shadow 280ms var(--crystal-ease);
}
.crystal-clinic-card:hover { transform: translateY(-4px); box-shadow: var(--crystal-shadow-med); }
.crystal-clinic-card__title { margin: 0; color: var(--crystal-primary); font-size: clamp(1.5rem, 2vw + 1rem, 2rem); font-weight: 700; }
.crystal-clinic-card__sub { margin: 0; color: var(--crystal-text-muted); font-weight: 500; }
.crystal-clinic-card__address { font-style: normal; color: var(--crystal-text); line-height: 1.55; }
.crystal-clinic-card__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.crystal-clinic-card__hours { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; border-top: 1px dashed var(--crystal-border); padding-top: 1rem; }
.crystal-clinic-card__hours li { display: flex; justify-content: space-between; padding: 0.2rem 0; color: var(--crystal-text-muted); }
.crystal-clinic-card__hours li span:first-child { font-weight: 600; color: var(--crystal-text); }

/* Clinic accent per context */
body.clinic-context-burnaby .crystal-clinic-card[data-clinic="burnaby"] { border-color: var(--crystal-accent); }
body.clinic-context-langley .crystal-clinic-card[data-clinic="langley"] { border-color: var(--crystal-secondary); }

/* -------------------------------------------------------
 * 8. Trust bar
 * ------------------------------------------------------- */
.crystal-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  padding: 2rem 0;
}
@media (max-width: 900px) { .crystal-trust { grid-template-columns: repeat(2, 1fr); } }
.crystal-trust__item { display: flex; gap: 0.85rem; align-items: flex-start; }
.crystal-trust__icon {
  flex: 0 0 48px; width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crystal-accent), var(--crystal-primary));
  display: grid; place-items: center; color: #fff;
}
.crystal-trust__item h4 { margin: 0 0 0.15rem; font-size: 1.05rem; color: var(--crystal-primary); }
.crystal-trust__item p { margin: 0; color: var(--crystal-text-muted); font-size: 0.93rem; line-height: 1.5; }

/* -------------------------------------------------------
 * 9. Services grid
 * ------------------------------------------------------- */
.crystal-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1040px) { .crystal-services { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .crystal-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .crystal-services { grid-template-columns: 1fr; } }

.crystal-service {
  background: #fff; border-radius: var(--crystal-radius-lg);
  padding: 1.75rem; box-shadow: var(--crystal-shadow-soft);
  border: 1px solid var(--crystal-border);
  position: relative; overflow: hidden;
  transition: transform 280ms var(--crystal-ease), box-shadow 280ms var(--crystal-ease), border-color 280ms var(--crystal-ease);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.crystal-service::after {
  content: ""; position: absolute; left: 1.75rem; right: 1.75rem; bottom: 1.1rem;
  height: 2px; background: var(--crystal-accent);
  transform: scaleX(0); transform-origin: left; transition: transform 320ms var(--crystal-ease);
}
.crystal-service:hover { transform: translateY(-6px); box-shadow: var(--crystal-shadow-med); border-color: var(--crystal-accent); }
.crystal-service:hover::after { transform: scaleX(1); }
.crystal-service__icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,189,196,0.12), rgba(50,100,115,0.10));
  display: grid; place-items: center;
  color: var(--crystal-primary);
  margin-bottom: 0.5rem;
  transition: background 280ms var(--crystal-ease), color 280ms var(--crystal-ease), transform 280ms var(--crystal-ease);
}
.crystal-service:hover .crystal-service__icon {
  background: linear-gradient(135deg, var(--crystal-accent) 0%, var(--crystal-primary) 100%);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}
.crystal-service__icon img, .crystal-service__icon svg { width: 42px; height: 42px; }
.crystal-service h3 { margin: 0; font-size: 1.25rem; color: var(--crystal-primary); }
.crystal-service p { margin: 0; color: var(--crystal-text-muted); font-size: 0.95rem; line-height: 1.55; }
.crystal-service__links { margin-top: auto; padding-top: 0.75rem; display: flex; gap: 0.85rem; flex-wrap: wrap; font-size: 0.85rem; }
.crystal-service__links a { font-weight: 600; color: var(--crystal-primary); }
.crystal-service__links a:hover { color: var(--crystal-accent); }

/* -------------------------------------------------------
 * 10. Doctor cards
 * ------------------------------------------------------- */
.crystal-doctors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .crystal-doctors { grid-template-columns: 1fr; } }
.crystal-doctor {
  background: #fff; border-radius: var(--crystal-radius-lg);
  overflow: hidden; box-shadow: var(--crystal-shadow-soft);
  transition: transform 280ms var(--crystal-ease), box-shadow 280ms var(--crystal-ease);
}
.crystal-doctor:hover { transform: translateY(-6px); box-shadow: var(--crystal-shadow-med); }
.crystal-doctor__photo { aspect-ratio: 3/4; overflow: hidden; background: var(--crystal-surface-muted); }
.crystal-doctor__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--crystal-ease); }
.crystal-doctor:hover .crystal-doctor__photo img { transform: scale(1.06); }
.crystal-doctor__body { padding: 1.25rem 1.5rem 1.5rem; }
.crystal-doctor__body h3 { margin: 0 0 0.2rem; color: var(--crystal-primary); }
.crystal-doctor__body p { margin: 0; color: var(--crystal-text-muted); }

/* -------------------------------------------------------
 * 11. Testimonials
 * ------------------------------------------------------- */
.crystal-testimonials { position: relative; }
.crystal-testimonial {
  background: #fff; border-radius: var(--crystal-radius-lg);
  padding: 2rem; box-shadow: var(--crystal-shadow-soft);
  border: 1px solid var(--crystal-border);
  display: grid; gap: 1rem; grid-template-columns: 80px 1fr; align-items: start;
}
.crystal-testimonial__avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: var(--crystal-surface-muted); }
.crystal-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.crystal-testimonial blockquote { margin: 0 0 0.75rem; color: var(--crystal-text); font-size: 1.05rem; line-height: 1.6; font-style: italic; }
.crystal-testimonial cite { color: var(--crystal-primary); font-weight: 700; font-style: normal; }
.crystal-testimonial__stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 0.35rem; }

/* -------------------------------------------------------
 * 12. CTA band
 * ------------------------------------------------------- */
.crystal-cta-band {
  background: linear-gradient(135deg, var(--crystal-primary) 0%, var(--crystal-accent) 100%);
  color: #fff;
  border-radius: var(--crystal-radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: center;
}
@media (max-width: 900px) { .crystal-cta-band { grid-template-columns: 1fr; text-align: center; } }
.crystal-cta-band h2 { color: #fff; margin: 0 0 0.5rem; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.crystal-cta-band p { color: rgba(255,255,255,0.92); margin: 0; font-size: 1.05rem; }
.crystal-cta-band__phones { display: grid; gap: 0.5rem; justify-items: flex-end; }
@media (max-width: 900px) { .crystal-cta-band__phones { justify-items: center; } }
.crystal-cta-band .crystal-phone__number { font-size: 1.45rem; }

/* -------------------------------------------------------
 * 13. FAQ accordion
 * ------------------------------------------------------- */
.crystal-faq { display: grid; gap: 0.75rem; max-width: 820px; margin: 0 auto; }
.crystal-faq details {
  background: #fff; border-radius: var(--crystal-radius-md);
  border: 1px solid var(--crystal-border);
  padding: 1rem 1.25rem;
  transition: box-shadow 220ms var(--crystal-ease), border-color 220ms var(--crystal-ease);
}
.crystal-faq details[open] { box-shadow: var(--crystal-shadow-soft); border-color: var(--crystal-accent); }
.crystal-faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding-right: 2rem;
  font-weight: 600; color: var(--crystal-primary); font-size: 1.05rem;
}
.crystal-faq summary::-webkit-details-marker { display: none; }
.crystal-faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--crystal-accent);
  transition: transform 220ms var(--crystal-ease);
}
.crystal-faq details[open] summary::after { content: "–"; }
.crystal-faq details p { margin: 0.6rem 0 0; color: var(--crystal-text-muted); line-height: 1.65; }

/* -------------------------------------------------------
 * 14. Breadcrumbs
 * ------------------------------------------------------- */
.crystal-breadcrumbs-bar {
  background: var(--crystal-surface-soft);
  border-bottom: 1px solid var(--crystal-border);
  padding: 0.75rem clamp(1rem, 3vw, 2rem) !important;
}
.crystal-breadcrumbs-bar > nav,
.crystal-breadcrumbs-bar > .crystal-breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.crystal-breadcrumbs { font-size: 0.9rem; color: var(--crystal-text-muted); padding: 0.25rem 0; line-height: 1.5; }
.crystal-breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.crystal-breadcrumbs li + li::before { content: "›"; margin-right: 0.35rem; opacity: 0.5; }
.crystal-breadcrumbs a,
.crystal-breadcrumbs-bar span > span > a {
  color: var(--crystal-primary);
  text-decoration: none;
  font-weight: 600;
}
.crystal-breadcrumbs a:hover,
.crystal-breadcrumbs-bar span > span > a:hover { color: var(--crystal-accent); }
.crystal-breadcrumbs .breadcrumb_last,
.crystal-breadcrumbs-bar .breadcrumb_last { color: var(--crystal-text-muted); font-weight: 500; }

/* -------------------------------------------------------
 * 15. Footer
 * ------------------------------------------------------- */
.crystal-site-footer {
  background: linear-gradient(180deg, var(--crystal-footer) 0%, #051a45 100%);
  color: #fff; padding: clamp(3rem, 6vw, 5rem) 1rem 1rem;
}
.crystal-site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.crystal-site-footer a:hover { color: var(--crystal-accent); }
.crystal-footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 2.5rem;
}
@media (max-width: 960px) { .crystal-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .crystal-footer-grid { grid-template-columns: 1fr; } }
.crystal-footer-grid h4 { color: #fff; font-size: 1.05rem; margin: 0 0 0.85rem; }
.crystal-footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.crystal-footer-clinic { background: rgba(255,255,255,0.04); border-radius: var(--crystal-radius-md); padding: 1.25rem; border: 1px solid rgba(255,255,255,0.08); }
.crystal-footer-clinic + .crystal-footer-clinic { margin-top: 0.85rem; }
.crystal-footer-clinic h4 { margin-bottom: 0.25rem; }
.crystal-footer-clinic p { margin: 0.15rem 0; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.crystal-footer-bottom {
  max-width: 1320px; margin: 2.5rem auto 0; padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
}

/* -------------------------------------------------------
 * 16. Animations (entrance)
 * ------------------------------------------------------- */
[data-anim] { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--crystal-ease), transform 700ms var(--crystal-ease); }
[data-anim].is-visible { opacity: 1; transform: translateY(0); }
[data-anim="fade"] { transform: none; }
[data-anim-delay="1"] { transition-delay: 100ms; }
[data-anim-delay="2"] { transition-delay: 200ms; }
[data-anim-delay="3"] { transition-delay: 300ms; }
[data-anim-delay="4"] { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 0ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1; transform: none; }
}

/* -------------------------------------------------------
 * 17. Utilities
 * ------------------------------------------------------- */
.crystal-text-center { text-align: center; }
.crystal-mb-0 { margin-bottom: 0; }
.crystal-mb-1 { margin-bottom: 0.5rem; }
.crystal-mb-2 { margin-bottom: 1rem; }
.crystal-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 3vw, 2.5rem); align-items: center; }
@media (max-width: 780px) { .crystal-grid-2 { grid-template-columns: 1fr; } }
.crystal-rounded { border-radius: var(--crystal-radius-lg); overflow: hidden; }

/* -------------------------------------------------------
 * 18a. Blog preview (home) — tighter, more readable card layout
 * ------------------------------------------------------- */
.crystal-blog-preview .wp-block-post-template { gap: clamp(1rem, 2vw, 2rem); }
.crystal-blog-preview .wp-block-post {
  background: #fff;
  border: 1px solid var(--crystal-border);
  border-radius: var(--crystal-radius-lg);
  padding: 1.25rem;
  box-shadow: var(--crystal-shadow-soft);
  display: flex; flex-direction: column; gap: 0.65rem;
  transition: transform 280ms var(--crystal-ease), box-shadow 280ms var(--crystal-ease);
}
.crystal-blog-preview .wp-block-post:hover { transform: translateY(-4px); box-shadow: var(--crystal-shadow-med); }
.crystal-blog-preview .wp-block-post-featured-image img {
  border-radius: var(--crystal-radius-md);
  aspect-ratio: 3 / 2; object-fit: cover; width: 100%;
}
.crystal-blog-preview .wp-block-post-title,
.crystal-blog-preview h3.wp-block-post-title {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem) !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  margin: 0 !important;
  letter-spacing: -0.005em;
}
.crystal-blog-preview .wp-block-post-title a { color: var(--crystal-primary); text-decoration: none; }
.crystal-blog-preview .wp-block-post-title a:hover { color: var(--crystal-accent); }
.crystal-blog-preview .wp-block-post-excerpt {
  color: var(--crystal-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.crystal-blog-preview .wp-block-post-excerpt__excerpt { margin: 0; }

/* -------------------------------------------------------
 * 18b. Language badge (multilingual team indicator)
 * ------------------------------------------------------- */
.crystal-languages {
  display: inline-flex; align-items: center;
  gap: 0.4rem 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--crystal-surface-muted);
  border: 1px solid var(--crystal-border);
  border-radius: 18px;
  color: var(--crystal-primary);
  font-size: 0.85rem; font-weight: 600;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center;
}
.crystal-languages__label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  flex-shrink: 0;
}
.crystal-languages__label svg { color: var(--crystal-accent); flex-shrink: 0; }
.crystal-languages__list {
  display: inline-flex; flex-wrap: wrap; align-items: center;
  gap: 0.4rem 0.9rem;
  color: var(--crystal-text); font-weight: 500;
}
.crystal-lang {
  display: inline-flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
}
.crystal-flag {
  display: inline-block;
  width: 20px; height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 1px 1px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  vertical-align: middle;
  overflow: hidden;
}

@media (max-width: 640px) {
  .crystal-languages {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 16px;
    gap: 0.35rem 0.6rem;
  }
  .crystal-languages__list { gap: 0.35rem 0.7rem; }
  .crystal-flag { width: 18px; height: 13px; }
}

@media (max-width: 420px) {
  .crystal-languages {
    flex-direction: column;
    align-items: center;
    border-radius: 14px;
    padding: 0.6rem 0.85rem;
  }
  .crystal-languages__list { justify-content: center; }
}

/* -------------------------------------------------------
 * 18b. About page — story / values / founder
 * ------------------------------------------------------- */

/* About story — portrait + lead copy */
.crystal-about-story { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.crystal-about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.crystal-about-story__photo {
  position: relative;
  margin: 0;
  border-radius: var(--crystal-radius-lg);
  overflow: hidden;
  box-shadow: var(--crystal-shadow-med);
  aspect-ratio: 4/5;
  background: var(--crystal-surface-muted);
}
.crystal-about-story__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.crystal-about-story__badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: #fff;
  color: var(--crystal-primary);
  border-radius: var(--crystal-radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--crystal-shadow-soft);
  display: flex; align-items: center; gap: 0.75rem;
  max-width: calc(100% - 2rem);
}
.crystal-about-story__badge-num {
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--crystal-accent);
  letter-spacing: -0.02em;
}
.crystal-about-story__badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--crystal-text);
  max-width: 10ch;
}
.crystal-about-story__copy .crystal-eyebrow { margin-bottom: 0.6rem; }
.crystal-about-story__title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.crystal-about-story__lead {
  color: var(--crystal-text);
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.crystal-about-story__lead strong { color: var(--crystal-primary); }
.crystal-about-story__copy p {
  color: var(--crystal-text);
  font-size: 1.03rem;
  line-height: 1.72;
}
.crystal-about-story__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.75rem;
}
@media (max-width: 860px) {
  .crystal-about-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .crystal-about-story__photo {
    aspect-ratio: 4/3;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* About values — feature grid */
.crystal-about-values__head { max-width: 720px; margin: 0 auto 3rem; }
.crystal-about-values__head h2 { margin: 0.25rem 0 0.6rem; }
.crystal-about-values__sub {
  margin: 0; color: var(--crystal-text-muted);
  font-size: 1.05rem; line-height: 1.6;
}
.crystal-about-values__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
/* Row 1: three cards each spanning 2 of 6 columns.
   Row 2: two cards spanning 2 columns each, centered (cols 2–3 and 4–5). */
.crystal-about-values__grid > :nth-child(1) { grid-column: 1 / span 2; }
.crystal-about-values__grid > :nth-child(2) { grid-column: 3 / span 2; }
.crystal-about-values__grid > :nth-child(3) { grid-column: 5 / span 2; }
.crystal-about-values__grid > :nth-child(4) { grid-column: 2 / span 2; }
.crystal-about-values__grid > :nth-child(5) { grid-column: 4 / span 2; }
.crystal-value-card {
  background: #fff;
  border: 1px solid var(--crystal-border);
  border-radius: var(--crystal-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--crystal-shadow-soft);
  display: flex; flex-direction: column; gap: 0.65rem;
  transition: transform 280ms var(--crystal-ease), box-shadow 280ms var(--crystal-ease), border-color 280ms var(--crystal-ease);
}
.crystal-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--crystal-shadow-med);
  border-color: var(--crystal-accent);
}
.crystal-value-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,189,196,0.14), rgba(50,100,115,0.10));
  color: var(--crystal-primary);
  display: grid; place-items: center;
  margin-bottom: 0.35rem;
  transition: background 280ms var(--crystal-ease), color 280ms var(--crystal-ease);
}
.crystal-value-card:hover .crystal-value-card__icon {
  background: linear-gradient(135deg, var(--crystal-accent) 0%, var(--crystal-primary) 100%);
  color: #fff;
}
.crystal-value-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--crystal-primary);
  line-height: 1.3;
}
.crystal-value-card p {
  margin: 0;
  color: var(--crystal-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .crystal-about-values__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .crystal-about-values__grid > :nth-child(1) { grid-column: 1 / span 2; }
  .crystal-about-values__grid > :nth-child(2) { grid-column: 3 / span 2; }
  .crystal-about-values__grid > :nth-child(3) { grid-column: 1 / span 2; }
  .crystal-about-values__grid > :nth-child(4) { grid-column: 3 / span 2; }
  .crystal-about-values__grid > :nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 620px) {
  .crystal-about-values__grid { grid-template-columns: 1fr; }
  .crystal-about-values__grid > :nth-child(n) { grid-column: 1 / -1; }
}

/* About founder — full-width card with photo + bio */
.crystal-about-founder { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.crystal-about-founder__card {
  background: linear-gradient(135deg, rgba(0,189,196,0.06) 0%, rgba(50,100,115,0.06) 100%);
  border: 1px solid var(--crystal-border);
  border-radius: var(--crystal-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.8fr);
  gap: 0;
  box-shadow: var(--crystal-shadow-soft);
}
.crystal-about-founder__photo {
  margin: 0;
  background: var(--crystal-surface-muted);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.crystal-about-founder__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
  min-height: 380px;
}
.crystal-about-founder__body {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex; flex-direction: column; gap: 0.75rem;
  justify-content: center;
}
.crystal-about-founder__body .crystal-eyebrow { margin-bottom: 0.25rem; }
.crystal-about-founder__body h2 {
  margin: 0;
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2.3rem);
  line-height: 1.15;
  color: var(--crystal-primary);
}
.crystal-about-founder__role {
  margin: 0;
  color: var(--crystal-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.crystal-about-founder__body > p {
  color: var(--crystal-text);
  line-height: 1.7;
  font-size: 1.03rem;
  margin: 0.25rem 0 0;
}
.crystal-about-founder__creds {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.25rem;
}
.crystal-about-founder__creds li {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--crystal-text);
  font-size: 0.95rem;
  line-height: 1.4;
}
.crystal-about-founder__creds svg {
  flex: none;
  color: var(--crystal-accent);
  background: rgba(0,189,196,0.12);
  border-radius: 999px;
  padding: 3px;
  box-sizing: content-box;
}
.crystal-about-founder__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 0.75rem;
}
@media (max-width: 900px) {
  .crystal-about-founder__card { grid-template-columns: 1fr; }
  .crystal-about-founder__photo img { aspect-ratio: 4/3; min-height: 0; height: auto; }
  .crystal-about-founder__creds { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
 * 19. Print
 * ------------------------------------------------------- */
@media print {
  .crystal-topbar, .crystal-site-header, .crystal-mobile-bar, .crystal-site-footer, .crystal-cta-band { display: none !important; }
  body { color: #000; }
}
