:root {
  --black: #070707;
  --black-brown: #110b07;
  --anthracite: #151515;
  --royal-orange: #d97a08;
  --gold: #e8a331;
  --cream: #f4ebdd;
  --muted: #b8b1a8;
  --line: rgba(232, 163, 49, 0.2);
  --line-strong: rgba(232, 163, 49, 0.42);
  --soft-panel: rgba(21, 21, 21, 0.72);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
  --button-shadow: 0 18px 42px rgba(217, 122, 8, 0.28);
  --nav-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 28px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 14%, rgba(232, 163, 49, 0.09), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(217, 122, 8, 0.07), transparent 30%),
    repeating-radial-gradient(circle at 50% 50%, rgba(244, 235, 221, 0.03) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.82));
  opacity: 0.72;
}

body.nav-open {
  overflow: hidden;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  min-height: 100svh;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, 0.98) 36%, rgba(17, 11, 7, 0.96) 70%, rgba(28, 14, 4, 0.9) 100%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34) 58%, rgba(17, 11, 7, 0.16)),
    radial-gradient(ellipse at 86% 46%, rgba(232, 163, 49, 0.18), transparent 34%),
    radial-gradient(ellipse at 100% 50%, rgba(217, 122, 8, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.78));
}

.site-header::after {
  content: "";
  position: absolute;
  top: 18%;
  right: -6%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  background: url("assets/royal-cut-logo.png") center / contain no-repeat;
  filter: saturate(1.15) contrast(1.08) drop-shadow(0 32px 70px rgba(217, 122, 8, 0.16));
  opacity: 0.075;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.subpage-header {
  min-height: auto;
  padding-top: var(--nav-height);
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 163, 49, 0.1), transparent 25%),
    linear-gradient(110deg, #070707 0%, #0a0807 54%, #110b07 100%);
  border-bottom: 1px solid var(--line);
}

.subpage-header.compact {
  background: #070707;
}

.subpage-header::after {
  opacity: 0.04;
}

.navbar {
  width: min(1360px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 76px);
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 50;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

body.is-scrolled .navbar,
.subpage-header .navbar,
body.nav-open .navbar {
  border-color: transparent;
  background: rgba(7, 7, 7, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 226px;
  min-width: 226px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  border-radius: 0;
  background: transparent;
  filter: saturate(1.18) contrast(1.16) drop-shadow(0 12px 30px rgba(217, 122, 8, 0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  margin-left: auto;
  font-size: 1rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(244, 235, 221, 0.88);
  text-decoration: none;
  transition: color 170ms ease;
}

.nav-links a:not(.nav-call)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--royal-orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-call,
.button {
  border-radius: 7px;
  background: linear-gradient(135deg, var(--royal-orange), #ef9a20);
  color: #160a02 !important;
  box-shadow: var(--button-shadow);
}

.nav-call {
  min-height: 52px;
  padding: 0 22px;
  color: #160a02 !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(7, 7, 7, 0.8);
  color: var(--cream);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - var(--nav-height) - 58px);
  margin: 0 auto;
  padding: clamp(74px, 12vh, 142px) 0 54px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 860px;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -52px -72px -46px -64px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 36%, rgba(7, 7, 7, 0.9), transparent 70%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.46), transparent);
  filter: blur(2px);
}

.hero-location {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 4.45vw, 4rem);
  line-height: 1;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  white-space: nowrap;
}

.accent-line {
  color: var(--gold);
}

.hero h1 .accent-line {
  margin-top: 10px;
  font-size: clamp(1.44rem, 2.85vw, 2.48rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.24rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(244, 235, 221, 0.84);
  font-size: 1.14rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(232, 163, 49, 0.12);
  color: #160a02;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.button.ghost {
  border-color: rgba(232, 163, 49, 0.62);
  background: rgba(7, 7, 7, 0.72);
  color: var(--cream) !important;
  box-shadow: inset 0 0 0 1px rgba(244, 235, 221, 0.02);
}

.button:hover,
.button:focus-visible,
.nav-call:hover,
.nav-call:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ed9418, var(--gold));
  box-shadow: 0 22px 48px rgba(217, 122, 8, 0.34), 0 0 30px rgba(232, 163, 49, 0.16);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--gold);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 163, 49, 0.14), transparent 58%),
    rgba(13, 10, 8, 0.92);
  color: var(--gold) !important;
}

