/* ============================================================
   TAILORED ELEGANCE — MASTER STYLESHEET
   Version: 1.0 | Luxury Alterations & Dressmaking Studio
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --white:          #FFFFFF;
  --black:          #111111;
  --black-deep:     #0A0A0A;
  --gold:           #C6A664;
  --gold-light:     #D4B87A;
  --gold-dark:      #A08745;
  --gold-pale:      #F5EDD6;
  --gold-trans:     rgba(198,166,100,0.12);
  --gray-50:        #FAFAFA;
  --gray-100:       #F5F5F5;
  --gray-200:       #E8E8E8;
  --gray-300:       #D0D0D0;
  --gray-500:       #888888;
  --gray-700:       #444444;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script:    'Great Vibes', cursive;

  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --ease-luxury:    cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 48px rgba(0,0,0,0.14);
  --shadow-xl:      0 20px 80px rgba(0,0,0,0.18);
  --shadow-gold:    0 8px 40px rgba(198,166,100,0.30);

  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      20px;
  --radius-full:    9999px;

  --container-max:  1320px;
  --container-wide: 1600px;

  --z-below:        -1;
  --z-base:          0;
  --z-raised:        10;
  --z-overlay:       50;
  --z-nav:           300;
  --z-modal:         400;
  --z-loader:        500;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title strong { font-weight: 600; }

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.85;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container       { width: 90%; max-width: var(--container-max); margin-inline: auto; }
.container--wide { width: 95%; max-width: var(--container-wide); margin-inline: auto; }

section { padding: 7rem 0; }

.section-header           { margin-bottom: 4rem; }
.section-header--center   { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

/* ─── PAGE LOADER ────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__inner { text-align: center; }
.loader__name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.18em;
  opacity: 0;
  animation: loaderFade 0.7s var(--ease-out) 0.2s forwards;
}
.loader__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  opacity: 0;
  animation: loaderFade 0.7s var(--ease-out) 0.4s forwards;
}
.loader__bar {
  width: 80px;
  height: 1px;
  background: rgba(198,166,100,0.3);
  margin: 1.75rem auto 0;
  position: relative;
  overflow: hidden;
}
.loader__bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderBar 1.4s var(--ease-out) 0.4s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar  { to { transform: scaleX(1); } }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(198,166,100,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.18s var(--ease-out);
}
.cursor.expanded { width: 20px; height: 20px; }
.cursor-ring.expanded { width: 60px; height: 60px; opacity: 0.35; }
@media (hover:none) { .cursor,.cursor-ring { display:none; } }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 1.75rem 0;
  transition: all 0.5s var(--ease-luxury);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.4s var(--ease-luxury);
}
.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav.scrolled .nav__logo-name { color: var(--black); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color 0.35s var(--ease-luxury);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav.scrolled .nav__link { color: var(--gray-700); }
.nav.scrolled .nav__link:hover { color: var(--gold); }
.nav.scrolled .nav__link.active { color: var(--black); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(198,166,100,0.45);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.35s var(--ease-luxury);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.nav__cta svg { width: 13px; height: 13px; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 1);
}
.nav__burger span {
  display: block;
  width: 100%; height: 1px;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
}
.nav.scrolled .nav__burger span { background: var(--black); }
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s var(--ease-out);
}
.nav__mobile.open { opacity: 1; visibility: visible; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease-out);
  position: relative;
}
.nav__mobile-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-link:hover::after { width: 100%; }
.nav__mobile-phone {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-top: 1rem;
  border: 1px solid rgba(198,166,100,0.3);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
}
.nav__mobile-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-luxury);
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ─── GOLD ORNAMENT ──────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.ornament span { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.5s var(--ease-luxury);
}
.hero__bg img.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.50) 55%,
    rgba(10,10,10,0.68) 100%
  );
}
.hero__content {
  position: relative;
  z-index: var(--z-raised);
  max-width: 820px;
  padding-top: 5rem;
}
.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 0.96;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}
.hero__headline em   { display: block; font-style: italic; font-weight: 300; }
.hero__headline strong { display: block; font-weight: 600; }
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.2s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.8s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ─── MARQUEE STRIP ──────────────────────────────────────── */
.marquee-strip {
  background: var(--black);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding-right: 2rem;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT PREVIEW ──────────────────────────────────────── */
.about-preview { background: var(--white); padding: 0; overflow: hidden; }
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.about-preview__media {
  position: relative;
  overflow: hidden;
}
.about-preview__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}
.about-preview__media:hover .about-preview__img { transform: scale(1.05); }
.about-preview__badge {
  position: absolute;
  bottom: 2.5rem;
  right: -2rem;
  width: 148px; height: 148px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-raised);
}
.about-preview__badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.about-preview__badge-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.75);
  line-height: 1.4;
  margin-top: 0.25rem;
  padding: 0 0.5rem;
}
.about-preview__content {
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-preview__script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.about-preview__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}
.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 2rem 0;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.35rem;
}

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why-us {
  background: var(--black-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(198,166,100,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.55); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.why-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(198,166,100,0.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  transition: all 0.45s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198,166,100,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
}
.why-card:hover { border-color: rgba(198,166,100,0.45); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.why-card:hover::before { opacity: 1; }
.why-card__icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 1.5rem; }
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-card__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* ─── SERVICES GRID ──────────────────────────────────────── */
.services { background: var(--gray-50); padding-bottom: 0; }
.services__intro { padding-bottom: 3rem; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--black);
}
.service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 1.1s var(--ease-luxury), opacity 0.5s;
}
.service-card:hover .service-card__img { transform: scale(1.07); opacity: 0.65; }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 55%, transparent 100%);
}
.service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  color: var(--white);
}
.service-card__num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.service-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-luxury);
}
.service-card:hover .service-card__desc { max-height: 80px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease-luxury);
}
.service-card:hover .service-card__link { opacity: 1; transform: translateX(0); }
.service-card__link svg { width: 12px; height: 12px; }

