:root {
  --ink: #242326;
  --ink-soft: #565257;
  --paper: #fbfaf8;
  --cream: #f3eee9;
  --white: #ffffff;
  --coral: #db8d83;
  --coral-dark: #9f554e;
  --plum: #25203a;
  --line: rgba(36, 35, 38, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 2px;
  --shadow: 0 24px 80px rgba(42, 31, 33, 0.14);
}

/* Production templates: navigation, editorial pages and consent controls. */
.utility-inner a {
  transition: color 160ms ease;
}

.utility-inner a:hover {
  color: #f4b4aa;
}

.utility-location {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: grid;
  gap: 4px;
  padding: 24px 20px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 35px rgba(36, 35, 38, 0.08);
  transform: translateY(-130%);
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms ease, opacity 180ms ease, visibility 220ms;
}

.site-nav.nav-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav ul,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  display: grid;
}

.site-nav ul a {
  display: block;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.site-nav a[aria-current="page"] {
  color: var(--coral-dark);
}

.menu-toggle {
  color: white;
}

.menu-toggle-label {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.menu-toggle-lines {
  width: 19px !important;
  height: auto !important;
  display: grid;
  gap: 6px;
  background: transparent !important;
}

.menu-toggle-lines i {
  width: 19px;
  height: 1px;
  display: block;
  background: white;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 15px 8px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-links {
  display: flex;
  gap: 5px;
}

.language-links a {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
}

.language-links a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.button {
  background: var(--ink);
  color: white;
}

.button:hover {
  background: var(--plum);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
}

.button-ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  background: var(--ink);
  color: white;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.closing-cta {
  padding: 82px 0;
  background: var(--coral);
  text-align: center;
}

.closing-cta-inner {
  display: grid;
  justify-items: center;
}

.closing-cta h2 {
  max-width: 780px;
  margin-bottom: 30px;
}

.footer-grid h2 {
  margin-bottom: 15px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hours-list {
  display: grid;
  gap: 5px;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.link-button {
  border: 0;
  padding: 0;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.8rem;
  text-align: left;
}

.link-button:hover {
  color: white;
}

.mobile-action-primary {
  background: var(--coral);
  color: var(--ink);
}

.consent-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 12px;
  border: 0;
  background: rgba(26, 23, 26, 0.56);
  color: var(--ink);
}

.consent-dialog[open] {
  display: grid;
  align-items: end;
}

.consent-dialog::backdrop {
  background: rgba(26, 23, 26, 0.56);
  backdrop-filter: blur(4px);
}

.consent-card {
  width: min(100%, 780px);
  max-height: calc(100vh - 24px);
  margin-inline: auto;
  padding: 25px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.consent-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 7vw, 3.4rem);
}

.consent-heading > p:last-child,
.consent-details {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.consent-option {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.consent-option span {
  display: grid;
}

.consent-option strong {
  font-size: 0.82rem;
}

.consent-option small {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.consent-option input {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  accent-color: var(--coral-dark);
}

.consent-details {
  margin-block: 16px 20px;
}

.consent-details summary {
  cursor: pointer;
  font-weight: 750;
}

.consent-details p {
  margin: 10px 0 0;
}

.consent-provider-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.consent-provider-list > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.28fr) minmax(0, 1fr);
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.consent-provider-list dt {
  color: var(--ink);
  font-weight: 750;
}

.consent-provider-list dd {
  margin: 0;
}

.consent-actions {
  display: grid;
  gap: 8px;
}

.consent-actions [data-consent-essential],
.consent-actions [data-consent-all] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.noscript-note {
  position: fixed;
  z-index: 200;
  inset: auto 0 64px;
  padding: 10px 20px;
  background: #fff0c9;
  color: #332811;
  font-size: 0.75rem;
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
  background:
    radial-gradient(circle at 93% 15%, rgba(219, 141, 131, 0.3), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f3eee9 100%);
}

.page-hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 6.9rem);
}

.page-lead,
.article-deck {
  max-width: 750px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
}

.page-hero-media {
  min-height: 350px;
  overflow: hidden;
  background: var(--cream);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.content-section {
  padding: 78px 0;
}

.content-section.alt {
  background: var(--cream);
}

.content-grid {
  display: grid;
  gap: 20px;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.content-card h2,
.content-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.service-index {
  display: grid;
  gap: 16px;
}

.service-index-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: white;
}

.service-index-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-index-card::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(22, 20, 23, 0.86));
}

.service-index-card:hover img {
  transform: scale(1.025);
}

.service-index-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
}

.service-index-card h2 {
  margin-bottom: 8px;
  font-size: 2.15rem;
}

.service-index-card p {
  max-width: 480px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.price-table {
  display: grid;
  gap: 38px;
}

.price-category {
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
}

.price-category h2 {
  margin-bottom: 22px;
  font-size: 2rem;
}

.price-table-row {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
}

.price-table-row:last-child {
  border-bottom: 0;
}

.price-table-dots {
  border-bottom: 1px dotted rgba(36, 35, 38, 0.35);
}

.article-hero {
  padding: 72px 0 34px;
  background: var(--cream);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.article-meta a {
  color: inherit;
  text-decoration-color: rgba(36, 35, 38, 0.4);
  text-underline-offset: 0.2em;
}

.article-feature {
  width: min(1380px, calc(100% - 24px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
}

.article-feature img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-layout {
  display: grid;
  gap: 44px;
  padding-block: 64px 90px;
}

.article-body {
  max-width: 780px;
}

.article-body > p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.35;
}

.article-body h2 {
  margin: 55px 0 18px;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.article-body h3 {
  margin: 34px 0 13px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3rem;
}

.article-aside {
  align-self: start;
  padding: 25px;
  border-top: 3px solid var(--coral);
  background: var(--cream);
}

.article-aside h2 {
  font-size: 1.55rem;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-share a,
.article-share button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.73rem;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: white;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 760;
}

.faq-list p {
  margin: 12px 0 0;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
}

.field-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field-label {
  font-size: 0.75rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 35, 38, 0.28);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.sensitive-data-notice {
  margin: -6px 0 0;
  padding: 12px 14px;
  border-inline-start: 3px solid var(--coral-dark);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.55;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  font-size: 0.78rem;
}

.check-field input {
  width: 20px;
  height: 20px;
}

.check-field a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.check-field a:hover,
.check-field a:focus-visible {
  text-decoration-thickness: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.8rem;
}

.map-consent {
  min-height: 390px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 48%, rgba(219, 141, 131, 0.28) 49%, rgba(219, 141, 131, 0.28) 51%, transparent 52%),
    repeating-linear-gradient(35deg, #eee9e2 0 16px, #f7f3ed 16px 42px);
  text-align: center;
}

.map-consent p {
  max-width: 520px;
}

.map-consent-frame {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.legal-copy {
  max-width: 1040px;
}

.legal-toc {
  margin-bottom: clamp(34px, 6vw, 64px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--paper) 0%, #fff 100%);
}

.legal-toc > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 9px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  text-decoration-color: transparent;
}

.legal-toc a:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.legal-sections {
  display: grid;
}

.legal-section {
  scroll-margin-top: 130px;
  padding-block: clamp(30px, 5vw, 52px);
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  border-top-color: var(--ink);
}

.legal-copy h2 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
}

.legal-copy h3 {
  margin-top: 30px;
}

.legal-copy address {
  font-style: normal;
}

.legal-copy p,
.legal-copy li {
  max-width: 78ch;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.legal-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: white;
  font-size: 0.72rem;
  font-weight: 700;
}

.legal-updated {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
}

@media (min-width: 700px) {
  .legal-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consent-actions {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (max-width: 699px) {
  .legal-page .page-hero h1 {
    font-size: clamp(2rem, 7.8vw, 2.1rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }
}

@media (min-width: 1040px) {
  .header-inner {
    min-height: 84px;
  }

  .brand img {
    width: 174px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .site-nav ul a {
    padding: 13px 0 8px;
    border: 0;
    border-bottom: 1px solid transparent;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .site-nav ul a:hover,
  .site-nav ul a[aria-current="page"] {
    border-bottom-color: currentColor;
  }

  .language-switcher > span {
    display: none;
  }

  .language-switcher {
    padding: 0;
  }

  .language-links a {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.62rem;
  }

  .page-hero {
    padding-block: 112px 94px;
  }

  .page-hero-grid.has-media {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
    gap: 7vw;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 570px;
  }

  .content-section {
    padding-block: 110px;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 780px) minmax(240px, 320px);
    justify-content: space-between;
    gap: 70px;
  }

  .article-aside {
    position: sticky;
    top: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
select,
input,
textarea {
  font-family: var(--sans);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  color: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2368d5;
  outline-offset: 4px;
}

.reviews-section :is(a, button):focus-visible,
.site-footer :is(a, button):focus-visible,
.utility-bar a:focus-visible {
  outline-color: #f4b4aa;
}

.mobile-actions a:focus-visible {
  outline-color: var(--ink);
  outline-offset: -5px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.45rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  display: none;
  background: var(--plum);
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p {
  margin: 0;
}

.utility-inner div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #77d59f;
  box-shadow: 0 0 0 4px rgba(119, 213, 159, 0.14);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(36, 35, 38, 0.09);
  background: rgba(251, 250, 248, 0.94);
  backdrop-filter: blur(16px);
}

.breadcrumbs {
  border-bottom: 1px solid rgb(80 37 57 / 8%);
  color: var(--muted);
  background: rgb(255 250 244 / 82%);
}

.breadcrumbs ol {
  display: flex;
  min-height: 2.65rem;
  padding-block: .55rem;
  margin-block: 0;
  align-items: center;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}

.breadcrumbs li {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  font-size: .76rem;
}

.breadcrumbs li + li::before {
  margin-inline: .55rem;
  color: rgb(80 37 57 / 34%);
  content: "›";
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs [aria-current="page"] {
  max-width: min(52vw, 34rem);
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav {
  position: fixed;
  inset: 72px 0 auto 0;
  display: grid;
  gap: 4px;
  padding: 24px 20px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transform: translateY(-130%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 220ms ease,
    opacity 180ms ease,
    visibility 220ms;
}

.nav-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav a {
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-picker select {
  min-height: 44px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.header-book {
  display: none !important;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  background: white;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: var(--plum);
}

.button-coral {
  background: var(--coral);
  color: var(--ink);
}

.button-coral:hover {
  background: #e7a39a;
}

.button-light {
  background: white;
  color: var(--ink);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: white;
}

.button-quiet {
  border-color: var(--line);
  background: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link.light,
.eyebrow.light {
  color: white;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 48px;
  background:
    radial-gradient(circle at 100% 0%, rgba(219, 141, 131, 0.18), transparent 42%),
    linear-gradient(115deg, var(--paper), #f7f2ee);
}

.hero::before {
  position: absolute;
  content: "";
  width: 280px;
  height: 280px;
  left: -180px;
  bottom: -120px;
  border: 1px solid rgba(219, 141, 131, 0.34);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 15vw, 7.6rem);
  line-height: 0.91;
}

.hero h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  align-items: center;
  gap: 14px;
}

.hero-actions .text-link {
  width: fit-content;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof > div {
  min-width: 96px;
  display: grid;
  align-content: start;
  line-height: 1.35;
}

.hero-proof > div strong {
  font-family: var(--serif);
  font-size: 1.02rem;
}

.hero-proof > div span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--plum);
  color: white;
  font-family: var(--serif);
  font-size: 0.8rem;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--coral);
  color: var(--ink);
}

.stars {
  color: var(--coral-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.reviews-section .stars {
  color: #f4b4aa;
}

.hero-proof p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 445px;
}

.hero-image-main {
  position: absolute;
  inset: 0 12% 0 0;
  overflow: hidden;
  background: #ddd;
}

.hero-image-main img,
.hero-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main img {
  object-position: 53% center;
}

.hero-image-small {
  position: absolute;
  z-index: 2;
  width: 43%;
  height: 40%;
  right: 0;
  bottom: 11%;
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 0;
  width: 118px;
  min-height: 118px;
  display: grid;
  place-content: center;
  padding: 15px;
  border-radius: 50%;
  background: var(--coral);
  text-align: center;
  transform: rotate(7deg);
}

.hero-note span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.1;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.trust-grid div {
  padding: 21px 8px;
  text-align: center;
}

.trust-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.trust-grid div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 540px;
  color: var(--ink-soft);
}

.section-heading.compact {
  align-items: end;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #28242a;
  color: white;
}

.service-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(23, 19, 23, 0.82) 100%);
}

.service-content {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 25px;
}

.service-number {
  position: absolute;
  top: -240px;
  right: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.service-content strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.service-content small {
  grid-column: 1;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 1.1rem;
}

.story-section {
  background: var(--cream);
}

.story-grid {
  display: grid;
  gap: 48px;
}

.story-image {
  position: relative;
  min-height: 460px;
}

.story-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 12% center;
}

.image-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 18px;
  background: var(--paper);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-copy {
  align-self: center;
}

.large-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.story-copy > p:not(.eyebrow):not(.large-copy) {
  color: var(--ink-soft);
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.story-facts dt {
  font-family: var(--serif);
  font-size: 1.6rem;
}

.story-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.prices-section {
  background: var(--paper);
}

.prices-grid {
  display: grid;
  gap: 45px;
}

.prices-intro p:not(.eyebrow) {
  max-width: 480px;
  color: var(--ink-soft);
}

.prices-intro .button {
  margin-top: 12px;
}

.price-list {
  display: grid;
  gap: 35px;
}

.price-group {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.price-group h3 {
  margin-bottom: 19px;
  color: var(--coral-dark);
  font-size: 1.65rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
}

.price-row > span:first-child {
  font-size: 0.88rem;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(36, 35, 38, 0.3);
}

.price-row strong {
  font-family: var(--serif);
  font-size: 1rem;
  white-space: nowrap;
}

.looks-section {
  overflow: hidden;
  background: white;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: var(--ink);
  color: white;
}

.looks-track,
.reviews-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.looks-track::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar {
  display: none;
}

.look-card,
.look-follow {
  min-width: min(82vw, 340px);
  scroll-snap-align: start;
}

.look-card {
  background: var(--cream);
}

.look-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.look-card div {
  padding: 19px;
}

.look-card div span {
  color: var(--coral-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.look-card h3 {
  margin: 4px 0 0;
}

.look-follow {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px;
  background: var(--coral);
}

.look-follow > span:first-child {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look-follow strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.look-follow > span:last-child {
  font-size: 1.5rem;
}

.reviews-section {
  overflow: hidden;
  background: var(--plum);
  color: white;
}

.review-top {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.review-top h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.review-score {
  display: grid;
  width: fit-content;
  padding-left: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.review-score strong {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.review-score span {
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.review-score small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
}

.review-card {
  min-width: min(86vw, 430px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  scroll-snap-align: start;
}

.quote-mark {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.8;
}

.review-card blockquote {
  margin: 22px 0 30px;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--serif);
}

.review-card figcaption > span:last-child {
  display: grid;
}

.review-card figcaption strong {
  font-size: 0.78rem;
}

.review-card figcaption small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
}

.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.carousel-controls.inverse button {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.carousel-controls.inverse button:hover {
  background: white;
  color: var(--ink);
}

.journal-section {
  background: var(--paper);
}

.article-grid {
  display: grid;
  gap: 40px;
}

.article-card {
  display: grid;
  gap: 22px;
}

.article-image {
  overflow: hidden;
  background: var(--cream);
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-image:hover img {
  transform: scale(1.035);
}

.article-card time {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 9px 0 15px;
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.17;
}

.visit-section {
  padding: 0;
  background: var(--cream);
}

.visit-grid {
  width: 100%;
  display: grid;
}

.visit-card {
  padding: 72px 20px;
}

.visit-card h2 {
  max-width: 640px;
}

.visit-card address {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-style: normal;
}

.opening-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 480px;
  gap: 8px 20px;
  padding-block: 22px;
  border-block: 1px solid var(--line);
  font-size: 0.83rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.map-preview {
  position: relative;
  min-height: 520px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 35px;
  overflow: hidden;
  background:
    linear-gradient(35deg, rgba(255, 255, 255, 0.28), transparent),
    #d7d8cf;
  text-align: center;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.48;
}

.map-lines span {
  position: absolute;
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: left center;
}

.map-lines span:nth-child(1) {
  width: 130%;
  top: 18%;
  left: -10%;
  transform: rotate(16deg);
}

.map-lines span:nth-child(2) {
  width: 120%;
  top: 55%;
  left: -8%;
  transform: rotate(-13deg);
}

.map-lines span:nth-child(3) {
  width: 90%;
  top: 5%;
  left: 45%;
  transform: rotate(73deg);
}

.map-lines span:nth-child(4) {
  width: 74%;
  top: 35%;
  left: 18%;
  transform: rotate(48deg);
}

.map-lines span:nth-child(5) {
  width: 90%;
  top: 80%;
  left: 25%;
  transform: rotate(-55deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  width: 180px;
  min-height: 120px;
  display: grid;
  place-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.map-pin > span {
  color: var(--coral-dark);
  font-size: 1.5rem;
}

.map-pin strong {
  font-family: var(--serif);
}

.map-pin small {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.map-preview > p,
.map-preview > .button {
  position: relative;
  z-index: 2;
}

.map-preview > p {
  max-width: 390px;
  margin: 22px auto 14px;
  padding: 9px 12px;
  background: rgba(243, 238, 233, 0.88);
  font-size: 0.72rem;
}

.cta-section {
  padding: 95px 0;
  background: var(--coral);
  text-align: center;
}

.cta-inner {
  max-width: 900px;
}

.cta-inner h2 {
  margin-inline: auto;
}

.cta-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(36, 35, 38, 0.78);
}

.cta-inner > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-footer {
  padding: 72px 0 95px;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-brand img {
  width: 170px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-brand p {
  max-width: 350px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-grid h3 {
  margin-bottom: 15px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: grid;
  gap: 14px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a,
.footer-bottom button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  inset: auto 0 0;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -8px 30px rgba(25, 23, 25, 0.08);
}

.mobile-actions a {
  display: grid;
  place-content: center;
  justify-items: center;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-actions a + a {
  border-left: 1px solid var(--line);
}

.mobile-actions span {
  font-size: 1rem;
  line-height: 1.2;
}

.mobile-actions .mobile-book {
  background: var(--coral);
  color: var(--ink);
}

.consent-backdrop {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 12px;
  background: rgba(26, 23, 26, 0.52);
  backdrop-filter: blur(4px);
}

.consent-panel {
  width: min(100%, 760px);
  max-height: calc(100vh - 24px);
  margin: 0 auto;
  padding: 25px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.consent-kicker {
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consent-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 7vw, 3.3rem);
}

.consent-panel > p {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.consent-panel > a {
  display: inline-block;
  margin-top: 15px;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
}

.consent-options {
  display: grid;
  margin: 20px 0;
  border-top: 1px solid var(--line);
}

.consent-options label {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.consent-options label > span {
  display: grid;
}

.consent-options strong {
  font-size: 0.8rem;
}

.consent-options small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.consent-options input {
  width: 23px;
  height: 23px;
  accent-color: var(--coral-dark);
}

.consent-actions {
  display: grid;
  gap: 8px;
}

@media (min-width: 700px) {
  :root {
    --shell: min(1180px, calc(100% - 64px));
  }

  .utility-bar {
    display: block;
  }

  .site-header {
    top: 0;
  }

  .hero {
    padding-block: 80px 70px;
  }

  .hero-actions {
    display: flex;
    gap: 24px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid div {
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    padding: 28px 10px;
  }

  .trust-grid div:last-child {
    border-right: 0 !important;
  }

  .section {
    padding-block: 120px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 58px;
  }

  .section-heading.compact {
    grid-template-columns: 1fr auto;
  }

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

  .service-card-1,
  .service-card-4 {
    min-height: 500px;
  }

  .story-grid,
  .prices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8vw;
  }

  .story-image {
    min-height: 720px;
  }

  .story-copy {
    padding-block: 50px;
  }

  .article-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .review-top {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .visit-card {
    padding: 100px max(32px, calc((100vw - 1180px) / 2));
  }

  .cta-inner > div {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .consent-backdrop {
    align-items: center;
    padding: 30px;
  }

  .consent-panel {
    padding: 38px;
  }

  .consent-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 86px;
  }

  .brand img {
    width: 175px;
  }

  .nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: clamp(15px, 2.2vw, 32px);
    padding: 0;
    border: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    position: relative;
    padding: 30px 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.73rem;
    font-weight: 720;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav a::after {
    position: absolute;
    content: "";
    height: 1px;
    inset: auto 100% 22px 0;
    background: var(--coral-dark);
    transition: right 180ms ease;
  }

  .nav a:hover::after {
    right: 0;
  }

  .header-book {
    display: inline-flex !important;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding-block: 86px 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
    align-items: center;
    gap: 4vw;
  }

  .hero h1 {
    font-size: clamp(4.9rem, 7.6vw, 7.4rem);
  }

  .hero-visual {
    min-height: 650px;
  }

  .service-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .service-card {
    min-height: 420px;
  }

  .service-card-1,
  .service-card-4 {
    grid-column: span 7;
    min-height: 535px;
  }

  .service-card-2,
  .service-card-3 {
    grid-column: span 5;
  }

  .service-card-5,
  .service-card-6 {
    grid-column: span 5;
    margin-top: -115px;
  }

  .service-card-3 {
    grid-column: 1 / span 5;
  }

  .service-card-4 {
    grid-column: 6 / span 7;
  }

  .look-card,
  .look-follow {
    min-width: 340px;
  }

  .review-card {
    min-width: 430px;
  }

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

  .visit-card {
    padding-left: max(40px, calc((100vw - 1180px) / 2));
    padding-right: 7vw;
  }

  .mobile-actions {
    display: none;
  }

  .site-footer {
    padding-bottom: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Cascade guard: these production-only selectors intentionally follow preview CSS. */
.menu-toggle .menu-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  background: transparent;
}

.menu-toggle .menu-toggle-lines {
  width: 19px;
  height: auto;
  display: grid;
  gap: 6px;
  background: transparent;
}

.button.button-ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.consent-actions .button[data-consent-essential],
.consent-actions .button[data-consent-all] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

@media (min-width: 980px) {
  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .site-nav ul a {
    padding: 13px 0 8px;
    border: 0;
    border-bottom: 1px solid transparent;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .site-nav ul a:hover,
  .site-nav ul a[aria-current="page"] {
    border-bottom-color: currentColor;
  }

  .language-switcher > span {
    display: none;
  }

  .language-switcher {
    padding: 0;
  }
}

/* 2026 visual refinement: compact heroes, editorial cards and richer navigation. */
:root {
  --brand-aubergine: #3c234b;
  --brand-wine: #7a2438;
  --brand-rose-gold: #b9896b;
  --card-radius: 22px;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.brand picture,
.footer-brand picture {
  display: block;
}

.brand img {
  width: clamp(132px, 16vw, 166px);
  max-height: 70px;
  object-fit: contain;
}

.footer-brand img {
  width: min(210px, 100%);
  height: auto;
  padding: 0;
  background: transparent;
}

.button {
  border-radius: 999px;
}

.page-hero {
  padding-block: clamp(52px, 7vw, 78px);
  background:
    radial-gradient(circle at 92% 12%, rgba(185, 137, 107, 0.18), transparent 27%),
    linear-gradient(132deg, #fffdf9 0%, #f4ede8 100%);
}

.page-hero-grid {
  gap: clamp(28px, 5vw, 58px);
}

.page-hero-copy {
  max-width: 720px;
}

.page-hero h1,
.article-hero h1 {
  max-width: 900px;
  margin-bottom: 19px;
  font-size: clamp(2.45rem, 7vw, 4.75rem);
  line-height: 0.98;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.page-lead,
.article-deck {
  max-width: 700px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.66;
}

.page-hero-media {
  min-height: 280px;
  aspect-ratio: 3 / 2;
  border-radius: var(--card-radius);
  box-shadow: 0 24px 60px rgba(60, 35, 75, 0.13);
}

.page-hero-media img {
  min-height: 0;
  object-position: center;
}

.content-section {
  padding-block: clamp(62px, 8vw, 96px);
}

.content-grid {
  align-items: start;
}

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

.content-card {
  min-width: 0;
  padding: clamp(24px, 3.2vw, 38px);
  border-color: rgba(60, 35, 75, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(36, 35, 38, 0.045);
}

.content-card h2,
.content-card h3 {
  font-size: clamp(1.62rem, 3vw, 2.18rem);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.content-card p,
.content-card li {
  line-height: 1.72;
}

.service-index {
  gap: clamp(16px, 2vw, 24px);
}

.service-index-card {
  min-height: 350px;
  border-radius: var(--card-radius);
  box-shadow: 0 22px 55px rgba(36, 35, 38, 0.12);
  isolation: isolate;
}

.service-index-card::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 23, 0.03) 18%, rgba(24, 18, 28, 0.88) 100%),
    linear-gradient(90deg, rgba(24, 18, 28, 0.28), transparent 62%);
}

.service-index-card-content {
  padding: clamp(24px, 3vw, 38px);
}

.service-index-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}

.service-index-card-top .eyebrow {
  margin: 0;
}

.service-index-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.service-index-card h2 {
  max-width: 560px;
  margin-bottom: 9px;
  font-size: clamp(2rem, 5vw, 3.05rem);
  line-height: 1;
  text-wrap: balance;
}

.service-index-card p {
  display: -webkit-box;
  max-width: 580px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-detail-hero .page-hero-media {
  aspect-ratio: 3 / 2;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 238, 0.92));
}

.content-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(122, 36, 56, 0.36);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-next-steps {
  padding-block: clamp(52px, 7vw, 82px);
  background:
    radial-gradient(circle at 100% 0, rgba(185, 137, 107, 0.22), transparent 32%),
    #f3eee9;
}

.service-next-steps-inner {
  display: grid;
  gap: 28px;
  align-items: end;
}

.service-next-steps h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero {
  padding-block: clamp(50px, 7vw, 76px);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 9.2vw, 5.75rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-visual {
  min-height: clamp(400px, 61vw, 535px);
}

.hero-image-main {
  border-radius: 26px;
}

.hero-image-small {
  border-width: 6px;
  border-radius: 18px;
}

.section {
  padding-block: clamp(76px, 9vw, 102px);
}

.journal-grid {
  gap: 24px;
}

.journal-grid .article-card {
  min-width: 0;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(60, 35, 75, 0.12);
  border-radius: var(--card-radius);
  background: white;
  box-shadow: 0 18px 52px rgba(36, 35, 38, 0.07);
}

.journal-grid .article-image {
  min-width: 0;
}

.journal-grid .article-image img {
  aspect-ratio: 16 / 10;
}

.article-card-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
  padding: clamp(21px, 3vw, 30px);
}

.article-card-meta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 13px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.article-card-meta time {
  color: var(--brand-wine);
}

.journal-grid .article-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.42rem, 2.5vw, 1.92rem);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.journal-grid .article-card p {
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--ink-soft);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.journal-grid .article-card .text-link {
  margin-top: auto;
}

.article-hero {
  padding-block: clamp(54px, 7vw, 82px) clamp(30px, 4vw, 46px);
}

.article-feature {
  width: min(1240px, calc(100% - 28px));
  border-radius: 24px;
}

.article-layout {
  padding-block: clamp(52px, 7vw, 80px);
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin-top: clamp(42px, 6vw, 60px);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  text-wrap: balance;
}

.article-body p,
.article-body li {
  line-height: 1.78;
}

.article-section-lead {
  margin-top: -8px;
  color: var(--brand-wine);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.45 !important;
}

.article-reading-list {
  margin-top: 50px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(60, 35, 75, 0.12);
  border-radius: 18px;
  background: #fff;
}

.article-reading-list > div {
  display: grid;
  gap: 10px;
}

.article-reading-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--brand-aubergine);
  font-weight: 700;
}

.article-reading-list a:last-child {
  border-bottom: 0;
}

.article-related {
  margin-top: 50px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(185, 137, 107, 0.22), transparent 36%),
    var(--cream);
}

.article-related h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
}

.article-related-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.article-related-grid a {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 18px 48px 18px 18px;
  border: 1px solid rgba(60, 35, 75, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.article-related-grid strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.article-related-grid span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.article-related-grid i {
  position: absolute;
  top: 50%;
  right: 18px;
  font-style: normal;
  transform: translateY(-50%);
}

.looks-track {
  gap: 18px;
  padding: 6px max(20px, calc((100vw - 1180px) / 2)) 30px;
  scroll-padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

.look-card,
.look-follow {
  min-width: min(76vw, 316px);
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(36, 35, 38, 0.1);
}

.look-card:nth-child(3n + 2) {
  transform: translateY(14px);
}

.look-card img {
  height: min(95vw, 395px);
  aspect-ratio: auto;
  object-fit: cover;
}

.look-card div {
  min-height: 96px;
  display: grid;
  gap: 7px;
}

.look-card small {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.look-follow {
  min-height: 490px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.25), transparent 28%),
    linear-gradient(145deg, #b9896b, #7a2438);
  color: white;
}

.reviews-section {
  background:
    radial-gradient(circle at 95% 0, rgba(185, 137, 107, 0.2), transparent 30%),
    #251f35;
}

.review-score {
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.reviews-track {
  gap: 18px;
  padding-bottom: 18px;
}

.review-card {
  min-width: min(84vw, 390px);
  min-height: 310px;
  padding: clamp(25px, 3vw, 34px);
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: 0 25px 60px rgba(10, 8, 15, 0.18);
}

.review-card:nth-child(2n) {
  background: linear-gradient(145deg, rgba(185, 137, 107, 0.2), rgba(255, 255, 255, 0.04));
}

.review-card blockquote {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.price-table {
  gap: 22px;
}

.price-category {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(36, 35, 38, 0.055);
}

.sitemap-groups {
  display: grid;
  gap: 24px;
}

.sitemap-group {
  overflow: hidden;
  border: 1px solid rgba(60, 35, 75, 0.12);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(36, 35, 38, 0.055);
}

.sitemap-group header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, #f8f2ee, #fff);
}

.sitemap-group header > span {
  color: var(--brand-wine);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.sitemap-group header h2 {
  margin: 0 0 7px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.sitemap-group header p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.sitemap-group header strong {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-aubergine);
  color: white;
  font-size: 0.72rem;
}

.sitemap-group ul {
  margin: 0;
  padding: 14px clamp(24px, 4vw, 38px) 24px;
  list-style: none;
}

.sitemap-group li {
  break-inside: avoid;
}

.sitemap-group a {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.sitemap-group li:last-child a {
  border-bottom: 0;
}

.sitemap-group a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sitemap-group a i {
  color: var(--brand-wine);
  font-style: normal;
}

.field small {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.overview-intro {
  max-width: 1060px;
  display: grid;
  gap: 14px;
  margin: 0 auto clamp(34px, 6vw, 64px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(60, 35, 75, 0.11);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(36, 35, 38, 0.06);
}

.overview-intro .eyebrow {
  margin: 0;
}

.overview-intro > p:last-child {
  max-width: 850px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

@media (max-width: 699px) {
  .hero {
    padding-block: 30px 32px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.55rem, 11.7vw, 3.05rem);
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 8px 22px;
    margin-top: 16px;
  }

  .hero-proof > div {
    min-width: 0;
  }

  .hero-proof p {
    grid-column: 1 / -1;
    margin: 0;
    line-height: 1.45;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-note {
    width: 104px;
    min-height: 104px;
    padding: 12px;
  }

  .page-hero {
    padding-block: 42px 44px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .page-lead,
  .article-deck {
    line-height: 1.56;
  }

  .content-grid.three {
    grid-template-columns: 1fr;
  }

  .sitemap-group header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sitemap-group header strong {
    display: none;
  }
}

@media (min-width: 700px) {
  .overview-intro {
    grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
    align-items: start;
  }

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

  .service-next-steps-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .sitemap-link-columns {
    columns: 2;
    column-gap: 48px;
  }

  .sitemap-link-columns li:last-child a {
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 980px) {
  .page-hero {
    padding-block: 72px 68px;
  }

  .page-hero-grid.has-media {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
    gap: 6vw;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 0;
    max-height: 460px;
  }

  .hero {
    padding-block: 70px 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.84fr);
  }

  .hero h1 {
    font-size: clamp(4.35rem, 6.2vw, 5.75rem);
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .journal-grid .article-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .journal-grid .article-card-featured .article-image img {
    height: 100%;
    aspect-ratio: auto;
  }

  .journal-grid .article-card-featured h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
  }

  .service-index-card:first-child {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .service-index-card:first-child .service-index-card-content {
    max-width: 760px;
  }

  .content-grid.three,
  .service-detail-content .content-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    min-width: 390px;
  }

  .sitemap-link-columns {
    columns: 3;
  }
}

/* 2026-07-28 service and control audit: stable grids, crops and compact CTAs. */
.button.button-outline {
  color: var(--ink);
}

.button.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.7rem;
  white-space: nowrap;
}

.service-grid {
  gap: clamp(14px, 2vw, 24px);
}

.service-grid .service-card {
  min-height: clamp(340px, 88vw, 410px);
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 52px rgba(36, 35, 38, 0.12);
  isolation: isolate;
}

.service-card picture {
  position: absolute;
  inset: 0;
}

.service-card img,
.service-index-card img {
  object-position: var(--service-focus, 50% 38%);
}

.service-content {
  inset: 0;
  align-content: end;
  padding: clamp(22px, 3vw, 30px);
}

.service-number {
  top: 24px;
  right: 24px;
}

.service-content strong {
  padding-right: 12px;
  font-size: clamp(1.55rem, 2.3vw, 1.95rem);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.service-content small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-type-women {
  --service-focus: 62% 32%;
}

.service-type-color {
  --service-focus: 62% 34%;
}

.service-type-balayage {
  --service-focus: 58% 34%;
}

.service-type-styling {
  --service-focus: 58% 34%;
}

.service-type-wave {
  --service-focus: 60% 34%;
}

.service-type-men {
  --service-focus: 34% 35%;
}

.service-type-children {
  --service-focus: 65% 35%;
}

.service-type-extensions {
  --service-focus: 42% 35%;
}

.service-type-volume {
  --service-focus: 67% 35%;
}

.service-type-wigs {
  --service-focus: 34% 38%;
}

.service-type-olaplex {
  --service-focus: 68% 38%;
}

.service-type-beauty {
  --service-focus: 58% 34%;
}

.service-index-card {
  min-height: clamp(350px, 54vw, 430px);
}

.service-index-card:first-child {
  grid-column: auto;
  min-height: clamp(350px, 54vw, 430px);
}

.service-index-card:first-child .service-index-card-content {
  max-width: none;
}

.generated-media-note {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  max-width: min(88%, 390px);
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(28, 23, 30, 0.76);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.page-hero-media {
  position: relative;
}

.generated-media-legend {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.5;
}

.price-service-directory {
  margin-top: clamp(42px, 7vw, 78px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(60, 35, 75, 0.11);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(36, 35, 38, 0.05);
}

.price-service-directory h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.price-service-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.price-service-links a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  font-size: 0.82rem;
  font-weight: 720;
  transition: border-color 180ms ease, transform 180ms ease;
}

.price-service-links a:hover {
  border-color: var(--coral-dark);
  transform: translateY(-2px);
}

.price-service-links a span:first-child {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.price-service-links a span:last-child {
  flex: 0 0 auto;
  color: var(--coral-dark);
}

@media (min-width: 600px) {
  .price-service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .price-service-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-index-card-top {
  min-width: 0;
}

.service-index-card-top .eyebrow {
  min-width: 0;
  max-width: min(75%, 360px);
  overflow-wrap: anywhere;
  text-align: right;
}

@media (max-width: 699px) {
  .service-content small {
    -webkit-line-clamp: 2;
  }

  .service-index-card p {
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid .service-card {
    grid-column: auto;
    min-height: clamp(380px, 45vw, 440px);
    margin-top: 0;
  }
}

@media (min-width: 980px) and (max-width: 1099px) {
  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 136px;
  }

  .site-nav,
  .site-nav ul {
    gap: 11px;
  }

  .site-nav ul a {
    font-size: 0.68rem;
  }

  .language-links {
    gap: 3px;
  }

  .language-links a {
    min-width: 27px;
    min-height: 27px;
  }
}

@media (min-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid .service-card {
    min-height: clamp(370px, 30vw, 420px);
  }
}
