:root {
  --background: #f7f1e8;
  --surface: #fffaf4;
  --surface-soft: #fbf5ec;
  --foreground: #122033;
  --muted: #5f6f84;
  --line: #ded3c6;
  --primary: #1d7f8c;
  --primary-dark: #0e5f69;
  --accent: #e7f0ec;
  --card: #fffaf4;
  --photo-background: #efe6da;
  --danger: #b42318;
  --action-booking-bg: #0f766e;
  --action-booking-bg-hover: #115e59;
  --action-call-bg: #1e3a8a;
  --action-call-bg-hover: #172554;
  --action-interpreter-bg: #b45309;
  --action-interpreter-bg-hover: #92400e;
  --action-neutral-bg: #ffffff;
  --action-neutral-text: #122033;
  --map-naver-bg: #03c75a;
  --map-naver-text: #ffffff;
  --map-kakao-bg: #fee500;
  --map-kakao-text: #191919;
  --map-google-bg: #4285f4;
  --map-google-text: #ffffff;
  --space-section-mobile: 32px;
  --space-section-desktop: 48px;
  --space-card: 16px;
  --space-grid: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, "Noto Sans KR", sans-serif;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 36%, transparent);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.test-mode-banner,
.private-preview-banner {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 16px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.test-mode-banner {
  background: #7c2d12;
}

.private-preview-banner {
  background: #334155;
}

.site-header {
  position: sticky;
  top: var(--sticky-banner-offset, 0px);
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 250, 244, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.site-header nav {
  display: none;
}

.phone-button,
.primary-button,
.action-button,
.button-grid a,
.button-grid button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--action-neutral-bg);
  color: var(--action-neutral-text);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.primary-button,
.action-booking {
  background: var(--action-booking-bg);
  color: #ffffff;
}

.primary-button:hover,
.action-booking:hover {
  background: var(--action-booking-bg-hover);
}

.primary-button:active,
.action-booking:active,
.phone-button:active,
.action-call:active,
.action-contact:active,
.action-interpreter:active,
.map-action:active {
  transform: translateY(1px);
}

.phone-button,
.action-call,
.action-contact {
  background: var(--action-call-bg);
  color: #ffffff;
}

.phone-button:hover,
.action-call:hover,
.action-contact:hover {
  background: var(--action-call-bg-hover);
}

.action-interpreter {
  background: var(--action-interpreter-bg);
  color: #ffffff;
}

.action-interpreter:hover {
  background: var(--action-interpreter-bg-hover);
}

.action-disabled,
[aria-disabled="true"] {
  opacity: 0.72;
  cursor: default;
}

.primary-button:disabled,
.action-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--surface);
  color: var(--foreground);
}

.language-switcher {
  position: relative;
  display: flex;
  grid-column: 1 / -1;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.language-primary {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-more {
  position: relative;
}

.language-option,
.language-more-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--surface);
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-option:hover,
.language-more-button:hover,
.language-option:focus-visible,
.language-more-button:focus-visible {
  border-color: var(--primary);
  outline: 2px solid color-mix(in srgb, var(--primary) 24%, transparent);
  outline-offset: 2px;
}

.language-option.is-active,
.language-more-button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 132px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(18, 32, 51, 0.14);
}

.language-dropdown .language-option {
  width: 100%;
  text-align: left;
}

.top-public-site-share {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  justify-content: end;
  justify-items: start;
}