/* Additional services strip */
.services-more {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}
.services-more__title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 1.5rem;
}
.services-more__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.services-more__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-luxury);
}
.services-more__tag:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }

/* ─── CRAFT BAR ──────────────────────────────────────────── */
.craft-bar { background: var(--gold); padding: 3.5rem 0; }
.craft-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.craft-bar__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  max-width: 700px;
  line-height: 1.3;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--white); overflow: hidden; }
.testimonials__wrap { position: relative; overflow: hidden; }
.testimonials__track {
  display: flex;
  transition: transform 0.7s var(--ease-luxury);
}
.testimonials__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.t-card {
  background: var(--gray-50);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.4s var(--ease-luxury);
}
.t-card::after {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}
.t-card:hover { border-color: rgba(198,166,100,0.5); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.t-card__stars { display: flex; gap: 0.25rem; color: var(--gold); margin-bottom: 1.25rem; }
.t-card__stars svg { width: 16px; height: 16px; fill: currentColor; }
.t-card__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.t-card__author { display: flex; align-items: center; gap: 0.75rem; }
.t-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.t-card__name { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--black); }
.t-card__event { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  border: none;
}
.t-dot.active { background: var(--gold); width: 28px; }

/* ─── INSTAGRAM PREVIEW ──────────────────────────────────── */
.instagram { background: var(--gray-50); }
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-200);
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease-luxury);
}
.insta-item__overlay svg { color: var(--white); opacity: 0; transform: scale(0.7); transition: all 0.35s var(--ease-luxury); }
.insta-item:hover .insta-item__overlay { background: rgba(17,17,17,0.48); }
.insta-item:hover .insta-item__overlay svg { opacity: 1; transform: scale(1); }
.instagram__follow {
  text-align: center;
  margin-top: 2.5rem;
}
.instagram__handle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--gray-500);
  display: block;
  margin-bottom: 1rem;
}

/* ─── APPOINTMENT CTA ────────────────────────────────────── */
.appt-cta {
  background: var(--black-deep);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.appt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(198,166,100,0.09) 0%, transparent 65%);
}
.appt-cta__script {
  display: block;
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.appt-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}
.appt-cta__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}
.appt-cta__ctas { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.appt-cta__or { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.appt-cta__phone {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.appt-cta__phone:hover { color: var(--gold-light); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 5.5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer__brand-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.footer__brand-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 1.75rem;
}
.footer__socials { display: flex; gap: 0.6rem; }
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease-luxury);
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 15px; height: 15px; }
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}
.footer__link:hover { color: var(--gold); }
.footer__contact-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.footer__contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact-icon svg { width: 14px; height: 14px; }
.footer__contact-val {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer__contact-val a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer__contact-val a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.7rem; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link { font-size: 0.7rem; color: rgba(255,255,255,0.28); transition: color 0.25s; }
.footer__bottom-link:hover { color: var(--gold); }

/* ─── GALLERY PAGE ───────────────────────────────────────── */
.gallery-hero {
  height: 55vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.gallery-hero__bg { position: absolute; inset: 0; }
.gallery-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.55) 100%);
}
.gallery-hero__content { position: relative; z-index: var(--z-raised); padding-top: 5rem; }

