:root {
  --navy: #0f1b2d;
  --gold: #d8b46a;
  --bluegrey: #7695b6;
  --offwhite: #f7f7f5;
  --text: #222222;
  --muted: #6d7178;
  --border: #e7e7e2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 27, 45, 0.08);
  --heading: "Outfit", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/DMSerifDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 5.5rem;
}

body.menu-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(216, 180, 106, 0.75);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--bluegrey);
  border-radius: 999px;
}

.container {
  width: min(100% - 3rem, 1280px);
  margin-inline: auto;
}

.icon-sprite {
  display: none;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: var(--gold);
}

.stars .icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  stroke: currentColor;
}

.small-stars .icon {
  width: 1rem;
  height: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-large {
  min-height: 3.55rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  box-shadow: 0 16px 35px rgba(216, 180, 106, 0.25);
}

.btn-blue {
  background: var(--bluegrey);
  color: var(--white);
}

.btn-blue:hover {
  box-shadow: 0 16px 35px rgba(118, 149, 182, 0.3);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: #17253b;
}

.btn-outline-dark {
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-dark:hover {
  background: #f3f5f7;
}

.btn-glass {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--navy);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.92);
}

.center {
  text-align: center;
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-header {
  max-width: 42rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header h2 {
  margin: 0.7rem 0 0;
  color: var(--navy);
  font-family: "DM Serif Display", var(--heading);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.section-header p {
  max-width: 33rem;
  margin: 1rem auto 0;
  color: var(--muted);
}

.section-header-light h2 {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--bluegrey);
}

.eyebrow-gold {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0s);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1.25rem 0;
  color: var(--white);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 14px 32px rgba(216, 180, 106, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.nav-cta:hover {
  background: #e4c47c;
  box-shadow: 0 18px 38px rgba(216, 180, 106, 0.42);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.menu-toggle .icon {
  width: 2rem;
  height: 2rem;
}

.menu-toggle .icon-close {
  display: none;
}

.site-header.is-open {
  color: var(--navy);
}

.site-header.is-open .icon-menu {
  display: none;
}

.site-header.is-open .icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 8rem;
  background: var(--white);
  color: var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.mobile-menu a:not(.btn) {
  color: var(--navy);
  font-family: "DM Serif Display", var(--heading);
  font-size: 1.7rem;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 27, 45, 0.84), rgba(15, 27, 45, 0.62), rgba(15, 27, 45, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 7rem;
}

.hero-title {
  max-width: 46rem;
  margin: 0 0 1.5rem;
  font-family: "DM Serif Display", var(--heading);
  font-size: clamp(3.15rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  animation: fade-up 700ms ease 260ms both;
}

.hero-title span {
  color: var(--gold);
}

.hero-copy {
  max-width: 34rem;
  margin: 0 0 2.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  animation: fade-up 650ms ease 440ms both;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fade-up 650ms ease 620ms both;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(118, 149, 182, 0.35);
  border-radius: 999px;
  background: rgba(118, 149, 182, 0.2);
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: none;
  animation: fade-up 650ms ease 180ms both;
}

.rating-badge strong {
  font-size: 1.1rem;
}

.rating-badge span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 0.38rem;
  height: 0.38rem;
  margin: 0.45rem auto 0;
  border-radius: 50%;
  background: var(--white);
  animation: scroll-dot 1.5s ease-in-out infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  padding: clamp(1.6rem, 3vw, 2rem);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 27, 45, 0.12);
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.stat-card:hover {
  box-shadow: 0 24px 60px rgba(15, 27, 45, 0.18);
  transform: translateY(-2px);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(118, 149, 182, 0.12);
  color: var(--bluegrey);
}

.stat-icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.stat-card:nth-child(2) .stat-icon .icon {
  fill: currentColor;
  stroke: currentColor;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: 1;
}

.stat-card span {
  color: rgba(34, 34, 34, 0.62);
  font-size: 0.9rem;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  background: var(--white);
  color: rgba(15, 27, 45, 0.65);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 27, 45, 0.08);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(15, 27, 45, 0.22);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #d9d9d9;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.gallery-feature {
  grid-row: span 2;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0);
  transition: background 450ms ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(15, 27, 45, 0.42);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-grid[data-active-filter="femme"],
.gallery-grid[data-active-filter="homme"],
.gallery-grid[data-active-filter="barber"] {
  grid-auto-rows: minmax(520px, 64vh);
}

.gallery-grid[data-active-filter="femme"] .gallery-item,
.gallery-grid[data-active-filter="homme"] .gallery-item,
.gallery-grid[data-active-filter="barber"] .gallery-item {
  grid-row: auto;
}

.gallery-grid[data-active-filter="femme"] .gallery-item img,
.gallery-grid[data-active-filter="homme"] .gallery-item img,
.gallery-grid[data-active-filter="barber"] .gallery-item img {
  object-position: center top;
}

.reviews-section,
.site-footer {
  background: var(--navy);
  color: var(--white);
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.review-score strong {
  font-family: var(--heading);
  font-size: 1.65rem;
}

.review-score span:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.review-card p {
  margin: 1rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-card footer strong {
  font-size: 0.95rem;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 700;
  transition: color 180ms ease;
}

.text-link:hover {
  color: #e4c988;
}

.services-section {
  background: var(--navy);
  color: var(--white);
}

.services-section .section-header h2 {
  color: var(--white);
}

.services-section .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-seo {
  max-width: 980px;
  margin: -1rem auto 3rem;
  text-align: center;
}

.services-seo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.75;
}

.services-seo p + p {
  margin-top: 0.75rem;
}

.services-seo strong {
  color: var(--gold);
  font-weight: 700;
}

.services-cta {
  margin-top: 2.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #0000002e;
  box-shadow: 0 2px 10px rgb(0 0 0 / 50%);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  box-shadow: 0 8px 22px rgb(0 0 0 / 55%);
  transform: translateY(-2px);
}

.service-card h3 {
  background: linear-gradient(135deg, #fff2b8 0%, #e6c46f 38%, #b8842d 68%, #ffe49a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  margin: 0;
  padding: 1.8rem 2rem 1.4rem;
  border-bottom: 1px solid rgba(216, 180, 106, 0.28);
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.service-card ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.6rem 2rem 1.8rem;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.service-card li span {
  min-width: 0;
  color: var(--white);
  font-size: 0.92rem;
}

.service-card li strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.service-card .btn {
  margin: auto 2rem 2rem;
}

.contact-section {
  background: var(--white);
}

.booking-section {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 55px rgba(15, 27, 45, 0.16);
}

.booking-banner h2 {
  margin: 0.55rem 0 0;
  font-family: "DM Serif Display", var(--heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.booking-banner p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.instagram-section {
  padding: 4rem 0;
  background: var(--offwhite);
}

.faq-section {
  background: var(--offwhite);
}

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

.faq-item {
  padding: clamp(1.4rem, 3vw, 1.8rem);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(15, 27, 45, 0.08);
}

.faq-item h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 149, 182, 0.12);
  color: var(--bluegrey);
}

.salon-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 394px) minmax(320px, 569px);
  gap: 1.5rem;
  align-items: start;
  justify-content: center;
}

.salon-video,
.salon-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e8e4;
  box-shadow: 0 8px 28px rgba(15, 27, 45, 0.05);
}

.salon-video {
  width: 100%;
  max-width: 394px;
  max-height: 700px;
  aspect-ratio: 9 / 16;
}

.salon-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.salon-carousel {
  width: 100%;
  max-width: 569px;
  max-height: 700px;
  aspect-ratio: 13 / 16;
}

.salon-carousel-track,
.salon-slide,
.salon-slide img {
  width: 100%;
  height: 100%;
}

.salon-carousel-track {
  position: relative;
}

.salon-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

.salon-slide.is-active {
  opacity: 1;
}

.salon-slide img {
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.salon-carousel:hover .salon-slide.is-active img {
  transform: scale(1.05);
}

.salon-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 27, 45, 0.62);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.salon-carousel-control:hover {
  background: rgba(15, 27, 45, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.salon-carousel-prev {
  left: 1rem;
}

.salon-carousel-next {
  right: 1rem;
}

.salon-carousel-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.salon-carousel-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.salon-carousel-dots button.is-active {
  background: var(--white);
  transform: scale(1.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 1.8rem;
  align-content: start;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin: 0;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
}

.contact-item h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-item a:hover {
  color: var(--gold);
}

.hours-block {
  width: min(100%, 24rem);
}

.hours-block ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hours-block li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.hours-block strong {
  color: var(--navy);
  font-weight: 700;
}

.hours-block li:first-child strong,
.hours-block li:last-child strong {
  color: var(--muted);
}

.map-frame {
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(15, 27, 45, 0.06);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.site-footer {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

.footer-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-grid p {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-grid nav a,
.footer-contact,
.footer-contact a {
  color: var(--white);
  font-size: 0.9rem;
}

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

.footer-contact {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-contact .icon {
  color: var(--bluegrey);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--white);
  font-size: 0.78rem;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.legal-page {
  background: var(--offwhite);
}

.legal-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 0;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-header img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.legal-main {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.legal-content {
  max-width: 900px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 27, 45, 0.1);
}

.legal-content h1,
.legal-content h2 {
  font-family: "DM Serif Display", var(--heading);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
}

.legal-content h1 {
  margin: 0 0 2rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.legal-content h2 {
  margin: 2rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-content h3 {
  margin: 1.7rem 0 0.8rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text);
}

.legal-content a {
  color: var(--bluegrey);
  font-weight: 700;
}

.legal-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.legal-update {
  margin-top: 2rem;
}

.not-found-page {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
}

.not-found-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 0;
}

.not-found-content {
  max-width: 680px;
  text-align: center;
}

.not-found-content img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.not-found-content h1 {
  margin: 0.5rem 0 1rem;
  font-family: "DM Serif Display", var(--heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.not-found-content p:not(.eyebrow) {
  max-width: 30rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.76);
}

.mobile-booking {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -10px 35px rgba(15, 27, 45, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.mobile-booking.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-booking .container {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.mobile-booking .btn {
  flex: 0 1 260px;
  min-width: 0;
  min-height: 3.1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.mobile-booking .btn-outline-dark {
  background: transparent;
}

.mobile-booking .btn-outline-dark:hover {
  background: rgba(15, 27, 45, 0.06);
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  animation: lightbox-in 220ms ease both;
}

.lightbox-close {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1023px) {
  .site-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
  }

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

  .booking-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .salon-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .salon-video,
  .salon-carousel {
    width: min(100%, 520px);
  }

  .salon-video {
    width: min(100%, 394px);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 2rem, 1280px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .brand img {
    width: 96px;
    height: 96px;
  }

  .hero {
    align-items: flex-start;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(15, 27, 45, 0.9), rgba(15, 27, 45, 0.7), rgba(15, 27, 45, 0.42));
  }

  .hero-content {
    padding-top: 10rem;
    padding-bottom: 7.5rem;
  }

  .hero-title {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-copy br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .rating-badge {
    align-self: center;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 8px;
  }

  .stats-grid,
  .reviews-grid,
  .services-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .salon-video,
  .salon-carousel {
    width: min(100%, 520px);
  }

  .salon-video {
    width: min(100%, 394px);
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 1rem;
  }

  .gallery-grid[data-active-filter="femme"],
  .gallery-grid[data-active-filter="homme"],
  .gallery-grid[data-active-filter="barber"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(420px, 58vh);
  }

  .gallery-feature {
    grid-row: auto;
  }

  .gallery-item span {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.82rem;
  }

  .gallery-item::after {
    background: linear-gradient(180deg, transparent 45%, rgba(15, 27, 45, 0.78));
  }

  .service-card li {
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
  }

  .service-card li strong {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 10rem;
    text-align: center;
  }

  .footer-grid nav,
  .footer-contact,
  .footer-contact li,
  .footer-contact a {
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-bottom {
    align-items: center;
  }
}

@media (max-width: 520px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-card {
    padding: 1.35rem 1rem;
  }

  .stat-card strong {
    font-size: 2.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .gallery-grid[data-active-filter="femme"],
  .gallery-grid[data-active-filter="homme"],
  .gallery-grid[data-active-filter="barber"] {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(560px, 78vh);
  }

  .mobile-booking .container {
    width: min(100% - 1rem, 1280px);
  }

  .mobile-booking .btn {
    flex: 1 1 0;
    padding-inline: 0.65rem;
    font-size: 0.78rem;
  }
}

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