:root {
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --forest: #173f35;
  --leaf: #416b58;
  --rose: #b97976;
  --brass: #a67c42;
  --ink: #242826;
  --muted: #666b67;
  --line: #d8d3c8;
  --display: Georgia, "Times New Roman", serif;
  --body: "Trebuchet MS", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
}

.site-header {
  min-height: 5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.4rem);
}

.nav-links a,
.language-link {
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 4.2rem;
  height: auto;
}

.menu-toggle {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  min-height: min(78vh, 48rem);
  align-items: end;
  padding: clamp(3rem, 9vw, 8rem) clamp(1.25rem, 8vw, 8rem);
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(16, 44, 36, 0.96), rgba(23, 63, 53, 0.72) 55%, rgba(23, 63, 53, 0.42)),
    url("/assets/images/salon-hero.avif") center 38% / cover no-repeat;
}

.hero-content {
  max-width: 52rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e2c796;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
  font-size: 1.75rem;
}

.hero-lede {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  color: var(--paper);
  background: var(--rose);
  border: 1px solid transparent;
  text-decoration: none;
}

.button-small {
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.text-link {
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 8vw, 8rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  background: var(--paper);
}

.image-band picture,
.image-band img {
  display: block;
  width: 100%;
  height: 100%;
}

.image-band img {
  min-height: 34rem;
  object-fit: cover;
}

.image-band > div {
  max-width: 42rem;
  padding: clamp(3rem, 7vw, 7rem);
}

.language-chooser {
  display: grid;
  min-height: calc(100vh - 5rem);
  place-items: center;
  padding: 3rem 1.25rem;
  background:
    linear-gradient(rgba(245, 241, 232, 0.92), rgba(245, 241, 232, 0.96)),
    url("/assets/images/salon-detail.webp") center / cover;
}

.language-chooser > div {
  width: min(44rem, 100%);
  text-align: center;
}

.language-chooser img {
  width: min(16rem, 65vw);
  height: auto;
  margin-bottom: 1rem;
}

.language-chooser h1 {
  max-width: none;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.language-option {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem;
  background: var(--paper);
  text-decoration: none;
}

.language-option span {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.8rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.55rem;
  padding: 1.25rem clamp(1.25rem, 8vw, 8rem) 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  min-height: 36rem;
  align-items: stretch;
  padding: 2rem clamp(1.25rem, 8vw, 8rem) clamp(4rem, 7vw, 6rem);
}

.page-intro > div {
  align-self: end;
  padding: 2rem clamp(2rem, 5vw, 5rem) 1rem 0;
}

.page-intro h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-lede {
  max-width: 38rem;
  font-size: 1.18rem;
}

.review-date {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.page-intro picture,
.page-intro img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 29rem;
}

.page-intro img {
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 8vw, 8rem);
  background: var(--paper);
}

.article-index {
  position: sticky;
  top: 2rem;
  display: grid;
  align-self: start;
  gap: 0.65rem;
  padding-top: 0.5rem;
  font-size: 0.86rem;
}

.article-index a {
  color: var(--muted);
}

.article-content {
  max-width: 52rem;
}

.article-content section {
  padding: 0 0 4.5rem;
  scroll-margin-top: 2rem;
}

.article-content section + section {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.article-content h2,
.visit-grid h2,
.prose-section h2,
.cta-band h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.answer-first {
  margin: 0 0 3rem;
  padding-left: 1.5rem;
  color: var(--forest);
  border-left: 3px solid var(--rose);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.35;
}

.timeline {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.timeline > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline span,
.feature-grid span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
}

.note,
.disclaimer {
  padding: 1.25rem 1.5rem;
  background: var(--ivory);
  border-left: 3px solid var(--brass);
}

.note p {
  margin-bottom: 0;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--rose);
  content: "✓";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid > div {
  padding: 1.75rem;
  background: var(--ivory);
}

.feature-grid h3 {
  margin: 0.75rem 0;
  font-size: 1.5rem;
}

.comparison {
  margin-top: 2rem;
  border: 1px solid var(--line);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.75fr 1.3fr 1.2fr;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row > * {
  padding: 1rem;
}

.comparison-row > * + * {
  border-left: 1px solid var(--line);
}

.comparison-head {
  color: var(--paper);
  background: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.choice-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.choice-list a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.choice-list strong {
  color: var(--forest);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 8vw, 8rem);
  color: var(--paper);
  background: var(--forest);
}

.cta-band > div:first-child {
  max-width: 48rem;
}

.cta-band .eyebrow {
  color: #e2c796;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-grid > div {
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 8vw, 8rem);
  background: var(--paper);
}

.visit-grid address {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-size: 1.15rem;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-panel h2 {
  margin-bottom: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery picture,
.gallery img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prose-section {
  max-width: 64rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  align-items: center;
  padding: clamp(4rem, 10vw, 9rem) clamp(1.25rem, 8vw, 8rem);
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(16, 44, 36, 0.95), rgba(23, 63, 53, 0.6)),
    url("/assets/images/salon-hero.avif") center / cover;
}

.not-found > div {
  max-width: 48rem;
}

.not-found h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.not-found .eyebrow {
  color: #e2c796;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
}

.card-number {
  color: var(--rose);
  font-weight: 700;
}

.site-footer {
  align-items: flex-start;
  color: var(--paper);
  background: var(--forest);
}

.site-footer div {
  display: grid;
  gap: 0.35rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-size: 0.9rem;
}

@media (max-width: 48rem) {
  .site-header {
    align-items: flex-start;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
  }

  .menu-toggle span:first-child,
  .menu-toggle span:first-child::before,
  .menu-toggle span:first-child::after {
    width: 1.2rem;
    height: 2px;
    background: var(--forest);
  }

  .menu-toggle span:first-child {
    position: relative;
  }

  .menu-toggle span:first-child::before,
  .menu-toggle span:first-child::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle span:first-child::before {
    top: -0.38rem;
  }

  .menu-toggle span:first-child::after {
    top: 0.38rem;
  }

  .site-header nav {
    position: absolute;
    top: 5rem;
    right: 0;
    left: 0;
    z-index: 5;
    display: none;
    align-items: stretch;
    padding: 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-header nav.is-open,
  .nav-links,
  .nav-actions {
    display: grid;
  }

  .nav-links,
  .nav-actions {
    gap: 0;
  }

  .nav-links a,
  .language-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions .button {
    margin-top: 1rem;
  }

  .hero {
    min-height: 43rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    min-height: 24rem;
  }

  .language-options {
    grid-template-columns: 1fr;
  }

  .page-intro {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }

  .page-intro > div {
    padding-right: 0;
  }

  .page-intro picture,
  .page-intro img {
    min-height: 22rem;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-index {
    position: static;
    padding: 1rem;
    background: var(--ivory);
  }

  .timeline > div,
  .feature-grid,
  .cta-band,
  .visit-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .comparison-row > * {
    padding: 0.35rem 0;
  }

  .comparison-row > * + * {
    border-left: 0;
  }

  .comparison-head {
    display: none;
  }

  .choice-list a {
    display: grid;
    gap: 0.5rem;
  }

  .cta-band {
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}