/* ============================================================
   MAC HAIR STYLING — Main Stylesheet
   Color Palette:
   Background:    #FAF7F4 (Warm cream)
   Primary Text:  #1A1A1A (Near-black)
   Accent:        #9B6A3A (Deep cognac / bronze)
   Secondary:     #8B7355 (Warm taupe)
   Dark Sections: #2C2C2C (Charcoal)
   Gold Highlight:#C9A96E (Soft gold)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

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

body {
  background-color: #FAF7F4;
  color: #1A1A1A;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9B6A3A;
}

p { font-size: 1rem; font-weight: 300; line-height: 1.8; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section-pad { padding: 7rem 0; }
.section-pad--sm { padding: 4rem 0; }

.text-center { text-align: center; }
.text-gold { color: #C9A96E; }
.text-accent { color: #9B6A3A; }
.bg-dark { background-color: #2C2C2C; color: #FAF7F4; }
.bg-cream { background-color: #FAF7F4; }
.bg-charcoal-light { background-color: #3a3a3a; }

.divider {
  width: 60px;
  height: 1px;
  background: #9B6A3A;
  margin: 1.5rem auto;
}
.divider--left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: #9B6A3A;
  color: #FAF7F4;
  border-color: #9B6A3A;
}
.btn--primary:hover {
  background: #C9A96E;
  border-color: #C9A96E;
  color: #1A1A1A;
}

.btn--outline {
  background: transparent;
  color: #FAF7F4;
  border-color: #FAF7F4;
}
.btn--outline:hover {
  background: #FAF7F4;
  color: #1A1A1A;
}

.btn--outline-dark {
  background: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.btn--outline-dark:hover {
  background: #1A1A1A;
  color: #FAF7F4;
}

.btn--gold {
  background: #C9A96E;
  color: #1A1A1A;
  border-color: #C9A96E;
}
.btn--gold:hover {
  background: #9B6A3A;
  border-color: #9B6A3A;
  color: #FAF7F4;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 244, 0.97);
  padding: 1rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FAF7F4;
  transition: color 0.4s ease;
}

.nav.scrolled .nav__logo { color: #1A1A1A; }

.nav__logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.nav.scrolled .nav__logo img { filter: none; }

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

.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,244,0.9);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: #C9A96E;
  transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav.scrolled .nav__links a { color: #1A1A1A; }
.nav__links a:hover { color: #9B6A3A; }
.nav.scrolled .nav__links a:hover { color: #9B6A3A; }

.nav__book {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  background: #9B6A3A;
  color: #FAF7F4 !important;
  border: 1px solid #9B6A3A;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.nav__book:hover {
  background: #C9A96E !important;
  border-color: #C9A96E !important;
  color: #1A1A1A !important;
}
.nav__book::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: #FAF7F4;
  transition: background 0.4s, transform 0.3s;
}
.nav.scrolled .nav__hamburger span { background: #1A1A1A; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1A1A1A;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/thumbnails/IMG_9955_thumb.jpg') center 30%/cover no-repeat;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

/* Hero Video — Active */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.loaded {
  opacity: 0.65;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.55) 0%,
    rgba(26,26,26,0.2) 50%,
    rgba(26,26,26,0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: heroFadeIn 1.4s ease both;
}

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

.hero__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.4s 0.2s ease both;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: #FAF7F4;
  line-height: 1.05;
  margin-bottom: 2rem;
  animation: heroFadeIn 1.4s 0.4s ease both;
}

.hero__title em {
  font-style: italic;
  color: #C9A96E;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,247,244,0.85);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: heroFadeIn 1.4s 0.6s ease both;
}

.hero__cta {
  animation: heroFadeIn 1.4s 0.8s ease both;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,247,244,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeIn 1.4s 1.2s ease both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(250,247,244,0.4);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.7); }
}

/* ── Brand Statement ── */
.brand-statement {
  padding: 6rem 0;
  text-align: center;
  background: #FAF7F4;
}

.brand-statement__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: #1A1A1A;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.brand-statement__text {
  max-width: 600px;
  margin: 0 auto;
  color: #8B7355;
  font-size: 0.95rem;
}