.top-public-site-share__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.top-public-site-share__feedback,
.top-public-site-share__feedback[hidden] {
  min-height: 1em;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.top-public-site-share[hidden] {
  display: none;
}

.top-action-copy,
.top-action-share {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.top-action-copy {
  background: #eef3f6;
  color: var(--foreground);
}

.top-action-share {
  background: #156b74;
  color: #ffffff;
}

.top-action-copy:hover,
.top-action-share:hover,
.top-action-copy:focus-visible,
.top-action-share:focus-visible {
  filter: brightness(0.97);
}

.top-action-copy:focus-visible,
.top-action-share:focus-visible {
  outline: 2px solid #14243a;
  outline-offset: 2px;
}

.top-action-copy:disabled,
.top-action-share:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.hero {
  display: grid;
  gap: 20px;
  padding: 30px 16px;
  background: linear-gradient(180deg, #edf6f3 0%, #f7f1e8 100%);
}

.hero-content {
  max-width: 680px;
}

.top-location-summary,
.location-action-block {
  display: grid;
  gap: 10px;
}

.top-location-summary {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.9);
}

.location-action-heading,
.top-location-heading {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.location-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.location-facts div {
  display: grid;
  gap: 2px;
}

.location-facts dt {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.location-facts dd {
  margin: 0;
  color: var(--foreground);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.location-addresses {
  padding-bottom: 2px;
}

.location-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-primary-actions a,
.location-primary-actions button {
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.location-map-actions {
  gap: 8px;
}

.location-map-actions a {
  min-height: 38px;
  padding: 8px 11px;
}

.location-primary-actions a,
.location-primary-actions button {
  min-height: 38px;
}

.translator-contact-panel {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, #b45309 28%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, #fef3c7 38%, #ffffff);
  color: var(--foreground);
}

.translator-contact-panel[hidden] {
  display: none;
}

.translator-contact-title,
.translator-contact-note {
  margin: 0;
}

.translator-contact-title {
  font-size: 13px;
  font-weight: 800;
}

.translator-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  max-width: 100%;
  color: #92400e;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.translator-contact-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.location-action-layout,
.location-facts-panel,
.location-control-panel {
  display: grid;
  gap: 10px;
}

.location-control-panel {
  align-content: start;
}

.clinic-directions-card {
  display: grid;
  grid-column: 1 / -1;
}

.clinic-location-content {
  gap: 12px;
}

.call-routing-status {
  margin: 0;
  font-size: 14px !important;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.section {
  padding: var(--space-section-mobile) 16px;
}

.section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.accent-section {
  background: var(--accent);
}

.card-grid,
.photo-grid,
.clinic-profile-grid {
  display: grid;
  gap: var(--space-grid);
}

.clinic-profile-grid {
  align-items: start;
}

.simple-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-card);
}

.simple-card p,
.booking-section p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.treatment-grid {
  display: grid;
  gap: var(--space-grid);
}

.treatment-card {
  display: grid;
  gap: 8px;
  padding: var(--space-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.treatment-card h3 {
  margin: 0;
}

.treatment-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.treatment-tags li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff7ed;
  color: #5f3b13;
}

.treatment-tags li {
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  line-height: 1.6;
}

.clinic-profile-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.clinic-profile-card {
  align-self: start;
  display: grid;
  gap: 10px;
}

.clinic-profile-card h3 {
  margin: 0;
}

.clinic-profile-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.clinic-profile-card dd {
  margin: 3px 0 0;
  line-height: 1.55;
}

.photo-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.photo-card img,
.photo-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--photo-background);
}

.photo-card figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.booking-section {
  display: grid;
  gap: 16px;
  background: var(--surface-soft);
}

.booking-form {
  display: grid;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-card);
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.booking-form textarea {
  resize: vertical;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.interpreter-help {
  margin-top: -4px;
}

.form-notice {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.date-time-display {
  min-height: 20px;
}

.interpreter-control {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.picker-field {
  position: relative;
}

.picker-trigger {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--surface);
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
}

.picker-trigger:hover,
.picker-trigger:focus-visible {
  border-color: var(--primary);
}

.picker-dialog {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(18, 32, 51, 0.36);
}

.picker-panel {
  width: min(420px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.22);
}

.picker-title-row,
.calendar-nav,
.picker-actions,
.time-select-grid {
  display: flex;
  gap: 10px;
  align-items: center;
}

.picker-title-row {
  justify-content: space-between;
}

.picker-title-row h3 {
  margin: 0;
  font-size: 18px;
}

.icon-button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--foreground);
  font-weight: 800;
  cursor: pointer;
}

.calendar-nav {
  justify-content: space-between;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.calendar-day,
.calendar-empty {
  min-width: 0;
  min-height: 40px;
}

.calendar-day {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--foreground);
  font-weight: 800;
  cursor: pointer;
}

.calendar-day.is-selected,
.calendar-day.is-pending {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.picker-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.picker-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--surface-soft);
  color: var(--foreground);
  font-weight: 800;
  cursor: pointer;
}

.picker-actions .compact-primary {
  width: auto;
  background: var(--primary);
  color: #ffffff;
}

.time-select-grid {
  align-items: stretch;
}

.time-select-grid label {
  flex: 1 1 0;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 14px;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400 !important;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.error {
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
}

.form-error:empty,
.error:empty {
  display: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
}

.success-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f4fbf8;
}

.success-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.success-panel dt {
  font-weight: 800;
}

.success-panel dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-site-share {
  display: grid;
  gap: 8px;
}

.public-site-share-actions,
.button-grid--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-site-share-feedback,
.public-site-share-copy-feedback {
  margin: 0;
  color: var(--primary-dark);
  font-size: 13px;
  min-height: 1em;
}

.public-site-share-copy-feedback {
  font-weight: 700;
}

#successPanel .map-action-naver {
  background: var(--map-naver-bg);
  color: var(--map-naver-text);
}

#successPanel .map-action-kakao {
  background: var(--map-kakao-bg);
  color: var(--map-kakao-text);
}

#successPanel .map-action-google {
  border-color: var(--map-google-bg);
  background: var(--map-google-bg);
  color: #ffffff;
}

