:root {
  color-scheme: light;
  --ink: #17130f;
  --ink-soft: #2c241d;
  --ivory: #f7f1e8;
  --porcelain: #fbf8f2;
  --sand: #d7c4aa;
  --taupe: #9c8771;
  --bronze: #a67742;
  --bronze-dark: #6f4b27;
  --olive: #58644f;
  --rosewood: #68423d;
  --line: rgba(45, 36, 28, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 80px rgba(22, 16, 10, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family:
    Avenir Next,
    Inter,
    Segoe UI,
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(24, 19, 15, 0.66);
  color: #fff8ee;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(24, 19, 15, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-link__mark {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  object-fit: cover;
}

.brand-link__text {
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 8px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff8ee;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #17130f;
  color: #fff8ee;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(20, 15, 10, 0.78) 0%, rgba(20, 15, 10, 0.34) 48%, rgba(20, 15, 10, 0.08) 100%),
    url("./assets/salon-ambiance-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 42%, rgba(166, 119, 66, 0.36), transparent 30%),
    linear-gradient(180deg, rgba(23, 19, 15, 0.25), rgba(23, 19, 15, 0.72));
}

.hero__inner {
  display: grid;
  align-content: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88svh;
  margin: 0 auto;
  padding: 128px 0 98px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.hero .eyebrow {
  color: #d6b17b;
}

.hero__logo {
  width: min(520px, 92%);
  margin: 0 0 22px -18px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.28));
}

.hero h1,
.section h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 4.7rem;
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 248, 238, 0.82);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  border: 1px solid #c99a5e;
  background: linear-gradient(135deg, #d0a064, #8b5a2f);
  color: #fff8ee;
  box-shadow: 0 18px 36px rgba(101, 61, 29, 0.28);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  backdrop-filter: blur(14px);
}

.hero__status {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  display: flex;
  gap: 8px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__status span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(23, 19, 15, 0.38);
  backdrop-filter: blur(12px);
}

.section {
  padding: 104px 20px;
}

.page-main {
  min-height: 100svh;
  background: var(--porcelain);
}

.page-hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 84px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 4.7rem;
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(23, 19, 15, 0.66);
}

.page-hero--ink {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 8% 0%, rgba(166, 119, 66, 0.28), transparent 34%),
    linear-gradient(135deg, #1b1611, #2b2119 58%, #15110e);
  color: #fff8ee;
}

.page-hero--ink p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.68);
}

.page-hero.booking,
.page-hero.reviews,
.page-hero.contact {
  display: grid;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent),
    var(--ivory);
}

.section--ink {
  background:
    radial-gradient(circle at 8% 0%, rgba(166, 119, 66, 0.28), transparent 34%),
    linear-gradient(135deg, #1b1611, #2b2119 58%, #15110e);
  color: #fff8ee;
}

.section__intro {
  width: min(100%, var(--max));
  margin: 0 auto 44px;
}

.section__intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(23, 19, 15, 0.68);
  font-size: 1rem;
}

.section--ink .section__intro p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.68);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.story-panel {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
    #f1e4d3;
  box-shadow: var(--shadow);
}

.story-panel--image {
  background:
    linear-gradient(180deg, rgba(24, 19, 15, 0.02), rgba(24, 19, 15, 0.24)),
    url("./assets/salon-ambiance-hero.png") center / cover no-repeat;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 48px;
  border-radius: 999px;
  background: rgba(166, 119, 66, 0.13);
  color: var(--bronze-dark);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-panel h3,
.tone-card h3,
.step h3,
.faq-item summary {
  margin: 0 0 14px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.58rem;
  line-height: 1.05;
  font-weight: 500;
}

.story-panel p,
.tone-card p,
.step p,
.faq-item p {
  margin: 0;
  color: rgba(23, 19, 15, 0.66);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.signature-card {
  min-height: 276px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16)),
    #f4eadb;
  box-shadow: var(--shadow);
}

.signature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ee;
  font-size: 0.76rem;
  font-weight: 900;
}

.signature-card h3,
.service-item span,
.contact-line strong {
  margin: 28px 0 12px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 500;
}