/* ── Services Section ── */
.services { background: #FAF7F4; }

.section-header { margin-bottom: 4rem; }
.section-header .label { margin-bottom: 0.75rem; display: block; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 500px;
  cursor: pointer;
}

.service-card__media {
  position: absolute;
  inset: 0;
  background: #2C2C2C;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.service-card:hover .service-card__media { transform: scale(1.04); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.4s ease;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.2) 60%);
}

.service-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #FAF7F4;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.85rem;
  color: rgba(250,247,244,0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-card__desc {
  max-height: 100px;
  opacity: 1;
}

.service-card__link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A96E;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.service-card__link::after {
  content: '→';
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__link { gap: 0.75rem; }

/* ── Why MAC Section ── */
.why-mac {
  background: #2C2C2C;
  color: #FAF7F4;
}

.why-mac__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.why-item {
  text-align: center;
}

.why-item__line {
  width: 1px;
  height: 50px;
  background: #C9A96E;
  margin: 0 auto 1.5rem;
}

.why-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #FAF7F4;
  margin-bottom: 0.75rem;
}

.why-item__text {
  font-size: 0.85rem;
  color: rgba(250,247,244,0.65);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials { background: #FAF7F4; }

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial {
  padding: 2.5rem;
  border: 1px solid rgba(155,106,58,0.2);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #C9A96E;
  opacity: 0.3;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}

.testimonial__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #1A1A1A;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial__author {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9B6A3A;
}

/* ── Watch Us Work ── */
.watch-us { background: #1A1A1A; }

.watch-us .section-header .label { color: #C9A96E; }
.watch-us .section-header h2 { color: #FAF7F4; }

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

.embed-slot {
  aspect-ratio: 9/16;
  background: #2C2C2C;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(250,247,244,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.embed-slot iframe,
.embed-slot blockquote {
  border: none;
  width: 100% !important;
  margin: 0 !important;
}

/* Live embed overrides */
.embed-slot--live {
  aspect-ratio: unset;
  min-height: 500px;
  display: block;
  padding: 0;
  background: #1A1A1A;
  align-items: unset;
  justify-content: unset;
}

.embed-slot--live blockquote {
  position: static !important;
  height: auto !important;
  max-width: 100% !important;
  min-width: unset !important;
  background: #1A1A1A !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.embed-slot--live iframe {
  width: 100% !important;
  min-height: 500px;
}

.embed-slot__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ── Photo Grid ── */
.photo-grid { background: #FAF7F4; }

.photo-grid__masonry {
  columns: 3;
  column-gap: 2px;
}

.photo-tile {
  break-inside: avoid;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-tile__placeholder {
  background: #E8E2DC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #8B7355;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

.photo-tile__placeholder svg {
  opacity: 0.4;
}

.photo-tile img,
.photo-tile video {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-tile:hover img,
.photo-tile:hover video {
  transform: scale(1.03);
}

/* ── Footer ── */
.footer {
  background: #2C2C2C;
  color: #FAF7F4;
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #FAF7F4;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(250,247,244,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,247,244,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(250,247,244,0.6);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer__social a:hover {
  border-color: #C9A96E;
  color: #C9A96E;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.5rem;
}

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

.footer__links a {
  font-size: 0.85rem;
  color: rgba(250,247,244,0.6);
  transition: color 0.3s;
}
.footer__links a:hover { color: #FAF7F4; }

.footer__address {
  font-size: 0.85rem;
  color: rgba(250,247,244,0.6);
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid rgba(250,247,244,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(250,247,244,0.35);
  letter-spacing: 0.05em;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  height: 45vh;
  min-height: 350px;
  background: #2C2C2C;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero__label { color: #C9A96E; margin-bottom: 0.75rem; display: block; }
.page-hero h1 { color: #FAF7F4; }

/* ── Services Page ── */
.service-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.service-section:last-of-type { border-bottom: none; }

.service-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-section__inner.reverse { direction: rtl; }
.service-section__inner.reverse > * { direction: ltr; }

.service-section__media {
  aspect-ratio: 4/5;
  background: #E8E2DC;
  overflow: hidden;
  position: relative;
}

.service-section__media video,
.service-section__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.service-section__label { margin-bottom: 0.75rem; display: block; }
.service-section h2 { margin-bottom: 1rem; }

.service-section__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #9B6A3A;
  margin: 1.5rem 0;
}

.service-section__desc {
  color: #8B7355;
  margin-bottom: 2rem;
}

/* ── Gallery Page ── */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(26,26,26,0.2);
  background: transparent;
  color: #8B7355;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Jost', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: #9B6A3A;
  border-color: #9B6A3A;
  color: #FAF7F4;
}

.gallery-grid {
  columns: 3;
  column-gap: 3px;
}

.gallery-tile {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-tile img,
.gallery-tile video {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img,
.gallery-tile:hover video {
  transform: scale(1.04);
}

.gallery-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-tile:hover .gallery-tile__overlay {
  background: rgba(26,26,26,0.35);
}

.gallery-tile__play {
  width: 56px; height: 56px;
  border: 2px solid #FAF7F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF7F4;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-tile:hover .gallery-tile__play {
  opacity: 1;
  transform: scale(1);
}

.gallery-tile__placeholder {
  background: #E8E2DC;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #8B7355;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26,26,26,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox__inner video,
.lightbox__inner iframe,
.lightbox__inner img {
  max-width: 90vw;
  max-height: 85vh;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: -2.5rem; right: 0;
  color: rgba(250,247,244,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.lightbox__close:hover { color: #FAF7F4; }

/* ── About Page ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 7rem 0;
}

.about-intro__media {
  aspect-ratio: 3/4;
  background: #E8E2DC;
  overflow: hidden;
}

.about-intro__media video,
.about-intro__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-intro__label { margin-bottom: 0.75rem; display: block; }
.about-intro h2 { margin-bottom: 1.5rem; }
.about-intro p { color: #8B7355; margin-bottom: 1.25rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card { text-align: center; }

.team-card__photo {
  aspect-ratio: 3/4;
  background: #E8E2DC;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #8B7355;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9B6A3A;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 7rem 0;
}

.contact-info__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #9B6A3A;
}

.contact-info__block {
  margin-bottom: 2.5rem;
}

.contact-info__text {
  font-size: 0.9rem;
  color: #8B7355;
  line-height: 1.8;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(26,26,26,0.07);
}

.hours-table td {
  padding: 0.6rem 0;
  color: #8B7355;
}

.hours-table td:last-child {
  text-align: right;
  color: #1A1A1A;
}

.contact-form { }

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,26,26,0.2);
  padding: 0.75rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: #1A1A1A;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #9B6A3A;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.map-placeholder {
  background: #E8E2DC;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B7355;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3rem;
}

/* ── Book CTA Banner ── */
.book-cta {
  background: #9B6A3A;
  padding: 5rem 0;
  text-align: center;
}

.book-cta h2 {
  color: #FAF7F4;
  margin-bottom: 0.75rem;
}

.book-cta p {
  color: rgba(250,247,244,0.75);
  margin-bottom: 2rem;
}

/* ── Video Embed on Services Page ── */
.video-embed-section {
  background: #2C2C2C;
  padding: 5rem 0;
}

.video-embed-wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
}

.video-embed-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Self-hosted video option (active) */
/* YouTube/TikTok embed option (commented out — activate by uncommenting)
.video-embed-wrapper iframe {
  width: 100%; height: 100%;
  border: none;
}
*/

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile Navigation ── */
.nav__mobile {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #FAF7F4;
  z-index: 1100;
  padding: 6rem 2.5rem 3rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__mobile.open { right: 0; }

.nav__mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #1A1A1A;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: #9B6A3A; }

.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav__mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1A1A1A;
}

/* ── Nav always scrolled on inner pages ── */
.nav.always-scrolled {
  background: rgba(250, 247, 244, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}
.nav.always-scrolled .nav__logo { color: #1A1A1A; }
.nav.always-scrolled .nav__links a { color: #1A1A1A; }
.nav.always-scrolled .nav__hamburger span { background: #1A1A1A; }

/* ── Service card video fill ── */
.service-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why-mac__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__media { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-section__inner.reverse { direction: ltr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .testimonials__track { grid-template-columns: 1fr; }
  .watch-us__grid { grid-template-columns: 1fr; }
  .photo-grid__masonry { columns: 2; }
  .gallery-grid { columns: 2; }
  .why-mac__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .section-pad { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .photo-grid__masonry { columns: 1; }
  .gallery-grid { columns: 1; }
  .why-mac__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; }
}