.button:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible,
.map-link:focus-visible,
.detail-phone:focus-visible,
.footer-inner a:focus-visible {
  outline: 3px solid rgba(244, 235, 221, 0.88);
  outline-offset: 4px;
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(244, 235, 221, 0.62);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 118px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  background:
    radial-gradient(circle at 10% 6%, rgba(232, 163, 49, 0.08), transparent 25%),
    linear-gradient(180deg, #110b07 0%, #070707 100%);
}

.reviews-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 122, 8, 0.08), transparent 27%),
    linear-gradient(180deg, #070707 0%, #111 100%);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.reviews-heading > * {
  min-width: 0;
}

.reviews-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.rating-line,
.stars {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.rating-line {
  margin-bottom: 8px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.78);
  color: rgba(244, 235, 221, 0.9);
  white-space: nowrap;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(232, 163, 49, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.94), rgba(10, 9, 8, 0.96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.review-card:first-child {
  grid-column: span 2;
  min-height: 285px;
  padding: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(circle at 96% 0%, rgba(232, 163, 49, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(9, 8, 7, 0.98));
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 163, 49, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.review-card p:not(.stars) {
  color: rgba(244, 235, 221, 0.9);
  font-size: 1.02rem;
}

.review-card:first-child p:not(.stars) {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.review-card strong {
  display: block;
  margin-top: 24px;
  color: rgba(244, 235, 221, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.split-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.salon-info-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.salon-copy {
  max-width: 540px;
  padding-top: 12px;
}

.salon-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.salon-details {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(260px, 0.78fr);
  gap: clamp(22px, 3vw, 32px);
  align-items: stretch;
}

.hours-panel,
.location-panel,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.9), rgba(10, 8, 7, 0.94));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.hours-panel,
.location-panel {
  padding: clamp(22px, 3vw, 30px);
}

.detail-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.opening-hours {
  margin: 0;
}

.opening-hours div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(244, 235, 221, 0.1);
}

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

.opening-hours div:last-child {
  border-bottom: 0;
}

.opening-hours dt {
  color: var(--cream);
  font-weight: 800;
}

.opening-hours dd {
  margin: 0;
  color: #fff;
  font-family: "Courier New", Consolas, monospace;
  font-weight: 800;
  white-space: nowrap;
}

.opening-hours .is-closed dt,
.opening-hours .is-closed dd {
  color: rgba(244, 235, 221, 0.48);
}

.opening-hours .is-today {
  margin-inline: -10px;
  padding-inline: 10px;
  border-radius: 6px;
  background: rgba(232, 163, 49, 0.08);
}

.location-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.detail-block {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(244, 235, 221, 0.1);
}

.detail-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

address {
  margin-bottom: 18px;
  color: var(--cream);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--cream);
}

.detail-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(232, 163, 49, 0.34);
  border-radius: 7px;
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 163, 49, 0.13), transparent 58%),
    rgba(7, 7, 7, 0.56);
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.detail-phone:hover,
.detail-phone:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.contact-section {
  background: #110b07;
}

.final-cta-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 163, 49, 0.16), transparent 30%),
    linear-gradient(180deg, #070707 0%, #110b07 48%, #070707 100%);
  text-align: center;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: min(700px, 82vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 49, 0.12), transparent 64%);
  pointer-events: none;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  margin-bottom: 22px;
  color: rgba(232, 163, 49, 0.72);
  font-size: 2rem;
  line-height: 1;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #f7f3ed;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(244, 235, 221, 0.7);
  font-size: 1.06rem;
}

.cta-actions {
  justify-content: center;
}

.cta-actions .button {
  min-width: 168px;
}

.contact-box {
  padding: 28px;
}

.contact-box span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-box a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cream);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 900;
  text-decoration: none;
}

.subpage-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 110px) 0 94px;
}

.subpage-main,
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 88px) 0;
}

.detail-card,
.legal-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 163, 49, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(21, 21, 21, 0.98), rgba(9, 8, 7, 0.98));
  box-shadow: var(--shadow);
}

.detail-card .button {
  margin-top: 28px;
}

.legal-card p {
  color: var(--muted);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--cream);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.25;
}