#successPanel .map-action:hover,
#successPanel .map-action-naver:hover,
#successPanel .map-action-kakao:hover,
#successPanel .map-action-google:hover {
  filter: brightness(0.92) saturate(1.04);
}

#successPanel .map-action:active {
  filter: brightness(0.85) saturate(1.08);
}

#successPanel .action-copy:hover,
#successPanel .action-share:hover {
  filter: brightness(0.96);
}

#successPanel .action-call:hover {
  background: var(--action-call-bg-hover);
}

#successPanel .action-copy {
  background: #e8eef0;
  color: #17212b;
  border: 1px solid #b8c6ca;
}

#successPanel .action-share {
  background: #176f78;
  color: #ffffff;
}

#successPanel .action-call {
  background: var(--action-call-bg);
  color: #ffffff;
}

#successPanel .action-share:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

#successPanel .map-action:focus-visible,
#successPanel .action-copy:focus-visible,
#successPanel .action-share:focus-visible,
#successPanel .action-call:focus-visible {
  outline: 2px solid #14243a;
  outline-offset: 2px;
}

.site-footer {
  padding: 28px 16px;
  background: #122033;
  color: #ffffff;
}

.site-footer > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer p {
  color: #d9e2ec;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.legal-links a {
  color: #ffffff;
}

.legal-page {
  min-height: 100vh;
}

.legal-article {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px 16px;
}

.legal-article p {
  line-height: 1.75;
}

