:root {
  --black: #080704;
  --black-soft: #12100a;
  --panel: rgba(24, 20, 10, 0.74);
  --gold: #ffd700;
  --gold-deep: #d4af37;
  --gold-soft: #fff0a8;
  --text: #fff8dc;
  --muted: #c9b986;
  --line: rgba(255, 215, 0, 0.23);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 215, 0, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 22%, rgba(212, 175, 55, 0.13), transparent 22rem),
    linear-gradient(135deg, #060504 0%, #15100a 52%, #080704 100%);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

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

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

.stars-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(8, 7, 4, 0.94), rgba(8, 7, 4, 0.45));
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.58);
}

.brand-star {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff4aa, #d4af37 45%, #6d510b);
  color: #15100a;
  animation: badgeGlow 2.8s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

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

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-title {
  position: relative;
  width: fit-content;
  margin: 0;
  color: var(--gold);
  font-size: clamp(3.6rem, 11vw, 8.8rem);
  font-weight: 800;
  line-height: 0.86;
  text-shadow:
    0 0 14px rgba(255, 215, 0, 0.45),
    0 0 44px rgba(212, 175, 55, 0.32);
}

.logo-title::before {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  background: linear-gradient(100deg, transparent 0%, #fff7b8 42%, var(--gold) 50%, transparent 60%);
  background-size: 240% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3.2s ease-in-out infinite;
}

.logo-title span {
  display: block;
  margin-top: 0.85rem;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.15;
  text-shadow: 0 0 22px rgba(255, 215, 0, 0.38);
}

.hero-subtitle {
  max-width: 730px;
  margin: 1.45rem 0 0;
  color: #fff3b6;
  font-size: clamp(1.15rem, 2.6vw, 1.8rem);
  font-weight: 700;
}

.mens-salon-label {
  margin: 1rem 0 0.55rem;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.men-only-badge {
  display: inline-flex;
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.58);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.16);
}

.hero-line {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

.gold-button,
.book-now {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 184, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7b8 0%, var(--gold) 32%, var(--gold-deep) 72%, #7b5a0b 100%);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  color: #171006;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gold-button::after,
.book-now::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.75) 45%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 3s ease-in-out infinite;
}

.gold-button:hover,
.gold-button:focus-visible,
.book-now:hover,
.book-now:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(255, 215, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.whatsapp {
  background: linear-gradient(135deg, #fff5ad 0%, #ffd700 42%, #c6a12b 100%);
}

.button-icon {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.hero-panel {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 215, 0, 0.11), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow), inset 0 0 38px rgba(255, 215, 0, 0.06);
  animation: float 5.8s ease-in-out infinite;
}

.hero-panel.reveal {
  animation: fadeIn 780ms ease forwards, float 5.8s ease-in-out 900ms infinite;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.16), transparent 38%);
  transform: translateX(-130%);
  animation: shimmerPanel 5.6s ease-in-out infinite;
}

.crown-line {
  width: 5rem;
  height: 0.18rem;
  margin-bottom: 2.4rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.8);
}

.hero-panel p,
.hero-panel address {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.hero-panel h2 {
  position: relative;
  margin: 0.45rem 0 2rem;
  color: var(--gold-soft);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
}

.hero-stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-stat-grid div {
  padding: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.06);
}

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

.hero-stat-grid strong {
  color: var(--gold);
  font-size: 2rem;
}

.hero-stat-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.services,
.about,
.gallery,
.contact-band {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.about-copy h3,
.contact-copy h2 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1fr;
  gap: 1rem;
}

.service-card {
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 215, 0, 0.09), transparent 42%),
    rgba(18, 16, 10, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
}

.service-card:nth-child(2),
.service-card:nth-child(4) {
  transform: translateY(1.5rem);
}

.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
  border-color: rgba(255, 215, 0, 0.72);
  box-shadow: 0 0 32px rgba(255, 215, 0, 0.2), inset 0 0 22px rgba(255, 215, 0, 0.07);
  transform: translateY(-0.3rem);
}

.service-card:nth-child(2):hover,
.service-card:nth-child(2):focus-visible,
.service-card:nth-child(4):focus-visible,
.service-card:nth-child(4):hover {
  transform: translateY(1.1rem);
}

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

