:root {
  --bg: #f7f0ec;
  --bg-strong: #f2e6df;
  --surface: rgba(255, 250, 247, 0.78);
  --surface-solid: #fffaf7;
  --text: #24181b;
  --muted: #6f5c62;
  --line: rgba(70, 35, 45, 0.12);
  --accent: #8d304f;
  --accent-deep: #511b2c;
  --accent-soft: #d9b4bf;
  --shadow: 0 22px 60px rgba(73, 28, 43, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 180, 191, 0.55), transparent 24%),
    radial-gradient(circle at right 20%, rgba(141, 48, 79, 0.16), transparent 20%),
    linear-gradient(180deg, #fcf7f4 0%, #f7f0ec 45%, #f3e9e4 100%);
  color: var(--text);
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

a:not(.button):not(.brand):hover,
a:not(.button):not(.brand):focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

p,
a,
li,
span,
strong {
  overflow-wrap: break-word;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
}

.page-shell::before {
  width: 18rem;
  height: 18rem;
  top: 5rem;
  right: -4rem;
  background: rgba(217, 180, 191, 0.3);
}

.page-shell::after {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  bottom: 8rem;
  background: rgba(141, 48, 79, 0.08);
}

.site-header,
main > section {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 26px 0 18px;
  transition:
    padding 180ms ease,
    box-shadow 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  background: transparent;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--bg-strong);
}

.site-header.is-scrolled::before {
  background: linear-gradient(180deg, #f2e6df 0%, #f7f0ec 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(73, 28, 43, 0.08);
}

.brand img {
  width: min(190px, 36vw);
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: min(120px, 28vw);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(217, 180, 191, 0.24);
  color: var(--accent-deep);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(141, 48, 79, 0.14);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  pointer-events: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(141, 48, 79, 0.14);
  color: var(--accent);
  box-shadow: 0 8px 18px rgba(141, 48, 79, 0.12);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero,
.salon-story,
.services,
.signature,
.products,
.contact,
.appointment-cta,
.page-intro,
.legal {
  padding: 100px 0 300px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding-top: 18px;
}

body:has(.services-page) .page-intro,
body:has(.services-page) .services,
body:has(.services-page) .appointment-cta,
body:has(.contact-page) .page-intro,
body:has(.contact-page) .contact {
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3,
h4,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.95;
  margin: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  max-width: 12ch;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.hero-text,
.salon-story-copy p,
.salon-story-points p,
.signature-copy p,
.products-panel p,
.contact-panel p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-text {
  max-width: 34rem;
  margin-top: 1.4rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

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

.button-route {
  grid-column: 1 / -1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
}

.button-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 18px 30px rgba(81, 27, 44, 0.18);
}

.button-light {
  border-color: rgba(81, 27, 44, 0.15);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-facts li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(81, 27, 44, 0.08);
  color: var(--accent-deep);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 900px;
  top: 80px;
}

.feature-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.25rem 1.3rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 12, 17, 0.82) 100%);
}

.feature-card-body span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.feature-card-body strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.45;
}

.feature-card-large {
  inset: 0 4rem 6rem 0;
}

.feature-card-team {
  width: 39%;
  height: 48%;
  right: 0;
  top: 8%;
}

.feature-card-door {
  width: 34%;
  height: 38%;
  right: 8%;
  bottom: 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.anchor-offset {
  display: block;
  position: relative;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.anchor-offset-team {
  top: 90px;
  grid-column: 1 / -1;
  margin-bottom: -1px;
}

.page-intro {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding-top: 26px;
}

.page-intro h1 {
  max-width: 12ch;
}

body:has(.legal) .page-intro {
  gap: 0.35rem;
  padding-bottom: 48px;
}

body:has(.legal) .page-intro .hero-text {
  margin-top: 0;
}

body:has(.legal) .legal {
  padding-top: 0;
}

.salon-story-grid,
.signature,
.contact-panel,
.products {
  display: grid;
  gap: 1.6rem;
}

.salon-story-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.salon-story-copy,
.contact-panel,
.products-panel,
.signature-copy,
.pricing-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.salon-story-copy,
.signature-copy,
.products-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.salon-story-copy {
  display: grid;
  gap: 1.2rem;
}

.salon-story-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.salon-story-points article {
  padding: 0;
}

.salon-story-points h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.salon-story-points h3 .bi {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: var(--accent);
  color: #fff7f4;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(81, 27, 44, 0.18);
}

.salon-story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
  scroll-margin-top: 140px;
}

.salon-story-main-image {
  min-height: 100%;
  height: 100%;
}

.salon-story-main-image img {
  min-height: 100%;
}

.salon-story-subimage {
  min-height: 280px;
}

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

.pricing-card {
  padding: 1.5rem;
  border-radius: 28px;
}

.pricing-card-wide {
  grid-column: span 2;
}

.service-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.pricing-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.pricing-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(72px, 0.55fr));
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
}

