@import url("../../fonts/pretendard/pretendard-deferred.css");

:root {
  --ocean: #123a4d;
  --ocean-deep: #082b3b;
  --coral: #e76f58;
  --coral-dark: #c95341;
  --mineral: #eef1ef;
  --mineral-deep: #dce3e1;
  --paper: #fffdf9;
  --white: #fff;
  --ink: #18323b;
  --muted: #62727a;
  --line: rgba(18, 58, 77, .2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Pretendard", "Noto Sans KR", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; word-break: keep-all; }
body.menu-open { overflow: hidden; }
body:not(.notice-dismissed) main { margin-top: 53px; }
img { display: block; max-width: 100%; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
address { font-style: normal; }
:focus-visible { outline: 3px solid #ffd08a; outline-offset: 4px; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 14px; background: var(--white); transform: translateY(-170%); }
.skip-link:focus { transform: none; }

.announcement { position: fixed; z-index: 150; top: 0; left: 0; width: 100%; height: 53px; display: grid; place-items: center; padding: 0 58px; color: var(--white); background: var(--ocean); font-size: 12px; letter-spacing: .02em; text-align: center; }
.announcement p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.announcement strong { margin-right: 10px; font-size: 10px; letter-spacing: .18em; }
.announcement a { margin-left: 12px; border-bottom: 1px solid currentColor; font-weight: 700; }
.notice-close { position: absolute; top: 0; right: 24px; width: 53px; height: 53px; border: 0; color: inherit; background: transparent; font-size: 25px; font-weight: 300; }
body.notice-dismissed .announcement { display: none; }

.site-header { position: fixed; z-index: 140; top: 53px; left: 0; width: 100%; height: 80px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; padding: 0 30px; color: var(--ocean-deep); background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(18,58,77,.1); backdrop-filter: blur(10px); transition: top .25s ease; }
body.notice-dismissed .site-header { top: 0; }
.brand { display: inline-flex; align-items: center; gap: 9px; width: max-content; line-height: 1; }
.brand svg { width: 45px; height: 34px; fill: none; stroke: var(--coral); stroke-width: 2.2; stroke-linecap: round; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 20px; letter-spacing: .1em; }
.brand small { margin-top: 5px; font-size: 9px; font-weight: 650; letter-spacing: .08em; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(15px, 1.5vw, 28px); font-size: 12px; font-weight: 670; white-space: nowrap; }
.desktop-nav a { padding: 28px 0; border-bottom: 2px solid transparent; transition: border-color .25s ease, color .25s ease; }
.desktop-nav a:hover { color: var(--coral-dark); border-color: var(--coral); }
.header-actions { display: flex; align-items: stretch; height: 80px; margin-right: -30px; }
.phone-link, .search-button, .menu-toggle { display: grid; place-items: center; border: 0; border-left: 1px solid rgba(18,58,77,.12); background: transparent; }
.phone-link { padding: 0 18px; font-size: 12px; font-weight: 750; }
.search-button { width: 54px; font-size: 24px; }
.menu-toggle { width: 94px; color: var(--white); background: var(--coral); grid-template-columns: 1fr 18px; grid-template-rows: 1fr 1fr; align-content: center; column-gap: 6px; padding: 0 15px; }
.menu-toggle span { grid-row: 1 / 3; font-size: 10px; font-weight: 780; letter-spacing: .12em; }
.menu-toggle i { width: 17px; height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.mobile-phone, .mobile-appointment { display: none; }
.mobile-menu { position: fixed; z-index: 130; inset: 133px 0 0; overflow-y: auto; color: var(--ocean-deep); background: var(--white); }
body.notice-dismissed .mobile-menu { inset-block-start: 80px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner { width: min(900px, calc(100% - 60px)); margin: 50px auto; }
.mobile-menu-inner > a { min-height: 66px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 27px; }
.mobile-menu-inner > div { display: grid; gap: 8px; margin-top: 45px; }
.mobile-menu-inner > div small { color: var(--coral-dark); letter-spacing: .15em; }

.hero { position: relative; height: 900px; overflow: hidden; color: var(--white); background: var(--ocean-deep); }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transform: translateX(4%); transition: opacity .62s ease, transform .62s cubic-bezier(.22,.7,.2,1), visibility .62s; }
.hero-slide.is-active { visibility: visible; opacity: 1; transform: none; z-index: 1; }
.hero-slide img { height: 100%; object-fit: cover; object-position: center 45%; }
.hero-slide:nth-child(1) img { object-position: 50% 44%; }
.hero-slide:nth-child(2) img { object-position: 50% 47%; }
.hero-slide:nth-child(3) img { object-position: 50% 46%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,30,40,.18), rgba(5,30,40,.04) 35%, rgba(5,30,40,.38)), radial-gradient(circle at center, rgba(8,43,59,.06), rgba(8,43,59,.2)); }
.hero-copy { position: absolute; z-index: 2; top: 52%; left: 50%; width: min(900px, calc(100% - 180px)); transform: translate(-50%, -50%); text-align: center; text-shadow: 0 2px 28px rgba(8,43,59,.35); }
.hero-copy > p { margin-bottom: 20px; font-size: 11px; font-weight: 770; letter-spacing: .25em; }
.hero-copy h1, .hero-copy h2 { font-family: var(--serif); font-size: clamp(56px, 5.35vw, 77px); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.hero-copy em { font-weight: 400; }
.hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 37px; }
.hero-actions a { min-width: 165px; min-height: 49px; display: grid; place-items: center; padding: 10px 20px; border: 1px solid rgba(255,255,255,.85); border-radius: 999px; color: var(--ocean-deep); background: var(--white); text-shadow: none; font-size: 13px; font-weight: 750; transition: color .25s ease, background .25s ease, transform .25s ease; }
.hero-actions a:nth-child(2) { color: var(--white); border-color: var(--coral); background: var(--coral); }
.hero-actions a:nth-child(3) { color: var(--white); background: var(--ocean); }
.hero-actions.one a { color: var(--ocean-deep); border-color: var(--white); background: var(--white); }
.hero-actions a:hover { transform: translateY(-3px); }
.hero-arrow { position: absolute; z-index: 4; top: 50%; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.66); border-radius: 50%; color: var(--white); background: rgba(8,43,59,.16); font-family: var(--serif); font-size: 36px; line-height: 1; }
.hero-arrow.prev { left: 34px; }
.hero-arrow.next { right: 34px; }
.hero-dots { position: absolute; z-index: 4; bottom: 35px; left: 50%; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid var(--white); border-radius: 50%; background: transparent; }
.hero-dots button[aria-selected="true"] { background: var(--white); }
.scroll-cue { position: absolute; z-index: 4; right: 28px; bottom: 25px; display: flex; align-items: center; gap: 10px; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.scroll-cue i { font-style: normal; font-size: 18px; }

.section-heading { width: min(920px, calc(100% - 48px)); margin-inline: auto; text-align: center; }
.section-heading > p, .principles-heading > p { color: var(--coral-dark); font-size: 11px; font-weight: 780; letter-spacing: .22em; }
.section-heading h2, .principles-heading h2 { margin-top: 13px; font-family: var(--serif); font-size: 58px; font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
.section-heading em, .principles-heading em { font-weight: 400; }
.section-heading > span { display: block; margin-top: 18px; color: var(--muted); font-size: 14px; }

.services { height: 1912px; overflow: hidden; padding: 128px 4vw 112px; background: var(--mineral); }
.services .section-heading h2 { font-size: 61px; }
.service-grid { width: min(1190px, 100%); display: grid; grid-template-columns: repeat(4, 1fr); gap: 138px 31px; margin: 76px auto 0; }
.service-card:nth-child(9) { grid-column: 2 / 3; }
.flip-button { width: 100%; padding: 0; border: 0; background: transparent; perspective: 1100px; }
.flip-stage { position: relative; display: block; aspect-ratio: 1; transform-style: preserve-3d; transition: transform .54s cubic-bezier(.2,.7,.2,1); }
.flip-button:hover .flip-stage, .flip-button:focus-visible .flip-stage, .flip-button[aria-pressed="true"] .flip-stage { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; border-radius: 1px; backface-visibility: hidden; }
.flip-face.front img { height: 100%; object-fit: cover; object-position: center; }
.flip-face.back { align-content: center; gap: 14px; padding: 25px; color: var(--white); background: var(--coral); transform: rotateY(180deg); text-align: center; }
.flip-face.back small { font-size: 9px; font-weight: 760; letter-spacing: .16em; }
.flip-face.back strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.flip-face.back span { font-size: 13px; line-height: 1.8; }
.flip-face.back i { margin-top: 4px; font-size: 11px; font-style: normal; font-weight: 750; }
.flip-button > b { min-height: 52px; display: grid; place-items: center; padding: 12px 4px; font-family: var(--serif); font-size: 20px; font-weight: 500; }

.welcome { height: 420px; display: grid; place-items: center; padding: 60px 24px; background: var(--paper); }
.welcome-inner { width: min(1060px, 100%); }
.welcome h2 { margin-bottom: 28px; font-family: var(--serif); font-size: 51px; font-weight: 400; text-align: center; }
.welcome p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.welcome p > span { float: left; margin: 7px 8px 0 0; color: var(--coral); font-family: var(--serif); font-size: 62px; line-height: .7; }

.quick-links { height: 338px; width: min(1180px, calc(100% - 80px)); display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; align-content: center; margin-inline: auto; }
.quick-links > a { min-height: 104px; display: grid; grid-template-columns: 55px 1fr 28px; align-items: center; gap: 18px; padding: 18px 24px; border: 1px solid var(--line); background: var(--white); }
.quick-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--coral); font-size: 22px; }
.quick-links strong, .quick-links small { display: block; }
.quick-links strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.quick-links small { margin-top: 4px; color: var(--muted); font-size: 11px; }
.quick-links b { color: var(--coral); font-size: 22px; font-weight: 300; }

.principles { background: var(--paper); }
.principles-heading { height: 297px; display: grid; place-items: center; align-content: center; padding: 45px 24px; text-align: center; }
.principles-heading h2 { font-size: 60px; }
.principle { height: 830px; display: grid; grid-template-columns: 1fr 1fr; }
.principle.reverse .principle-copy { order: 2; }
.principle.reverse img { order: 1; }
.principle-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 70px clamp(50px, 7vw, 125px); }
.principle-copy > span { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 30px; border: 2px solid var(--coral); color: var(--ocean-deep); font-family: var(--serif); font-size: 58px; line-height: 1; }
.principle-copy h3 { font-family: var(--serif); font-size: 65px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.principle-copy strong { margin-top: 18px; font-size: 20px; }
.principle-copy p { max-width: 500px; margin-top: 20px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.principle-copy a { margin-top: 28px; padding: 11px 20px; border: 1px solid var(--ocean); font-size: 12px; font-weight: 700; }
.principle > img { height: 100%; object-fit: cover; object-position: center; }

.providers { height: 1797px; overflow: hidden; padding: 112px 4vw; background: #f3f7f6; }
.providers .section-heading h2 { font-size: 64px; }
.provider-layout { width: min(1200px, 100%); height: 1320px; display: grid; grid-template-columns: 275px 1fr; margin: 70px auto 0; background: var(--white); box-shadow: 0 24px 70px rgba(8,43,59,.08); }
.provider-list { overflow: hidden; padding: 27px 0; color: var(--white); background: var(--ocean-deep); }
.provider-list > button { width: 100%; min-height: 69px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 3px; padding: 10px 24px; border: 0; border-bottom: 1px solid rgba(255,255,255,.11); color: inherit; background: transparent; text-align: left; }
.provider-list > button span { color: rgba(255,255,255,.55); font-size: 10px; }
.provider-list > button[aria-selected="true"] { color: var(--ocean-deep); background: var(--white); }
.provider-list > button[aria-selected="true"] span { color: var(--coral-dark); }
.provider-related { display: grid; }
.provider-related a { min-height: 58px; display: flex; align-items: center; padding: 8px 24px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.68); font-size: 12px; }
.provider-related a::after { margin-left: auto; content: "→"; }
.provider-panel { min-width: 0; overflow: hidden; padding: 54px 62px 70px; }
.provider-intro { display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 50px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.provider-kicker { color: var(--coral-dark); font-size: 10px; font-weight: 780; letter-spacing: .16em; }
.provider-intro h3 { margin-top: 12px; font-family: var(--serif); font-size: 54px; font-weight: 400; }
.provider-intro > div > span { color: var(--muted); font-size: 13px; }
.provider-intro blockquote { margin-top: 36px; color: var(--ocean); font-family: var(--serif); font-size: 24px; line-height: 1.55; }
.provider-portrait { height: auto; aspect-ratio: 1; object-fit: cover; }
.provider-body { padding-top: 38px; }
.provider-body > p { margin-bottom: 18px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.provider-body figure { position: relative; margin-top: 35px; }
.provider-body figure img { height: 360px; object-fit: cover; }
.provider-body figure > span { position: absolute; top: 50%; left: 50%; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--coral); transform: translate(-50%, -50%); }
.provider-body figcaption { padding: 14px 0; font-size: 12px; }
.provider-actions { display: flex; gap: 10px; margin-top: 18px; }
.provider-actions a { min-width: 135px; min-height: 45px; display: grid; place-items: center; padding: 9px 18px; border: 1px solid var(--ocean); font-size: 12px; font-weight: 700; }
.provider-panel.is-changing { animation: provider-in .34s ease; }
@keyframes provider-in { from { opacity: .35; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.news { height: 1050px; overflow: hidden; padding: 112px 4vw 88px; background: var(--mineral); text-align: center; }
.news-grid { width: min(1180px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 62px auto 0; text-align: left; }
.news-card { min-width: 0; background: var(--white); }
.news-card > img { height: 252px; object-fit: cover; }
.news-card > div { min-height: 325px; padding: 30px 29px; }
.news-card small { color: var(--coral-dark); font-size: 9px; font-weight: 780; letter-spacing: .12em; }
.news-card h3 { margin-top: 15px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.3; }
.news-card p { margin-top: 15px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.news-card a { display: inline-block; margin-top: 20px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 750; }
.outline-button { min-width: 145px; min-height: 45px; display: inline-grid; place-items: center; margin-top: 44px; border: 1px solid var(--ocean); font-size: 12px; font-weight: 700; }

.locations { height: 1777px; overflow: hidden; padding: 105px 4vw 70px; background: var(--white); }
.location-primary { width: min(1180px, 100%); display: grid; grid-template-columns: 365px 1fr; gap: 42px; margin: 65px auto 0; }
.location-primary > div:first-child { padding: 32px; border: 1px solid var(--line); }
.location-primary small { color: var(--coral-dark); font-weight: 780; letter-spacing: .14em; }
.location-primary h3 { margin-top: 12px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.location-primary address { margin-top: 14px; color: var(--muted); font-size: 13px; }
.location-primary dl { margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); }
.location-primary dl div { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; }
.location-primary dt { color: var(--muted); }
.location-primary p { display: grid; gap: 5px; margin-top: 25px; }
.location-primary p strong { font-size: 18px; }
.location-primary p span { color: var(--muted); font-size: 12px; }
.map { position: relative; min-height: 230px; overflow: hidden; background-color: #dcecf0; background-image: linear-gradient(24deg, transparent 47%, rgba(255,255,255,.94) 48% 51%, transparent 52%), linear-gradient(-30deg, transparent 43%, rgba(255,255,255,.86) 44% 48%, transparent 49%), linear-gradient(90deg, rgba(18,58,77,.08) 1px, transparent 1px), linear-gradient(rgba(18,58,77,.07) 1px, transparent 1px); background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px; }
.map::before { position: absolute; inset: 20% 0 25%; content: ""; background: rgba(121,181,157,.28); clip-path: polygon(0 24%, 25% 5%, 42% 35%, 64% 14%, 100% 48%, 100% 100%, 0 100%); }
.map i { position: absolute; width: 80%; height: 5px; left: 10%; top: 35%; border-radius: 999px; background: rgba(255,255,255,.82); transform: rotate(-12deg); }
.map i:nth-child(2) { top: 60%; left: -5%; transform: rotate(18deg); }
.map i:nth-child(3) { width: 4px; height: 95%; left: 67%; top: 2%; transform: rotate(9deg); }
.map i:nth-child(4) { width: 4px; height: 80%; left: 35%; top: 8%; transform: rotate(-8deg); }
.map b { position: absolute; top: 48%; left: 53%; display: grid; place-items: center; min-width: 48px; height: 48px; padding: 0 8px; border-radius: 50% 50% 50% 0; color: var(--white); background: var(--coral); transform: rotate(-45deg); font-size: 9px; }
.map b::first-line { transform: rotate(45deg); }
.map > span { position: absolute; left: 20%; bottom: 17%; padding: 4px 8px; background: rgba(255,255,255,.86); font-size: 10px; }
.map-wide { min-height: 400px; }
.location-grid { width: min(1180px, 100%); display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin: 55px auto 0; }
.location-card { min-width: 0; }
.location-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.location-card address { min-height: 53px; margin-top: 9px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.location-card p { color: var(--coral-dark); font-size: 11px; font-weight: 720; }
.location-card .map { margin-top: 18px; }
.location-card .map b { top: 45%; left: 45%; min-width: 36px; height: 36px; }
.location-marks { width: min(820px, 100%); display: flex; justify-content: center; gap: 70px; margin: 80px auto 0; color: var(--ocean); font-family: var(--serif); font-size: 25px; }
.location-marks i { display: block; color: var(--coral-dark); font-family: var(--sans); font-size: 9px; font-style: normal; letter-spacing: .17em; text-align: center; }

.site-footer { height: 474px; overflow: hidden; padding: 65px 5vw 35px; color: var(--ocean-deep); background: #f5f6f2; }
.footer-top { width: min(1240px, 100%); display: flex; justify-content: space-between; align-items: center; gap: 60px; margin-inline: auto; }
.footer-brand svg { width: 58px; height: 42px; }
.footer-brand strong { font-size: 27px; }
.footer-search { width: min(430px, 100%); }
.footer-search label { display: block; margin-bottom: 8px; font-size: 10px; font-weight: 740; letter-spacing: .1em; }
.footer-search > div { display: grid; grid-template-columns: 1fr 92px; }
.footer-search input, .footer-search button { height: 43px; border: 1px solid var(--line); background: var(--white); }
.footer-search input { min-width: 0; padding: 0 14px; }
.footer-search button { color: var(--white); background: var(--ocean); font-size: 10px; font-weight: 730; }
.search-status { min-height: 20px; margin-top: 5px; color: var(--muted); font-size: 10px; }
.footer-nav { width: min(1240px, 100%); display: flex; justify-content: space-between; gap: 18px; margin: 58px auto 0; padding-bottom: 26px; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 650; }
.footer-bottom { width: min(1240px, 100%); display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 35px; margin: 28px auto 0; color: var(--muted); font-size: 9px; line-height: 1.7; }
.footer-bottom a { color: var(--ocean); font-weight: 730; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.65,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { justify-self: end; }
  .provider-panel { padding-inline: 38px; }
  .provider-intro { grid-template-columns: 1fr 270px; gap: 30px; }
  .principle-copy { padding-inline: 50px; }
}

@media (max-width: 820px) and (min-width: 641px) {
  .phone-link { display: none; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(9) { grid-column: 2; }
  .services { height: auto; min-height: 2200px; }
  .principle { height: 720px; }
  .principle-copy h3 { font-size: 48px; }
  .principle-copy { padding-inline: 32px; }
  .provider-layout { grid-template-columns: 230px 1fr; }
  .provider-intro { grid-template-columns: 1fr 220px; }
  .provider-intro h3 { font-size: 42px; }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .locations { height: auto; min-height: 2350px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  body:not(.notice-dismissed) main { margin-top: 79px; }
  .announcement { height: 79px; padding: 9px 44px 9px 16px; font-size: 10px; line-height: 1.55; }
  .announcement p { overflow: visible; white-space: normal; }
  .announcement strong { display: block; margin: 0; }
  .announcement a { display: inline-block; margin-left: 4px; }
  .notice-close { right: 3px; width: 42px; height: 79px; }
  .site-header { top: 79px; height: 99px; display: grid; grid-template-columns: 1fr 74px; grid-template-rows: 52px 47px; gap: 0; padding: 0; background: var(--white); }
  body.notice-dismissed .site-header { top: 0; }
  .brand { grid-column: 1; grid-row: 1; margin-left: 16px; }
  .brand svg { width: 37px; height: 28px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 7px; }
  .desktop-nav, .phone-link, .search-button { display: none; }
  .header-actions { grid-column: 2; grid-row: 1 / 3; width: 74px; height: 99px; margin: 0; }
  .menu-toggle { width: 74px; height: 99px; grid-template-columns: 1fr; grid-template-rows: auto 8px 8px; align-content: center; justify-items: center; padding: 10px; }
  .menu-toggle span { grid-row: auto; font-size: 9px; }
  .mobile-phone, .mobile-appointment { display: grid; place-items: center; height: 47px; border-top: 1px solid var(--line); font-size: 10px; font-weight: 730; }
  .mobile-phone { grid-column: 1; grid-row: 2; justify-content: start; padding-left: 17px; }
  .mobile-appointment { grid-column: 1; grid-row: 2; justify-self: end; width: 98px; color: var(--white); background: var(--ocean); }
  .mobile-menu { inset: 178px 0 0; }
  body.notice-dismissed .mobile-menu { inset-block-start: 99px; }
  .mobile-menu-inner { width: calc(100% - 34px); margin: 25px auto; }
  .mobile-menu-inner > a { min-height: 63px; font-size: 24px; }

  .hero { height: 844px; }
  .hero-slide img { object-position: 56% center; }
  .hero-slide:nth-child(1) img { object-position: 58% center; }
  .hero-slide:nth-child(2) img { object-position: 49% center; }
  .hero-slide:nth-child(3) img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(8,43,59,.14), rgba(8,43,59,.22) 45%, rgba(8,43,59,.58)); }
  .hero-copy { top: 50%; width: calc(100% - 54px); }
  .hero-copy > p { margin-bottom: 15px; font-size: 9px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(38px, 10.4vw, 45px); line-height: 1.08; }
  .hero-actions { flex-direction: column; align-items: center; gap: 9px; margin-top: 27px; }
  .hero-actions a { width: 204px; min-height: 44px; font-size: 12px; }
  .hero-arrow { top: auto; bottom: 100px; width: 42px; height: 42px; font-size: 30px; }
  .hero-arrow.prev { left: 17px; }
  .hero-arrow.next { right: 17px; }
  .hero-dots { bottom: 62px; }
  .scroll-cue { display: none; }

  .section-heading { width: calc(100% - 34px); }
  .section-heading h2, .principles-heading h2 { font-size: 39px; }
  .services { height: 2857px; padding: 76px 30px 54px; }
  .services .section-heading h2 { font-size: 41px; }
  .service-grid { width: 275px; grid-template-columns: 1fr; gap: 15px; margin-top: 48px; }
  .service-card:nth-child(9) { grid-column: auto; }
  .flip-button { height: 270px; }
  .flip-stage { width: 215px; height: 215px; margin-inline: auto; }
  .flip-button > b { height: 55px; font-size: 18px; }
  .flip-face.back { padding: 17px; gap: 8px; }
  .flip-face.back strong { font-size: 21px; }
  .flip-face.back span { font-size: 11px; }

  .welcome { height: 475px; padding: 54px 25px; }
  .welcome h2 { margin-bottom: 24px; font-size: 39px; }
  .welcome p { font-size: 13px; line-height: 1.85; }
  .welcome p > span { font-size: 54px; }
  .quick-links { height: 574px; width: calc(100% - 38px); grid-template-columns: 1fr; gap: 12px; padding: 39px 0; }
  .quick-links > a { min-height: 112px; padding: 15px 17px; }

  .principles-heading { height: 126px; padding: 16px 20px; }
  .principles-heading > p { display: none; }
  .principles-heading h2 { margin: 0; font-size: 32px; line-height: 1.08; }
  .principle { height: 700px; display: flex; flex-direction: column; }
  .principle.reverse .principle-copy, .principle.reverse img { order: initial; }
  .principle-copy { height: 500px; padding: 34px 28px 25px; }
  .principle-copy > span { width: 54px; height: 54px; margin-bottom: 17px; font-size: 37px; }
  .principle-copy h3 { font-size: 46px; }
  .principle-copy strong { margin-top: 10px; font-size: 17px; }
  .principle-copy p { margin-top: 12px; font-size: 13px; line-height: 1.72; }
  .principle-copy a { margin-top: 17px; padding: 8px 14px; font-size: 10px; }
  .principle > img { width: 100%; height: 200px; object-position: center; }

  .providers { height: 2532px; padding: 65px 18px 50px; }
  .providers .section-heading h2 { font-size: 48px; }
  .provider-layout { width: 100%; height: 2200px; display: block; margin-top: 40px; box-shadow: none; }
  .provider-list { height: 925px; padding: 12px 0; }
  .provider-list > button { min-height: 61px; padding-inline: 20px; }
  .provider-related a { min-height: 54px; padding-inline: 20px; }
  .provider-panel { height: 1275px; padding: 30px 20px 35px; }
  .provider-intro { display: block; padding-bottom: 28px; }
  .provider-intro h3 { font-size: 42px; }
  .provider-intro blockquote { margin-top: 20px; font-size: 20px; }
  .provider-portrait { width: 170px; margin: 25px 0 0; }
  .provider-body { padding-top: 24px; }
  .provider-body > p { font-size: 12px; line-height: 1.78; }
  .provider-body figure { margin-top: 22px; }
  .provider-body figure img { height: 205px; }
  .provider-actions a { min-width: 110px; min-height: 40px; }

  .news { height: 2046px; padding: 72px 22px 60px; }
  .news-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 42px; }
  .news-card > img { height: 240px; }
  .news-card > div { min-height: 300px; padding: 26px 23px; }
  .news-card h3 { font-size: 24px; }
  .outline-button { margin-top: 35px; }

  .locations { height: 4343px; padding: 70px 19px 45px; }
  .locations .section-heading > span { font-size: 12px; }
  .location-primary { display: block; margin-top: 42px; }
  .location-primary > div:first-child { height: 375px; padding: 27px 23px; }
  .map-wide { min-height: 370px; }
  .location-grid { display: block; margin-top: 38px; }
  .location-card { height: 600px; padding-top: 24px; border-top: 1px solid var(--line); }
  .location-card h3 { font-size: 25px; }
  .location-card address { min-height: auto; }
  .location-card .map { height: 430px; margin-top: 22px; }
  .location-marks { gap: 22px; margin-top: 50px; font-size: 17px; }

  .site-footer { height: 971px; padding: 62px 22px 35px; }
  .footer-top { display: block; }
  .footer-search { margin-top: 45px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 56px; }
  .footer-nav a { min-height: 49px; display: flex; align-items: center; border-top: 1px solid var(--line); }
  .footer-nav a:nth-child(even) { justify-content: flex-end; }
  .footer-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .flip-button:hover .flip-stage, .flip-button:focus-visible .flip-stage, .flip-button[aria-pressed="true"] .flip-stage { transform: none; }
  .flip-button[aria-pressed="true"] .front { visibility: hidden; }
  .flip-button[aria-pressed="true"] .back { transform: none; }
}