body[data-header-variant="floating"] .site-header {
  top: 12px;
  width: min(1100px, calc(100% - 24px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

body[data-header-variant="transparent"] .site-header {
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(14px);
}

body[data-header-variant="compact"] .site-header {
  padding-top: 8px;
  padding-bottom: 8px;
}

body[data-hero-variant="centered"] .hero {
  text-align: center;
}

body[data-hero-variant="centered"] .hero-content {
  margin: 0 auto;
}

body[data-hero-variant="split-left"] .hero .hero-image {
  order: -1;
}

body[data-hero-variant="full-width-image"] .hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(18, 32, 51, 0.86), rgba(18, 32, 51, 0.24)),
    var(--accent);
}

body[data-hero-variant="full-width-image"] .hero-image {
  min-height: 360px;
  box-shadow: var(--shadow);
}

body[data-hero-variant="minimal-text-first"] .hero {
  background: var(--background);
}

body[data-hero-variant="compact-promotional"] .hero {
  padding-top: 28px;
  padding-bottom: 28px;
}

body[data-booking-variant="card"] .booking-form,
body[data-booking-variant="highlighted-final-cta"] .booking-form {
  box-shadow: var(--shadow);
}

body[data-booking-variant="highlighted-final-cta"] .booking-section {
  background: var(--accent);
}

body[data-gallery-variant="horizontal"] .photo-grid {
  display: flex;
  overflow-x: auto;
  padding-bottom: 8px;
}

body[data-gallery-variant="horizontal"] .photo-grid img {
  min-width: 280px;
}

body[data-gallery-variant="large-feature"] .photo-grid img:first-child,
body[data-gallery-variant="asymmetric"] .photo-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

body[data-card-style="elevated"] .simple-card,
body[data-card-style="soft"] .simple-card,
body[data-card-style="playful"] .simple-card {
  box-shadow: var(--shadow);
}

body[data-card-style="minimal"] .simple-card {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

body[data-button-style="outline"] .primary-button,
body[data-button-style="outline"] .phone-button,
body[data-button-style="outline"] .button-grid a,
body[data-button-style="outline"] .button-grid button {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

body[data-button-style="pill-dark"] .primary-button,
body[data-button-style="pill-dark"] .phone-button,
body[data-button-style="pill-dark"] .button-grid a,
body[data-button-style="pill-dark"] .button-grid button,
body[data-button-style="soft-rounded"] .primary-button,
body[data-button-style="soft-rounded"] .phone-button,
body[data-button-style="soft-rounded"] .button-grid a,
body[data-button-style="soft-rounded"] .button-grid button {
  border-radius: 999px;
}

.button-grid .map-button.map-button--naver,
body[data-button-style] .button-grid .map-button.map-button--naver {
  border-color: #03c75a;
  background: #03c75a;
  color: #ffffff;
}

.button-grid .map-button.map-button--kakao,
body[data-button-style] .button-grid .map-button.map-button--kakao {
  border-color: #fee500;
  background: #fee500;
  color: #191919;
}

.button-grid .map-button.map-button--google,
body[data-button-style] .button-grid .map-button.map-button--google {
  border-color: #4285f4;
  background: #4285f4;
  color: #ffffff;
}

.button-grid .map-button:hover {
  filter: brightness(0.92) saturate(1.04);
}

.button-grid .map-button:focus-visible {
  outline: 3px solid color-mix(in srgb, currentColor 40%, #ffffff);
  outline-offset: 3px;
}

.button-grid .map-button:active {
  filter: brightness(0.85) saturate(1.08);
}

.button-grid .map-button[aria-disabled="true"] {
  background: #e5e7eb;
  color: #4b5563;
  border-color: #cbd5e1;
}

.location-primary-actions .action-booking,
body[data-button-style] .location-primary-actions .action-booking {
  border-color: #0f766e;
  background: #0f766e;
  color: #ffffff;
}

.location-primary-actions .action-interpreter,
body[data-button-style] .location-primary-actions .action-interpreter {
  border-color: #b45309;
  background: #b45309;
  color: #ffffff;
}

.location-primary-actions .action-call,
body[data-button-style] .location-primary-actions .action-call {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: #ffffff;
}

.location-primary-actions .action-booking:hover {
  background: #115e59;
}

.location-primary-actions .action-interpreter:hover {
  background: #92400e;
}

.location-primary-actions .action-call:hover {
  background: #172554;
}

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 28px;
  }

  .language-switcher {
    grid-column: auto;
    flex-wrap: nowrap;
  }

  .site-header nav {
    display: flex;
    gap: 18px;
    justify-content: center;
  }

  .site-header nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 48px 28px;
  }

  .section {
    padding: var(--space-section-desktop) 28px;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clinic-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .clinic-directions-card {
    grid-column: 1 / -1;
  }

  .clinic-location-content .location-action-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: start;
    gap: 16px;
  }

  .clinic-location-content .location-control-panel {
    justify-self: start;
    width: min(100%, 460px);
  }

  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-location-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .top-location-actions,
  .location-primary-actions,
  .button-grid {
    display: grid;
  }

  .top-location-actions a,
  .top-location-actions button,
  .location-primary-actions a,
  .location-primary-actions button,
  .button-grid a,
  .button-grid button,
  .primary-button,
  .phone-button {
    width: 100%;
  }

  .picker-actions,
  .time-select-grid {
    display: grid;
  }
}
