
:root {
  --gold: #C9A96E;
  --gold-light: #DFC08E;
  --gold-dark: #A8854A;
  --charcoal: #141414;
  --charcoal-mid: #2A2A2A;
  --warm-white: #FAF8F5;
  --off-white: #F2EFE9;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #6B6560;
  --border: rgba(0, 0, 0, 0.09);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.30);

  --transition: all 0.3s ease;
  --transition-fast: all 0.18s ease;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

em {
  font-style: italic;
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-xl);
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container--narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-padding {
  padding: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--space-lg) 0;
  }
}

.section-heading p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}

.section-padding {
  padding: var(--space-3xl) clamp(1.5rem, 6vw, 6rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1DAF55;
  border-color: #1DAF55;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

.reveal-d5 {
  transition-delay: 0.40s;
}

#menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 10, 0.45);
  z-index: 1098;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

#menu-backdrop.active {
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav--scrolled {
  background: rgba(20, 18, 16, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  transition: filter 0.3s ease;
}

.nav--scrolled .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.nav--scrolled .nav__logo-wordmark {
  color: var(--white);
}

.nav--light .nav__logo-wordmark {
  color: var(--charcoal);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.nav--scrolled .nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.nav--light .nav__link {
  color: var(--charcoal);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav--scrolled .nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 60%;
}

.nav__cta {
  margin-left: 1.5rem;
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  box-shadow: none;
  border-radius: 999px;
}

.nav--scrolled .nav__cta {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.nav__cta:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: none;
}

.nav--scrolled .nav__cta:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav--scrolled .nav__hamburger span {
  background: var(--white);
}

.nav--light .nav__hamburger span {
  background: var(--charcoal);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/salon_exterior.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  transform-origin: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 5vw, 6rem) var(--space-xl);
  max-width: 760px;
}

.hero__content--centered {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero__eyebrow {
  color: var(--charcoal);
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.9s var(--ease-out) 1.2s both;
}

.hero__title {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}

.hero__word-left {
  display: inline-block;
  animation: slideMeetLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__word-right {
  display: inline-block;
  animation: slideMeetRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideMeetLeft {
  0% { opacity: 0; transform: translateX(-40vw); filter: blur(10px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes slideMeetRight {
  0% { opacity: 0; transform: translateX(40vw); filter: blur(10px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.hero__subtitle {
  color: var(--charcoal-mid);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 650px;
  animation: fadeInUp 0.9s var(--ease-out) 1.6s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.9s var(--ease-out) 2.0s both;
}

.btn-pill {
  background: #D9CBB9;
  color: var(--charcoal);
  border-radius: 999px;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  border: none;
  transition: transform 0.3s ease, background 0.3s ease;
  text-transform: uppercase;
}

.btn-pill:hover {
  background: #CDB7A0;
  transform: translateY(-2px);
}

.hero__note {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
}

.hero__scroll {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 0.5rem;
  margin: 1.75rem auto 0;
  color: var(--charcoal-mid);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 2.4s both;
}

.hero__scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--charcoal-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.about {
  background: var(--warm-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: clamp(420px, 55vw, 600px);
  object-fit: cover;
  border-radius: 0 45% 0 45%;
  box-shadow: 0 0 60px rgba(217, 203, 185, 0.65); 
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about__image:hover {
  box-shadow: 0 0 90px rgba(217, 203, 185, 0.95);
  transform: translateY(-2px);
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about__badge-text {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.375rem;
  opacity: 0.75;
}

.about__content {
  padding: 0.5rem 0;
}

.about__content h2 {
  margin-bottom: 1.75rem;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 1.125rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about__quote {
  border-left: 2.5px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about__quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.about__tag {
  padding: 0.375rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

.services {
  background: var(--off-white);
}

.services__intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.price-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.price-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.price-list__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.price-list__divider {
  height: 1.5px;
  background: var(--gold);
  width: 40px;
  margin-bottom: 1.75rem;
}

.price-subhead {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 1.5rem 0 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.price-item:last-of-type {
  border-bottom: none;
}

.price-val {
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.price-note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

.artwork {
  background: var(--warm-white);
}

.artwork__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  --pos: 50%;
  background: var(--charcoal);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transform: translateZ(0); 
}

.ba-slider:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) translateZ(0);
}

.ba-img-before, .ba-img-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center; 
  pointer-events: none;
  image-rendering: high-quality;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.ba-img-before {
  z-index: 2;
  clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%);
}

.ba-img-after {
  z-index: 1;
}

.ba-range {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  margin: 0;
  background: transparent;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
  appearance: none;
}

.ba-slider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--white);
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-slider-btn {
  position: absolute;
  top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 6;
  pointer-events: none;
}

.ba-label-before, .ba-label-after {
  position: absolute;
  bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(14, 12, 10, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ba-label-before { left: 1.25rem; }
.ba-label-after { right: 1.25rem; }

.gallery {
  background: var(--off-white);
}

.gallery__grid {
  column-count: 3;
  column-gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  break-inside: avoid;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
}

.testimonials {
  background: var(--off-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.testimonial-city {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.booking-cta {
  background: var(--charcoal);
  padding: var(--space-3xl) clamp(1.5rem, 6vw, 6rem);
  text-align: center;
}

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

.booking-cta h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.booking-cta>p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.booking-cta__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  transition: opacity 0.2s;
}

.booking-cta__phone:hover {
  opacity: 0.82;
}

.booking-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-cta__note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.875rem;
}

.footer__social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer__social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__link i {
  margin-top: 0.2em;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1.5rem;
  font-size: 0.9rem;
}

.hours-day {
  color: rgba(255, 255, 255, 0.55);
}

.hours-time {
  color: rgba(255, 255, 255, 0.82);
}

.hours-closed {
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem clamp(1.5rem, 6vw, 6rem);
  font-size: 0.8125rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--gold-light);
}

.footer__attribution {
  color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 1100px) {
  .services__intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 3.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .price-container {
    grid-template-columns: 1fr;
  }

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

  .gallery__grid {
    column-count: 2;
  }

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

  .about__badge {
    right: 0.75rem;
    bottom: -1rem;
  }

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

@media (max-width: 768px) {

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(75vw, 340px);
    height: 100vh;
    height: 100svh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 2rem 4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  }

  .nav__links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--charcoal) !important;
    border-bottom: 1px solid var(--border);
  }

  .nav__link:hover {
    color: var(--gold-dark);
  }

  .nav__cta {
    margin: 2rem 0 0;
    width: 100%;
    justify-content: center;
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
  }

  .nav__hamburger {
    display: flex;
    z-index: 2500;
  }

  .nav__hamburger.active span {
    background: var(--charcoal);
  }

  .services__intro-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .gallery__grid {
    column-count: 1;
  }

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

  .hero {
    min-height: 60svh;
  }

  .hero__bg {
    background-position: center top;
  }

  .hero__scroll {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .hero__title {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .hero__subtitle {
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
  }

  .ba-label-before, .ba-label-after {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    bottom: 0.75rem;
  }
  
  .ba-label-before { left: 0.75rem; }
  .ba-label-after { right: 0.75rem; }

  .about__grid {
    gap: 3rem;
  }

  .about__image {
    height: clamp(280px, 70vw, 420px);
    border-radius: 0 25% 0 25%;
    object-position: center 15%;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .price-list {
    padding: 1.75rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq__item summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.faq__item summary:hover {
  color: var(--gold);
}

.faq__item summary::after {
  content: '＋';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq__item details[open] summary::after {
  content: '－';
}

.faq__content {
  padding: 1rem 0;
  color: var(--text-muted);
  line-height: 1.8;
}