.legal-card ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
}

.legal-card li {
  margin-bottom: 8px;
}

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

.gallery-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 163, 49, 0.08), transparent 24%),
    #070707;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.88fr 0.88fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 20px;
}

.gallery-tile {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(232, 163, 49, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 122, 8, 0.14), rgba(7, 7, 7, 0.92)),
    linear-gradient(180deg, #151515, #070707);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  transition: transform 190ms ease, border-color 190ms ease;
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(232, 163, 49, 0.14), transparent 36%),
    linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.46));
  transform: scale(1);
  transition: transform 260ms ease;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 163, 49, 0.34);
}

.gallery-tile:hover::before {
  transform: scale(1.04);
}

.gallery-tile.logo-tile {
  min-height: 500px;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 163, 49, 0.12), transparent 48%),
    #070707;
}

.gallery-tile.logo-tile img {
  width: min(100%, 560px);
  position: relative;
  z-index: 1;
  filter: saturate(1.16) contrast(1.12) drop-shadow(0 22px 48px rgba(217, 122, 8, 0.22));
}

.gallery-tile span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #090909, #070707);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 118px;
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto auto auto;
  gap: 26px;
  align-items: center;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: var(--cream);
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-brand span,
.footer-contact a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(232, 163, 49, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 163, 49, 0.16), transparent 58%),
    rgba(232, 163, 49, 0.07);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, color 170ms ease;
}

.footer-contact a,
.footer-links a {
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-credit a:hover {
  color: var(--gold);
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 163, 49, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 163, 49, 0.2), transparent 58%),
    rgba(232, 163, 49, 0.12);
  color: var(--cream);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.js-enabled .reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.js-enabled .review-card.reveal-target,
.js-enabled .gallery-tile.reveal-target {
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tile.logo-tile {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 84px;
  }

  .navbar {
    top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: -10px -20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-left: 0;
    background:
      radial-gradient(circle at 50% 20%, rgba(232, 163, 49, 0.12), transparent 34%),
      rgba(7, 7, 7, 0.97);
    font-size: 1.2rem;
  }

  body.nav-open .nav-links,
  .app-shell.nav-open .nav-links {
    display: flex;
  }

  .brand {
    width: 188px;
    min-width: 188px;
  }

  .hero {
    min-height: calc(100svh - var(--nav-height) - 46px);
    padding: 46px 0 42px;
  }

  .site-header::after {
    width: 74vw;
    top: 18%;
    right: -28%;
    opacity: 0.055;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 7.7vw, 3.35rem);
  }

  .split-grid,
  .contact-grid,
  .salon-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .reviews-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .review-card:first-child {
    grid-column: span 2;
  }

}

@media (max-width: 620px) {
  :root {
    --nav-height: 78px;
  }

  .navbar,
  .hero,
  .section-inner,
  .subpage-hero,
  .subpage-main,
  .legal-page,
  .footer-inner {
    width: min(calc(100% - 32px), 520px);
  }

  .navbar {
    min-height: 66px;
    padding: 8px 12px;
  }

  .brand {
    width: 150px;
    min-width: 150px;
  }

  .hero-location {
    margin-bottom: 14px;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(1.72rem, 8.1vw, 2.38rem);
    line-height: 1.02;
  }

  .hero h1 span:first-child {
    white-space: normal;
  }

  .hero h1 .accent-line {
    font-size: clamp(1.18rem, 5.9vw, 1.68rem);
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    font-size: 0.86rem;
  }

  .section {
    padding: 62px 0;
  }

  .final-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .review-card,
  .review-card:first-child {
    grid-column: auto;
    min-height: 0;
  }

  .gallery-tile,
  .gallery-tile.logo-tile {
    grid-column: auto;
    min-height: 245px;
  }

  .salon-details {
    gap: 22px;
  }

  .opening-hours div {
    gap: 14px;
  }

  .footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 24px 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .rating-line {
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(1.58rem, 8.7vw, 1.95rem);
  }

  .hero h1 .accent-line {
    font-size: clamp(1.06rem, 6.2vw, 1.36rem);
  }

  .opening-hours dd {
    font-size: 0.92rem;
  }
}

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

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

  .js-enabled .reveal-target {
    opacity: 1;
    transform: none;
  }
}