.pricing-row:first-child {
  border-top: 0;
}

.pricing-row span:first-child {
  color: var(--text);
}

.pricing-row span:not(:first-child) {
  text-align: right;
  font-weight: 700;
  color: var(--accent-deep);
}

.pricing-row-head {
  background: rgba(141, 48, 79, 0.08);
}

.pricing-row-head span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-list {
  display: grid;
  gap: 0.2rem;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.price-list div:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.price-list span {
  line-height: 1.6;
  color: var(--text);
}

.price-list strong {
  color: var(--accent-deep);
  font-size: 1.05rem;
  white-space: nowrap;
}

.pricing-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.appointment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.appointment-panel h2 {
  max-width: 100%;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.appointment-panel p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.8;
}

.appointment-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  min-width: 190px;
}

.teaser-panel {
  max-width: 820px;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.teaser-panel p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.gallery-item {
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.signature {
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  margin-top: 3rem;
}

.signature-image {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-copy {
  display: grid;
  gap: 1.2rem;
}

.team-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.team-member {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.team-member h3 {
  margin-bottom: 0.45rem;
  font-size: 1.9rem;
}

.team-member p {
  margin: 0;
  color: var(--muted);
}

.team-member strong {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-member-featured {
  background: linear-gradient(135deg, rgba(141, 48, 79, 0.14), rgba(255, 255, 255, 0.54));
}

.products {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.products-brands {
  display: grid;
  gap: 1rem;
}

.products-brands span {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(242, 230, 223, 0.72));
  box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--accent-deep);
}

.contact-panel {
  grid-template-columns: 1.1fr 0.95fr auto;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.contact-details,
.hours-card,
.footer-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-details,
.hours-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-block strong,
.hours-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-block p,
.footer-meta p,
.footer-brand p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.contact-block a,
.footer-meta a {
  color: var(--accent-deep);
}

.contact-link {
  display: block;
  border-radius: 16px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: rgba(217, 180, 191, 0.18);
  color: var(--accent);
  text-decoration: none;
  transform: translateY(-1px);
}

.hours-list {
  display: grid;
  gap: 0.8rem;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.hours-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.hours-list span:last-child {
  text-align: right;
  color: var(--accent-deep);
  font-weight: 600;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 56px;
}

.footer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-xl);
}

.footer-brand h2 {
  max-width: 100%;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.footer-meta {
  display: grid;
  gap: 0.7rem;
  align-content: center;
}

.legal {
  width: var(--container);
  margin: 0 auto;
}

.legal-card {
  max-width: 760px;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.legal-section + .legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
}

.legal-card p {
  margin: 0 0 1rem;
  line-height: 1.8;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-card a {
  color: var(--accent-deep);
}

.policy-card {
  max-width: 920px;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.policy-section + .policy-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  max-width: 100%;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.policy-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
}

.policy-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.policy-card p,
.policy-card li {
  margin: 0 0 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.policy-card ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.policy-card a {
  color: var(--accent-deep);
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .hero,
  .salon-story-grid,
  .signature,
  .products,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .salon-story-points,
  .pricing-grid,
  .salon-story-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .salon-story-points {
    grid-template-columns: 1fr;
  }

  .pricing-card-wide {
    grid-column: auto;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-panel,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100%, calc(100vw - 28px));
  }

  .site-header,
  main > section,
  .site-footer {
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }

  body:has(.contact-page) .site-header {
    background: var(--bg-strong);
  }

  body:has(.contact-page) .site-header::before {
    background: linear-gradient(180deg, #f2e6df 0%, #f7f0ec 100%);
    box-shadow: 0 12px 28px rgba(73, 28, 43, 0.08);
  }

  .brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    width: min(120px, 34vw);
  }

  .site-header.is-scrolled .brand img {
    width: min(82px, 24vw);
  }

  .site-nav {
    justify-content: center;
    max-width: 100%;
    width: 100%;
    gap: 0.35rem 0.45rem;
    text-align: center;
  }

  .site-nav a {
    padding: 0.38rem 0.55rem;
  }

  .nav-concept {
    display: none;
  }

  .hero-copy,
  .hero-visual,
  .salon-story-copy,
  .signature-copy,
  .products-panel,
  .contact-panel,
  .contact-details,
  .hours-card,
  .footer-panel,
  .footer-brand,
  .footer-meta,
  .legal-card,
  .policy-card,
  .pricing-card {
    min-width: 0;
  }

  .site-nav a,
  .button,
  .contact-block,
  .hours-list,
  .price-list,
  .pricing-row,
  .pricing-row span,
  .team-member,
  .products-brands span {
    max-width: 100%;
    min-width: 0;
  }

  .hero,
  .services,
  .signature,
  .products,
  .contact,
  .appointment-cta,
  .page-intro,
  .legal {
    padding: 28px 0 72px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1;
    word-break: break-word;
    hyphens: auto;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    line-height: 1;
    word-break: break-word;
    hyphens: auto;
  }

  h3 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.05;
    word-break: break-word;
    hyphens: auto;
  }

  h4,
  .eyebrow {
    max-width: 100%;
    word-break: break-word;
    hyphens: auto;
  }

  .eyebrow {
    letter-spacing: 0.12em;
    line-height: 1.35;
  }

  p,
  a,
  li,
  span,
  strong {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 100%;
  }

  .appointment-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .appointment-panel h2 {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }

  .appointment-actions {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 0.75rem 0.7rem;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .contact-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.7rem;
    text-align: center;
  }

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

  .feature-card-large {
    inset: 0 0 4.5rem 0;
  }

  .feature-card-team {
    width: 42%;
    height: 42%;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .feature-card-door {
    display: none;
  }

  .salon-story-points,
  .pricing-grid,
  .salon-story-gallery,
  .products-brands {
    grid-template-columns: 1fr;
  }

  .salon-story-gallery {
    scroll-margin-top: 80px;
  }

  .salon-story-subimage {
    min-height: 220px;
  }

  .signature {
    margin-top: 1.75rem;
  }

  .anchor-offset-team {
    top: 130px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .pricing-row span:not(:first-child) {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: right;
  }

  .pricing-row span[data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted);
  }

  .pricing-row-head {
    display: none;
  }

  .price-list div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .price-list strong {
    align-self: start;
    text-align: right;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hours-list span:last-child {
    text-align: left;
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .salon-story-points h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .team-member h3,
  .legal-card h3,
  .policy-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .policy-card h2,
  .footer-brand h2 {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }

  .products-brands span {
    min-height: 82px;
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    overflow-wrap: anywhere;
    text-align: center;
  }

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

  .footer-panel {
    padding: 1.5rem;
  }

  .legal-card {
    padding: 1.5rem;
  }

  .teaser-panel {
    padding: 1.5rem;
  }

  .policy-card {
    padding: 1.5rem;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100%, calc(100vw - 24px));
  }

  h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.15rem);
  }

  h3 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
  }

  .salon-story-copy,
  .signature-copy,
  .products-panel,
  .contact-panel,
  .appointment-panel,
  .footer-panel,
  .legal-card,
  .policy-card,
  .pricing-card {
    padding: 1.15rem;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .salon-story-points h3,
  .team-member h3,
  .legal-card h3,
  .policy-card h3 {
    font-size: clamp(1.2rem, 5.8vw, 1.5rem);
  }

  .policy-card h2,
  .footer-brand h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .products-brands span {
    font-size: clamp(1.15rem, 5.5vw, 1.5rem);
  }
}
