@layer base, layout, components, responsive;

@layer base {
  :root {
    color-scheme: light;
    --paper: #f8f7f1;
    --ink: #203f36;
    --muted: #667168;
    --line: #dcded3;
    --sage: #edf0e6;
    --orange: #bb542f;
    --peach: #f0dcc8;
    --white: #fffefb;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 116px; }
  body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
  h1, h2, h3, p, figure, blockquote { margin: 0; }
  h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.052em; line-height: 1.08; }
  h1 { font-size: clamp(58px, 5.9vw, 84px); }
  h2 { font-size: clamp(40px, 4.1vw, 58px); }
  h2 em { display: block; }
  em { font-weight: 400; color: #6a7b59; }
  h3 { font-size: 20px; font-weight: 500; line-height: 1.4; letter-spacing: -.025em; }
  p { color: var(--muted); }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; cursor: pointer; border: 0; }
  button, a, summary { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
  a, button, summary { outline-offset: 5px; }
  :focus-visible { outline: 2px solid var(--orange); }
  :target { scroll-margin-top: 20px; }
  main:focus, section[tabindex='-1']:focus { outline: none; }
  img { display: block; max-width: 100%; height: auto; }
  svg { display: block; }
  ::selection { background: var(--peach); color: var(--ink); }
  [hidden] { display: none !important; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
}

@layer layout {
  .container { width: min(1280px, calc(100% - 112px)); margin-inline: auto; }
  .section { padding-block: 112px; }
  .section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
  .section-intro { max-width: 340px; padding-bottom: 4px; font-size: 16px; }
  .topbar-inner, .header-inner { display: flex; justify-content: space-between; align-items: center; }
  .hero { display: grid; grid-template-columns: 1.08fr 1fr; gap: 72px; align-items: center; padding-block: 48px 72px; }
  .hero-copy { padding-block: 8px; min-width: 0; }
  .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .visit-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
  .faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
  .contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 100px; }
}

@layer components {
  .icon { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 600; letter-spacing: .18em; color: var(--ink); margin-bottom: 23px; line-height: 1.5; }
  .little-line { width: 30px; height: 1px; background: var(--orange); flex-shrink: 0; }
  .button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 54px; padding: 15px 23px; background: var(--ink); border: 1px solid var(--ink); border-radius: 5px; color: var(--white); font-size: 13px; font-weight: 500; line-height: 1.45; transition: background .2s, transform .2s, box-shadow .2s; }
  .button .icon { width: 19px; height: 19px; }
  .button:hover { background: #36584a; transform: translateY(-2px); box-shadow: 0 5px 12px #203f3612; }
  .button-small { min-height: 45px; padding: 11px 16px; gap: 17px; font-size: 12px; }
  .button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
  .button-light:hover { background: var(--white); }
  .text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 44px; font-size: 13px; font-weight: 500; border-bottom: 1px solid var(--line); transition: border-color .2s; }
  .text-link .icon { width: 19px; height: 19px; transition: transform .2s; }
  .text-link:hover { border-color: var(--ink); }
  .text-link:hover .icon { transform: translateX(4px); }
  .icon-button { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; border-radius: 4px; }
  .icon-button:hover { background: var(--sage); }
  .skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 24px; background: var(--ink); color: white; transform: translateY(-200%); }
  .skip-link:focus { transform: translateY(0); }
  .topbar { background: var(--ink); color: #edf0e6; font-size: 10px; letter-spacing: .02em; }
  .topbar-inner { min-height: 34px; gap: 20px; }
  .topbar-inner > span, .topbar-inner > a { display: flex; align-items: center; gap: 9px; }
  .topbar .icon { width: 13px; height: 13px; }
  .site-header { position: sticky; top: 0; z-index: 30; background: #f8f7f1f5; border-bottom: 1px solid #203f360b; backdrop-filter: blur(14px); }
  .header-inner { min-height: 98px; gap: 26px; }
  .brand { display: inline-flex; gap: 12px; align-items: center; flex-shrink: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand-descriptor { display: block; font-size: 8px; font-weight: 500; letter-spacing: .14em; line-height: 1.6; }
  .brand-name { display: block; font-family: var(--serif); font-size: 23px; letter-spacing: -.04em; line-height: 1.25; }
  .desktop-nav { display: flex; align-items: center; gap: 26px; }
  .desktop-nav a { font-size: 11px; padding-block: 12px; position: relative; }
  .desktop-nav a::after { content: ''; position: absolute; bottom: 7px; height: 1px; background: var(--orange); left: 0; width: 0; transition: width .2s; }
  .desktop-nav a:hover::after { width: 100%; }
  .header-actions { display: flex; align-items: center; gap: 18px; }
  .language-picker { position: relative; }
  .language-trigger { display: flex; align-items: center; gap: 7px; padding: 10px 2px; min-height: 44px; background: none; font-size: 11px; font-weight: 500; }
  .language-trigger .icon { width: 17px; height: 17px; }
  .language-trigger .icon:last-child { width: 12px; height: 12px; }
  .language-trigger[aria-busy='true'] { opacity: .5; }
  .language-menu { position: absolute; right: 0; top: calc(100% + 10px); width: 178px; padding: 7px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 16px 44px #203f361c; }
  .language-menu button { width: 100%; display: flex; align-items: center; justify-content: space-between; min-height: 44px; background: none; padding: 9px 12px; border-radius: 4px; font-size: 14px; text-align: left; }
  .language-menu button:hover, .language-menu button:focus, .language-menu button[aria-checked='true'] { background: var(--sage); }
  .language-menu .icon { width: 16px; height: 16px; }
  .menu-toggle, .mobile-nav, .mobile-contact { display: none; }
  .hero h1 em { display: block; color: var(--orange); }
  .hero-description { max-width: 430px; margin-top: 26px; font-size: 16px; line-height: 1.8; }
  .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 21px; margin-top: 31px; }
  .hero-actions .button { gap: 21px; }
  .hero-actions .text-link { font-size: 12px; gap: 13px; }
  .hero-note { display: flex; gap: 10px; align-items: center; margin-top: 42px; font-size: 11px; }
  .hero-note .icon { width: 18px; height: 18px; color: #879378; }
  .hero-visual { position: relative; min-width: 0; margin: 0 10px 0 0; }
  .hero-image-wrap { height: 558px; overflow: hidden; border-radius: 145px 12px 12px 12px; background: var(--sage); }
  .hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 50% 49%; }
  .care-stamp { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: absolute; top: -26px; right: -27px; width: 112px; height: 112px; border-radius: 50%; background: var(--peach); color: var(--ink); transform: rotate(12deg); box-shadow: 0 0 0 7px var(--paper); }
  .care-stamp span { font-size: 9px; font-weight: 600; letter-spacing: .18em; }
  .care-stamp .icon { width: 30px; height: 30px; }
  .hero-card { position: absolute; bottom: 29px; left: -35px; display: flex; align-items: center; gap: 14px; padding: 19px 24px 19px 18px; background: var(--white); box-shadow: 0 10px 35px #203f3614; border-radius: 7px; max-width: calc(100% + 15px); }
  .hero-card strong { display: block; font-size: 13px; font-weight: 500; letter-spacing: -.02em; }
  .hero-card div > span { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }
  .heart-disc { display: grid; place-items: center; flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: #f6e8dc; color: var(--orange); }
  .hero-spark { position: absolute; bottom: -29px; right: 16px; font-family: var(--serif); font-size: 67px; line-height: 1; color: var(--orange); transform: rotate(12deg); }
  .pillars-wrap { background: var(--sage); border-block: 1px solid #203f360b; }
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 27px; }
  .pillar { display: flex; align-items: center; justify-content: center; gap: 18px; padding-inline: 18px; }
  .pillar + .pillar { border-left: 1px solid #cfd6c6; }
  .pillar > .icon { width: 30px; height: 30px; }
  .pillar h2 { font: 500 14px/1.5 var(--sans); letter-spacing: -.01em; }
  .pillar p { font-size: 11px; margin-top: 2px; }
  .service-card { padding: 29px 29px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; transition: border-color .25s, box-shadow .25s; }
  .service-card:hover { border-color: #a5b498; box-shadow: 0 7px 24px #203f3606; }
  .service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 23px; }
  .service-icon { display: grid; place-items: center; width: 49px; height: 49px; background: var(--sage); border-radius: 13px; }
  .service-icon .icon { width: 27px; height: 27px; }
  .service-number { color: #8c9788; font: italic 17px var(--serif); }
  .service-card h3 { min-height: 56px; }
  .service-card > p { margin-top: 8px; font-size: 13px; line-height: 1.8; min-height: 70px; }
  .service-details { margin-top: 15px; border-top: 1px solid var(--line); }
  summary { cursor: pointer; list-style: none; }
  summary::-webkit-details-marker { display: none; }
  .service-details summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 11px; padding-top: 16px; min-height: 45px; }
  .service-details summary .icon { width: 18px; height: 18px; }
  details[open] > summary .icon { transform: rotate(45deg); }
  details summary .icon { transition: transform .2s; }
  .service-details ul { padding-left: 17px; font-size: 13px; color: var(--muted); margin-bottom: 3px; }
  .specialists { margin-top: 26px; padding: 32px 36px; border-radius: 8px; background: #e9edde; }
  .specialist-intro { display: flex; gap: 20px; }
  .specialist-intro > .icon { margin-top: 4px; width: 26px; height: 26px; }
  .specialist-intro h3 { font-family: var(--serif); font-size: 27px; }
  .specialist-intro p { margin-top: 8px; max-width: 780px; font-size: 13px; }
  .specialty-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 23px 0 0 46px; }
  .specialty-list li { border: 1px solid #cbd1c0; border-radius: 30px; padding: 6px 13px; font-size: 10px; }
  .about-section { padding-block: 96px 110px; background: #eeeae0; }
  .about-visual { position: relative; margin-bottom: 55px; }
  .care-image { width: 100%; height: 480px; object-fit: cover; object-position: 53% center; border-radius: 12px 110px 12px 12px; }
  .about-visual figcaption { color: #66675e; font-size: 9px; margin-top: 8px; }
  .quote-card { position: absolute; bottom: -60px; right: -30px; width: 82%; background: var(--ink); color: var(--paper); padding: 29px 30px; border-radius: 5px; }
  .quote-card .icon { width: 24px; height: 24px; color: #d9bba0; margin-bottom: 13px; }
  .quote-card blockquote { font: italic 25px/1.4 var(--serif); letter-spacing: -.025em; }
  .about-copy > p:not(.eyebrow) { margin-top: 24px; font-size: 14px; line-height: 1.9; }
  .signature { display: flex; align-items: center; gap: 13px; margin-top: 29px; }
  .signature-mark { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; border: 1px solid #bbc3b2; }
  .signature-mark .icon { width: 23px; height: 23px; }
  .signature strong { display: block; font-family: var(--serif); font-size: 21px; font-weight: 400; }
  .signature div > span { display: block; color: var(--muted); font-size: 11px; }
  .about-copy .text-link { margin-top: 26px; }
  .center-heading { text-align: center; margin-bottom: 54px; }
  .center-heading .eyebrow { justify-content: center; }
  .step-top { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
  .step-top > span:first-child { font: italic 34px var(--serif); color: var(--orange); }
  .step-line { height: 1px; background: var(--line); flex: 1; }
  .step-top .icon { width: 18px; color: #a7ae9e; }
  .visit-step h3 { font-size: 20px; margin-bottom: 12px; }
  .visit-step p { font-size: 14px; }
  .faq-section { padding-block: 92px; background: var(--sage); }
  .faq-intro { max-width: 290px; margin: 23px 0 15px; font-size: 14px; }
  .faq-list { border-top: 1px solid #cbd3c3; }
  .faq-item { border-bottom: 1px solid #cbd3c3; }
  .faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 23px; font-size: 15px; font-weight: 500; }
  .faq-item summary .icon { width: 19px; height: 19px; }
  .faq-item > p { padding: 0 36px 24px 0; font-size: 14px; line-height: 1.85; }
  .label { display: block; font-size: 9px; font-weight: 500; letter-spacing: .15em; margin-bottom: 10px; color: var(--muted); }
  .contact-phone > a { display: inline-flex; align-items: center; gap: 30px; font: 400 clamp(36px, 3.8vw, 54px)/1.2 var(--serif); letter-spacing: -.035em; }
  .contact-phone .icon { width: 28px; height: 28px; color: var(--orange); }
  .contact-details { display: flex; flex-wrap: wrap; gap: 22px 45px; margin-top: 29px; }
  .contact-details a { font-size: 14px; overflow-wrap: anywhere; }
  .contact-information a:hover { color: var(--orange); }
  .address { margin-top: 27px; }
  address { font-style: normal; font-size: 15px; line-height: 1.8; }
  .urgent-note { display: flex; gap: 13px; margin-top: 27px; padding-top: 22px; border-top: 1px solid var(--line); }
  .urgent-note .icon { width: 18px; height: 18px; color: var(--orange); margin-top: 3px; }
  .urgent-note p { font-size: 11px; max-width: 400px; }
  .urgent-note strong { color: var(--ink); font-weight: 600; }
  .hours-card { align-self: start; border-radius: 9px; background: var(--white); padding: 34px; border: 1px solid var(--line); }
  .hours-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
  .hours-heading .icon { width: 23px; height: 23px; color: #718360; }
  .hours-heading h3 { font-family: var(--serif); font-size: 27px; }
  .hours-card dl { margin: 0; }
  .hours-card dl > div { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-block: 18px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .hours-card dt { max-width: 60%; }
  .hours-card dd { margin: 0; text-align: right; flex-shrink: 0; }
  .hours-card dd span { display: block; font-variant-numeric: tabular-nums; }
  .hours-card .closed { color: var(--orange); }
  .hours-card > p { font-size: 11px; margin-top: 20px; }
  .directions-banner { display: flex; align-items: center; gap: 24px; margin-top: 48px; padding: 29px 35px; border-radius: 8px; background: var(--peach); position: relative; overflow: hidden; }
  .directions-banner h3 { font-family: var(--serif); font-size: 29px; }
  .directions-banner p { color: #636754; font-size: 12px; margin-top: 4px; }
  .directions-banner .button { margin-left: auto; flex-shrink: 0; }
  .map-pin { display: grid; place-items: center; width: 62px; height: 62px; flex-shrink: 0; border: 1px solid #c5ae93; border-radius: 50%; }
  .map-pin .icon { width: 27px; height: 27px; }
  .site-footer { background: var(--ink); color: var(--paper); padding-block: 60px 25px; }
  .footer-top { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 44px; }
  .site-footer .brand img { outline: 1px solid #728376; border-radius: 15px; }
  .footer-tagline { font: italic 25px/1.3 var(--serif); color: #bcc9ad; margin-top: 21px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px; align-content: center; font-size: 12px; }
  .footer-links a { min-height: 40px; display: flex; align-items: center; }
  .footer-links a:hover, .privacy-trigger:hover { color: #d9bba0; }
  .footer-location { display: grid; grid-template-columns: 20px auto; align-items: center; gap: 6px 10px; font-size: 10px; letter-spacing: .1em; }
  .footer-location > .icon { width: 17px; height: 17px; }
  .footer-location .text-link { grid-column: 1 / -1; font-size: 11px; border-color: #53695c; letter-spacing: normal; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #486052; padding-top: 18px; font-size: 9px; color: #bbc5b7; }
  .privacy-trigger { background: none; font-size: 10px; padding: 10px 0 10px 10px; white-space: nowrap; }
  .image-note { font-size: 9px; color: #bbc5b7; margin-top: 4px; }
  dialog { width: min(600px, calc(100% - 32px)); max-height: calc(100dvh - 60px); padding: 32px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); }
  dialog::backdrop { background: #13291fd1; backdrop-filter: blur(4px); }
  .dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 23px; }
  .dialog-header h2 { font-size: 34px; }
  .dialog-header button { flex-shrink: 0; }
  dialog > p { margin-top: 16px; font-size: 14px; }
  .error-toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 80; max-width: calc(100% - 32px); width: max-content; background: var(--ink); color: var(--paper); padding: 15px 25px; border-radius: 6px; box-shadow: 0 5px 30px #0002; font-size: 14px; }
  .load-error { min-height: 80vh; padding: 40px 24px; display: grid; align-content: center; justify-items: center; gap: 24px; text-align: center; }
  .load-error h1 { font-size: 48px; }
  .reload-symbol { font-size: 60px; }
  .loading-mark { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--ink); margin: 35vh auto; animation: loading 1s linear infinite; }
  @keyframes loading { to { transform: rotate(360deg); } }
}

@layer responsive {
  @media (min-width: 1500px) { .hero { padding-block: 62px 85px; } .hero-image-wrap { height: 600px; } }
  @media (max-width: 1200px) {
    .container { width: calc(100% - 80px); }
    .header-inner { gap: 18px; }
    .desktop-nav { gap: 18px; }
    .header-actions { gap: 14px; }
    .hero { gap: 50px; }
    .hero-image-wrap { height: 540px; }
    .hero h1 { font-size: 67px; }
    .hero-card { left: -24px; padding: 16px; }
    .about-grid, .faq-grid, .contact-grid { gap: 65px; }
    .service-card { padding-inline: 24px; }
    .visit-steps { gap: 40px; }
  }
  @media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: grid; }
    .mobile-nav { position: absolute; top: 100%; left: 0; right: 0; display: grid; padding: 16px 40px 28px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 15px 20px #203f3610; }
    .mobile-nav > a:not(.button) { padding-block: 13px; border-bottom: 1px solid var(--line); font-size: 15px; }
    .mobile-nav > .button { margin-top: 18px; justify-self: start; }
    .hero { gap: 38px; }
    .hero h1 { font-size: 61px; }
    .hero-description { font-size: 15px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
    .hero-note { margin-top: 24px; }
    .hero-image-wrap { height: 530px; }
    .care-stamp { width: 96px; height: 96px; right: -20px; gap: 6px; }
    .care-stamp span { font-size: 8px; }
    .hero-card strong { font-size: 12px; }
    .heart-disc { width: 38px; height: 38px; }
    .section-heading { gap: 40px; }
    .section-intro { max-width: 280px; font-size: 14px; }
    .service-card h3 { font-size: 18px; min-height: 76px; }
    .service-card > p { min-height: 94px; }
    .about-grid, .faq-grid, .contact-grid { gap: 45px; }
    .care-image { height: 480px; }
    .quote-card { padding: 23px; }
    .quote-card blockquote { font-size: 23px; }
    .hours-card { padding: 26px; }
    .footer-top { gap: 30px; }
    .footer-links { column-gap: 20px; }
  }
  @media (max-width: 850px) {
    .container { width: calc(100% - 56px); }
    .hero { gap: 30px; }
    .hero h1 { font-size: 54px; }
    .hero-image-wrap { height: 495px; border-top-left-radius: 100px; }
    .hero-card { left: -18px; padding: 13px; gap: 10px; }
    .hero-card div > span { font-size: 9px; }
    .hero-card strong { font-size: 11px; }
    .pillar { gap: 12px; padding-inline: 12px; }
    .pillar h2 { font-size: 12px; }
    .pillar p { font-size: 10px; }
    .pillar > .icon { width: 25px; height: 25px; }
    .section { padding-block: 80px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card h3 { min-height: 50px; }
    .service-card > p { min-height: 70px; }
    .about-grid { gap: 40px; }
    .about-copy h2 { font-size: 39px; }
    .care-image { height: 460px; }
    .quote-card { right: -15px; width: 94%; }
    .quote-card blockquote { font-size: 21px; }
    .about-copy > p:not(.eyebrow) { font-size: 13px; }
    .visit-steps { gap: 30px; }
    .visit-step h3 { font-size: 18px; }
    .visit-step p { font-size: 13px; }
    .faq-grid { gap: 35px; }
    .contact-grid { gap: 32px; }
    .contact-details { gap: 20px; }
    .hours-card { padding: 24px; }
    .hours-heading h3 { font-size: 24px; }
    .hours-card dl > div { font-size: 11px; gap: 12px; }
    .directions-banner { padding: 25px; gap: 18px; }
    .directions-banner h3 { font-size: 24px; }
    .directions-banner .button { gap: 15px; padding-inline: 15px; font-size: 12px; }
    .map-pin { width: 47px; height: 47px; }
    .footer-top { flex-wrap: wrap; }
    .footer-top > div:first-child { width: 100%; }
    .footer-links { column-gap: 55px; }
  }
  @media (max-width: 700px) {
    html { scroll-padding-top: 90px; }
    .container { width: calc(100% - 48px); }
    .topbar-inner { justify-content: center; min-height: 30px; }
    .topbar-inner > a { display: none; }
    .header-inner { min-height: 80px; gap: 12px; }
    .brand { gap: 9px; }
    .brand img { width: 39px; height: 39px; }
    .brand-descriptor { font-size: 6.5px; letter-spacing: .11em; }
    .brand-name { font-size: 21px; }
    .header-booking { display: none; }
    .header-actions { gap: 9px; }
    .language-trigger { gap: 5px; }
    .language-trigger > .icon:first-child { display: none; }
    .menu-toggle { width: 36px; }
    .mobile-nav { padding-inline: 24px; }
    .hero { grid-template-columns: 1fr; gap: 40px; padding-block: 36px 58px; }
    .hero-copy { padding: 0; }
    .hero .eyebrow { font-size: 9px; margin-bottom: 20px; }
    .hero h1 { font-size: clamp(49px, 9vw, 66px); max-width: 560px; }
    .hero-description { margin-top: 22px; max-width: 470px; font-size: 15px; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 15px 12px; margin-top: 26px; }
    .hero-actions .button { gap: 14px; padding-inline: 14px; font-size: 12px; min-height: 50px; }
    .hero-actions .text-link { font-size: 11px; gap: 10px; }
    .hero-note { margin-top: 23px; font-size: 10px; }
    .hero-visual { margin: 0 7px 0 0; }
    .hero-image-wrap { height: auto; aspect-ratio: 1 / 1.05; border-radius: 95px 9px 9px 9px; }
    .hero-image { object-position: 50% 56%; }
    .care-stamp { top: -17px; right: -12px; width: 90px; height: 90px; box-shadow: 0 0 0 5px var(--paper); }
    .care-stamp .icon { width: 24px; height: 24px; }
    .hero-card { left: -8px; bottom: 22px; padding: 15px; gap: 12px; }
    .hero-card strong { font-size: 12px; }
    .hero-card div > span { font-size: 10px; }
    .heart-disc { width: 39px; height: 39px; }
    .hero-spark { font-size: 53px; bottom: -22px; }
    .pillars { grid-template-columns: 1fr; padding-block: 8px; }
    .pillar { justify-content: flex-start; padding: 20px 7px; gap: 20px; }
    .pillar + .pillar { border-left: 0; border-top: 1px solid #cfd6c6; }
    .pillar h2 { font-size: 14px; }
    .pillar p { font-size: 12px; }
    .pillar > .icon { width: 28px; height: 28px; }
    .section { padding-block: 68px; }
    h2 { font-size: 41px; }
    .eyebrow { font-size: 9px; margin-bottom: 19px; }
    .section-heading { flex-direction: column; align-items: flex-start; gap: 23px; margin-bottom: 32px; }
    .section-intro { max-width: 450px; }
    .service-grid { gap: 14px; }
    .service-card { padding: 21px 19px 18px; }
    .service-top { margin-bottom: 20px; }
    .service-icon { width: 42px; height: 42px; border-radius: 10px; }
    .service-icon .icon { width: 24px; height: 24px; }
    .service-card h3 { font-size: 17px; min-height: 72px; }
    .service-card > p { font-size: 12px; min-height: 85px; }
    .service-details summary { font-size: 10px; gap: 9px; }
    .specialists { padding: 25px 22px; margin-top: 20px; }
    .specialist-intro { gap: 13px; }
    .specialist-intro h3 { font-size: 24px; }
    .specialist-intro > .icon { width: 21px; height: 21px; }
    .specialist-intro p { font-size: 12px; }
    .specialty-list { margin-left: 0; gap: 6px; }
    .specialty-list li { font-size: 10px; padding-inline: 10px; }
    .about-section { padding-block: 68px; }
    .about-grid { grid-template-columns: 1fr; gap: 38px; }
    .about-visual { margin-bottom: 35px; margin-right: 14px; }
    .care-image { height: auto; aspect-ratio: 1.05; border-top-right-radius: 90px; }
    .quote-card { bottom: -35px; padding: 22px 24px; width: 82%; }
    .quote-card blockquote { font-size: 23px; }
    .quote-card .icon { margin-bottom: 9px; width: 21px; height: 21px; }
    .about-copy h2 { font-size: 41px; }
    .about-copy > p:not(.eyebrow) { font-size: 14px; margin-top: 22px; }
    .center-heading { text-align: left; margin-bottom: 35px; }
    .center-heading .eyebrow { justify-content: flex-start; }
    .visit-steps { grid-template-columns: 1fr; gap: 31px; }
    .step-top { margin-bottom: 14px; }
    .step-top > span:first-child { font-size: 30px; }
    .visit-step h3 { font-size: 20px; margin-bottom: 8px; }
    .visit-step p { font-size: 14px; }
    .faq-section { padding-block: 65px; }
    .faq-grid { grid-template-columns: 1fr; gap: 34px; }
    .faq-intro { max-width: 380px; }
    .faq-item summary { font-size: 14px; padding-block: 22px; }
    .faq-item > p { padding-right: 15px; font-size: 13px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-phone > a { font-size: 46px; }
    .contact-details { gap: 22px 40px; }
    .hours-card { padding: 27px 24px; }
    .hours-heading h3 { font-size: 27px; }
    .hours-card dl > div { font-size: 13px; }
    .directions-banner { flex-wrap: wrap; margin-top: 27px; padding: 25px; gap: 17px; }
    .directions-banner > div { flex: 1; min-width: 150px; }
    .directions-banner h3 { font-size: 26px; }
    .directions-banner .button { margin: 7px 0 0; width: 100%; padding-block: 14px; }
    .site-footer { padding-block: 43px 105px; }
    .footer-top { gap: 28px; padding-bottom: 32px; }
    .footer-links { column-gap: 30px; font-size: 11px; }
    .footer-location { font-size: 9px; }
    .footer-tagline { font-size: 27px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; font-size: 9px; }
    .privacy-trigger { padding-left: 0; }
    .mobile-contact { position: fixed; bottom: 0; left: 0; right: 0; z-index: 25; display: flex; align-items: center; gap: 19px; padding: 10px 20px calc(10px + env(safe-area-inset-bottom)); background: #f8f7f1fa; border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
    .mobile-contact .button { flex: 1; min-height: 45px; padding: 11px 14px; font-size: 12px; gap: 18px; }
    .mobile-directions { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; min-height: 44px; }
    .mobile-directions .icon { width: 18px; height: 18px; }
    .error-toast { bottom: 90px; }
    dialog { padding: 25px; }
    .dialog-header h2 { font-size: 29px; }
  }
  @media (max-width: 380px) {
    .container { width: calc(100% - 36px); }
    .brand-name { font-size: 18px; }
    .brand-descriptor { font-size: 5.8px; }
    .brand img { width: 35px; height: 35px; }
    .header-actions { gap: 4px; }
    .hero h1 { font-size: 47px; }
    .hero .eyebrow { font-size: 8px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card h3, .service-card > p { min-height: 0; }
    .service-card h3 { font-size: 20px; }
    .service-card > p { font-size: 14px; }
    .hero-card { padding: 12px; gap: 9px; }
    .hero-card strong { font-size: 10px; }
    .hero-card div > span { font-size: 9px; }
    .mobile-contact { padding-inline: 14px; gap: 12px; }
    .mobile-contact .button { gap: 10px; font-size: 11px; }
    .mobile-directions { font-size: 10px; }
    .quote-card blockquote { font-size: 21px; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }
  @media print {
    .site-header { position: static; }
    .header-actions, .desktop-nav, .mobile-contact, .topbar, .hero-visual, .about-visual, .directions-banner, .site-footer, .hero-actions { display: none; }
    .container { width: 100%; }
    .section, .about-section, .faq-section, .hero { padding-block: 24px; }
    .hero, .about-grid, .faq-grid, .contact-grid { display: block; }
    .service-card, .hours-card { break-inside: avoid; }
    body { background: white; color: black; font-size: 11pt; }
  }
}