.gallery-filter {
  background: var(--white);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 72px;
  z-index: var(--z-overlay);
}
.gallery-filter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  background: transparent;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.gallery-section { padding: 3.5rem 0 6rem; }
.masonry-grid {
  columns: 4;
  column-gap: 10px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  display: none;
}
.masonry-item.visible { display: block; }
.masonry-item img { width: 100%; display: block; transition: transform 0.8s var(--ease-luxury); }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.4s var(--ease-luxury);
}
.masonry-item:hover .masonry-item__overlay { background: rgba(10,10,10,0.45); }
.masonry-item__overlay svg { color: var(--white); opacity: 0; transform: scale(0.7); transition: all 0.4s var(--ease-luxury); }
.masonry-item:hover .masonry-item__overlay svg { opacity: 1; transform: scale(1); }
.masonry-item__cat {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury) 0.05s;
}
.masonry-item:hover .masonry-item__cat { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(10,10,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__content { position: relative; display: flex; align-items: center; justify-content: center; }
.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  transition: opacity 0.3s;
}
.lightbox__img.transitioning { opacity: 0; }
.lightbox__close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
}
.lightbox__close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.lightbox__nav-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox__nav-btn svg { width: 20px; height: 20px; }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-hero {
  height: 60vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}
.about-hero__content { position: relative; z-index: var(--z-raised); padding-top: 5rem; }

.about-story { background: var(--white); }
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story__media { position: relative; }
.about-story__img { width: 100%; height: 580px; object-fit: cover; border-radius: var(--radius-md); }
.about-story__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 2px solid rgba(198,166,100,0.35);
  border-radius: var(--radius-md);
  z-index: var(--z-below);
}
.about-story__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.about-values { background: var(--black-deep); color: var(--white); }
.about-values .section-title { color: var(--white); }
.about-values .section-subtitle { color: rgba(255,255,255,0.5); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.value-card {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s;
}
.value-card:hover { background: rgba(198,166,100,0.04); }
.value-card:last-child { border-right: none; }
.value-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(198,166,100,0.14);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.value-card__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}

.about-mission { background: var(--gold-pale); }
.about-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mission-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.mission-card__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mission-card__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-page-hero {
  background: var(--black-deep);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.contact-page-hero .section-title { color: var(--white); }
.contact-page-hero .section-subtitle { color: rgba(255,255,255,0.5); margin-inline: auto; }

.contact-main { background: var(--white); padding: 6rem 0 8rem; }
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { }
.contact-info__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info__icon-wrap {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.contact-info__icon-wrap svg { width: 18px; height: 18px; }
.contact-info__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}
.contact-info__value a { color: inherit; transition: color 0.25s; }
.contact-info__value a:hover { color: var(--gold); }
.contact-info__sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-500);
  margin-top: 0.25rem;
  line-height: 1.6;
}

.hours-table { margin-top: 0.75rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--black); }
.hours-row .time { font-weight: 300; color: var(--gray-500); }

/* Appointment Form */
.appt-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.appt-form-wrap .form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.appt-form-wrap .form-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,166,100,0.14);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.6;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
}
.form-success__icon { color: var(--gold); margin: 0 auto 1rem; }
.form-success__icon svg { width: 48px; height: 48px; }
.form-success__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; color: var(--black); margin-bottom: 0.5rem; }
.form-success__text { font-size: 0.9rem; color: var(--gray-500); }

.map-section { background: var(--gray-100); padding: 5rem 0; }
.map-wrap {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
}
.map-wrap svg { width: 40px; height: 40px; color: var(--gold); }
.map-wrap p { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; }

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.45s; }

/* ─── GLOBAL KEYFRAMES ───────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .masonry-grid { columns: 3; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .about-preview__grid { grid-template-columns: 1fr; }
  .about-preview__badge { right: 2rem; }
  .about-preview__content { padding: 3.5rem 2rem; }
  .about-story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-story__accent { display: none; }
  .about-mission__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-main__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  section { padding: 5rem 0; }
  .hero__headline { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .about-preview__stats { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .testimonials__slide { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: 1; }
  .craft-bar__inner { flex-direction: column; text-align: center; }
  .appt-cta__ctas { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .masonry-grid { columns: 2; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; }
}

@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__ctas { flex-direction: column; }
}