.service-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.service-card h3 {
  margin: 0 0 0.7rem;
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.service-card p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.stylist-card,
.about-copy,
.contact-band {
  border: 1px solid rgba(255, 215, 0, 0.26);
  border-radius: 8px;
  background: rgba(15, 13, 8, 0.78);
  box-shadow: var(--shadow);
}

.stylist-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.stylist-medal {
  display: grid;
  width: clamp(7rem, 18vw, 11rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 247, 184, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff7b8, transparent 25%),
    linear-gradient(145deg, var(--gold), var(--gold-deep) 52%, #604708);
  color: #15100a;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.35);
}

.stylist-card h2 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.role {
  margin: 0.75rem 0 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

blockquote {
  margin: 0;
  color: #fff1aa;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.about-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.about-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  min-height: 15rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.24);
  border-radius: 8px;
  background: var(--black-soft);
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  min-height: 23rem;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
  transform: scale(1.03);
  transition: transform 450ms ease, filter 450ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(8, 7, 4, 0.72));
  opacity: 0.95;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1) contrast(1.07) brightness(0.92);
  transform: scale(1.09);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.6rem);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(255, 215, 0, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, rgba(255, 247, 184, 0.88), var(--gold) 36%, var(--gold-deep));
  color: #161006;
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: float 4.8s ease-in-out infinite;
}

.social-links a:nth-child(2) {
  animation-delay: -1.4s;
}

.social-links a:nth-child(3) {
  animation-delay: -2.6s;
}

.social-links svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 42px rgba(255, 215, 0, 0.5);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 215, 0, 0.18);
  color: var(--muted);
  background: rgba(5, 4, 3, 0.86);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.site-footer address {
  font-style: normal;
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin: 0;
  font-weight: 700;
}

.site-footer a {
  color: var(--gold-soft);
}

.book-now {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  min-width: 8.5rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5, 4, 3, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-height: 78vh;
  border: 1px solid rgba(255, 215, 0, 0.46);
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.72);
}

.lightbox p {
  margin: 1rem 0 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 215, 0, 0.48);
  border-radius: 50%;
  background: rgba(18, 16, 10, 0.94);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 31;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 4, 3, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  backdrop-filter: blur(10px);
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid rgba(255, 215, 0, 0.46);
  border-radius: 8px;
  background: rgba(15, 13, 8, 0.98);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.72), 0 0 36px rgba(255, 215, 0, 0.14);
}

.service-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
}

.service-modal-gallery img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 6px;
  filter: saturate(0.86) contrast(1.08) brightness(0.78);
}

.service-modal-content {
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.service-modal-content h2 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.service-meta p {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.24);
  border-radius: 6px;
  background: rgba(255, 215, 0, 0.05);
}

.service-meta span,
.service-meta strong {
  display: block;
}

.service-meta span {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.service-meta strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 215, 0, 0.48);
  border-radius: 50%;
  background: rgba(18, 16, 10, 0.94);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.service-book-button {
  width: fit-content;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeIn 780ms ease forwards;
}

.reveal-delay {
  animation-delay: 180ms;
}

.service-card:nth-child(2),
.gallery-item:nth-child(2) {
  animation-delay: 120ms;
}

.service-card:nth-child(3),
.gallery-item:nth-child(3) {
  animation-delay: 220ms;
}

.service-card:nth-child(4),
.gallery-item:nth-child(4) {
  animation-delay: 320ms;
}

.service-card:nth-child(5),
.gallery-item:nth-child(5) {
  animation-delay: 420ms;
}

.gallery-item:nth-child(6) {
  animation-delay: 520ms;
}

@keyframes shimmer {
  0%, 18% {
    background-position: 180% 0;
    opacity: 0;
  }
  36%, 72% {
    opacity: 1;
  }
  100% {
    background-position: -80% 0;
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-120%);
  }
  48%, 100% {
    transform: translateX(120%);
  }
}

@keyframes shimmerPanel {
  0%, 28% {
    transform: translateX(-130%);
  }
  62%, 100% {
    transform: translateX(130%);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 22px rgba(255, 215, 0, 0.26), 0 0 0 0 rgba(255, 215, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 42px rgba(255, 215, 0, 0.48), 0 0 0 0.72rem rgba(255, 215, 0, 0);
  }
}

@keyframes float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.65rem;
  }
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.28);
    scale: 1;
  }
  50% {
    box-shadow: 0 0 26px rgba(255, 215, 0, 0.62);
    scale: 1.05;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

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

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

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

  .service-card:nth-child(2),
  .service-card:nth-child(4),
  .service-card:nth-child(2):hover,
  .service-card:nth-child(4):hover {
    transform: none;
  }

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

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 15rem;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 1rem, 1120px);
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .brand-mark {
    font-size: 0.9rem;
  }

  .hero-actions,
  .gold-button {
    width: 100%;
  }

  .service-grid,
  .gallery-grid,
  .hero-stat-grid,
  .stylist-card {
    grid-template-columns: 1fr;
  }

  .service-modal-gallery {
    grid-template-columns: 1fr;
  }

  .service-modal-gallery img {
    height: 12rem;
  }

  .service-meta {
    grid-template-columns: 1fr;
  }

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

  .stylist-medal {
    width: 7.5rem;
  }

  .social-links a {
    width: 3rem;
    height: 3rem;
  }

  .book-now {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 7.5rem;
    min-height: 3rem;
    padding-inline: 1rem;
  }
}