.signature-card p,
.service-item p,
.booking-panel p,
.contact__main p,
.reviews__body p,
.manifesto__content p {
  margin: 0;
  color: rgba(23, 19, 15, 0.66);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(220px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.manifesto__visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(145deg, #e5d2b6, #c5a985 66%, #88613a);
  box-shadow: var(--shadow);
}

.manifesto__visual::after {
  content: "";
  display: block;
  aspect-ratio: 4 / 5;
}

.manifesto__visual img {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.manifesto__content {
  max-width: 670px;
}

.manifesto__content h2 {
  margin-bottom: 22px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
}

.service-item {
  min-height: 202px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.service-item span {
  display: block;
  margin: 0 0 18px;
  color: #fff8ee;
}

.service-item p {
  color: rgba(255, 248, 238, 0.64);
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.tone-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18)),
    #f4eadc;
  box-shadow: 0 14px 46px rgba(22, 16, 10, 0.08);
}

.tone-swatch {
  display: block;
  width: 100%;
  height: 86px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid rgba(45, 36, 28, 0.12);
}

.tone-swatch--one {
  background: linear-gradient(135deg, #2c1a12, #8a5a39 54%, #c89964);
}

.tone-swatch--two {
  background: linear-gradient(135deg, #7b6048, #d4b177 54%, #f3dfb8);
}

.tone-swatch--three {
  background: linear-gradient(135deg, #6b2e1d, #ba6b36 58%, #dfad6b);
}

.tone-swatch--four {
  background: linear-gradient(135deg, #3d352e, #9c8771 52%, #eadcc9);
}

.advice {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
}

.advice__intro,
.steps {
  width: min(100%, 560px);
}

.advice__intro {
  justify-self: end;
}

.advice__intro p {
  color: rgba(23, 19, 15, 0.66);
}

.steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 20px;
  padding: 24px;
  background: #f4eadc;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ee;
  font-size: 0.76rem;
  font-weight: 900;
}

.step h3,
.step p {
  grid-column: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.gallery-card {
  display: grid;
  align-content: end;
  min-height: 250px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 18% 16%, rgba(214, 177, 123, 0.28), transparent 34%),
    #2a211a;
}

.gallery-card--large {
  grid-row: span 2;
  min-height: 514px;
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.08), rgba(23, 19, 15, 0.58)),
    url("./assets/salon-ambiance-hero.png") center / cover no-repeat;
}

.gallery-card span {
  color: #d6b17b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card strong {
  margin-top: 8px;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 500;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 60px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.booking__content p {
  max-width: 640px;
  margin: 22px 0 30px;
  color: rgba(23, 19, 15, 0.66);
}

.booking-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.18)),
    #efe0cb;
  box-shadow: var(--shadow);
}

.booking-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.booking-panel__top span {
  border-radius: 999px;
  background: rgba(88, 100, 79, 0.13);
  color: var(--olive);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-panel__top strong {
  max-width: 180px;
  text-align: right;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 500;
}

.booking-panel__slots {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.booking-panel__slots span {
  display: block;
  height: 48px;
  border: 1px solid rgba(45, 36, 28, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(166, 119, 66, 0.08) 24px 25px);
}

.social {
  background:
    linear-gradient(180deg, #f8f2ea, #eee1d0);
}

.social-strip {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.social-tile {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.social-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 500ms ease;
}

.social-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 14, 10, 0.76));
}

.social-tile:hover::before,
.social-tile:focus-visible::before {
  transform: scale(1.04);
}

.social-tile span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.5rem;
}

.social-tile--logo::before {
  background:
    radial-gradient(circle at 22% 24%, rgba(214, 177, 123, 0.28), transparent 34%),
    linear-gradient(135deg, #efe0cb, #a8865d 58%, #2a211a);
}

.social-tile--salon::before {
  background-image: url("./assets/salon-ambiance-hero.png");
}

.social-tile--monogram::before {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(145deg, #2a211a, #8c6742 55%, #e7d0ad);
}

.social-tile--editorial::before {
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.05), rgba(23, 19, 15, 0.62)),
    radial-gradient(circle at 16% 22%, rgba(214, 177, 123, 0.42), transparent 32%),
    linear-gradient(135deg, #f0dfc8, #9a7450 58%, #2d241c);
}

.social-tile--tips::before {
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.04), rgba(23, 19, 15, 0.66)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #3a2d23, #8d6b4a 52%, #ddc29c);
}

.reviews {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
}

.reviews__headline,
.reviews__body {
  width: min(100%, 560px);
}

.reviews__headline {
  justify-self: end;
}

.review-source {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.review-source span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  background: #f3e8d9;
  box-shadow: 0 14px 46px rgba(22, 16, 10, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--bronze-dark);
  font-family: Avenir Next, Inter, Segoe UI, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin-top: 10px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 60px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.contact__main p {
  max-width: 620px;
  margin-top: 22px;
}

.contact-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.contact-line {
  padding: 22px;
  background: #f3e8d9;
}

.contact-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin: 0;
  font-size: 1.28rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 128px;
  padding: 24px 20px;
  background: var(--ink);
  color: rgba(255, 248, 238, 0.72);
  text-align: center;
}

.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer p,
.site-footer span {
  margin: 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 10px;
    background: rgba(24, 19, 15, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero h1,
  .section h2,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  .signature-grid,
  .service-list,
  .story-layout,
  .advice,
  .booking,
  .reviews,
  .contact,
  .manifesto,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .manifesto,
  .advice,
  .booking,
  .contact {
    gap: 34px;
  }

  .reviews__headline,
  .advice__intro {
    justify-self: start;
  }

  .advice__intro,
  .steps {
    width: min(100%, var(--max));
  }

  .gallery-card--large {
    grid-row: auto;
    min-height: 340px;
  }

  .social-strip {
    grid-template-columns: 1fr;
  }

  .social-tile {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .brand-link__text {
    font-size: 0.92rem;
  }

  .hero,
  .hero__inner {
    min-height: 86svh;
  }

  .hero__inner {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .hero__logo {
    width: min(310px, 92%);
    margin-left: -10px;
  }

  .hero h1,
  .section h2,
  .page-hero h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero__status {
    display: none;
  }

  .section {
    padding: 72px 14px;
  }

  .page-hero {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 124px;
    padding-bottom: 58px;
  }

  .page-hero--ink {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .manifesto,
  .booking,
  .contact {
    width: min(calc(100% - 28px), var(--max));
  }

  .signature-card,
  .story-panel,
  .tone-card,
  .step,
  .faq-item,
  .gallery-card,
  .service-item,
  .booking-panel,
  .contact-line {
    padding: 22px;
  }

  .story-layout,
  .tone-grid,
  .gallery-grid {
    gap: 10px;
  }

  .story-panel {
    min-height: 240px;
  }

  .tone-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step h3,
  .step p {
    grid-column: 1;
  }

  .gallery-card,
  .gallery-card--large {
    min-height: 230px;
  }

  .service-item {
    min-height: 178px;
  }

  .booking-panel__top {
    display: grid;
  }

  .booking-panel__top strong {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    display: grid;
  }

  .site-footer img {
    margin: 0 auto;
  }
}
