/* ============================================================
   INSTYLE EVENTS — Luxury Event Design & Decoration
   css/style.css
   ============================================================ */


/* ---- Custom Properties ---- */
:root {
  --bg-primary:    #080808;
  --bg-secondary:  #0d0d0d;
  --bg-card:       #121212;
  --bg-card-alt:   #181818;

  --gold:          #c9a96e;
  --gold-light:    #e8d5b0;
  --gold-dark:     #8b6914;
  --gold-rgb:      201, 169, 110;

  --text-primary:  #f8f4ee;
  --text-secondary:#c4bcb5;
  --text-muted:    #8a8278;

  --border-gold:   rgba(201, 169, 110, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.05);

  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Montserrat', -apple-system, sans-serif;
  --font-mono:     'DM Mono', monospace;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.37, 0, 0.63, 1);

  --shadow-gold:   0 0 40px rgba(201, 169, 110, 0.12);
  --shadow-dark:   0 25px 60px rgba(0, 0, 0, 0.6);

  --radius:        2px;

  --bg-footer:     #040404;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--bg-card);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9997;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---- Typography Scale ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 0.925rem; letter-spacing: 0.02em; color: var(--text-secondary); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 110px 0; }
.section--alt { background-color: var(--bg-secondary); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.eyebrow::before, .eyebrow::after { content: '—'; margin: 0 0.55rem; opacity: 0.45; }

.section-title  { margin-bottom: 0.9rem; }
.section-lead   { font-size: 1rem; max-width: 560px; line-height: 1.95; color: var(--text-secondary); letter-spacing: 0.01em; }

.gold-line {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
}
.gold-line--center { margin: 1.4rem auto; }

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 44px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.6s ease;
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(var(--gold-rgb), 0.32);
}
.btn--primary:hover::before { left: 160%; }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #080808;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 13px 36px;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 18px 48px;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border-gold);
}
.nav__logo { display: flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1; text-decoration: none; }
.nav__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 1px;
  opacity: 0.72;
  mix-blend-mode: luminosity;
  transition: opacity 0.3s ease;
}
.nav__logo:hover .nav__logo-img,
.nav__logo:focus-visible .nav__logo-img {
  opacity: 0.92;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
}
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}
.nav__logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--gold); color: #080808; }

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__cta {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.3s;
}
.mobile-menu__cta:hover { background: var(--gold); color: #080808; }
.mobile-menu__contact {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 120px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/IMG_2775.JPG');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(201,169,110,0.07) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: heroShimmer 2.4s ease 0.8s forwards;
  pointer-events: none;
}
@keyframes heroShimmer {
  to { transform: translateX(110%); }
}
.hero__sweep {
  position: absolute;
  bottom: 32%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(201,169,110,0.18) 25%, rgba(201,169,110,0.32) 50%, rgba(201,169,110,0.18) 75%, transparent 100%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.8s ease 2.2s forwards;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(8,8,8,0.55) 100%),
    linear-gradient(
      to bottom,
      rgba(8,8,8,0.45) 0%,
      rgba(8,8,8,0.15) 38%,
      rgba(8,8,8,0.60) 75%,
      rgba(8,8,8,0.97) 100%
    );
}
.hero__corner {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.6s forwards;
}
.hero__corner--tl { top: 32px; left: 32px; border-top: 1px solid rgba(201,169,110,0.45); border-left: 1px solid rgba(201,169,110,0.45); }
.hero__corner--tr { top: 32px; right: 32px; border-top: 1px solid rgba(201,169,110,0.45); border-right: 1px solid rgba(201,169,110,0.45); }
.hero__corner--bl { bottom: 76px; left: 32px; border-bottom: 1px solid rgba(201,169,110,0.45); border-left: 1px solid rgba(201,169,110,0.45); }
.hero__corner--br { bottom: 76px; right: 32px; border-bottom: 1px solid rgba(201,169,110,0.45); border-right: 1px solid rgba(201,169,110,0.45); }
.hero__side-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 0.48rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  white-space: nowrap;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 28px;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
  will-change: opacity, transform;
}
.hero__ornament {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.48s forwards;
}
.hero__title {
  font-size: clamp(3.2rem, 8.5vw, 8.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-shadow: 0 2px 60px rgba(0,0,0,0.6);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.1s var(--ease-out) 0.65s forwards;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3.2rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero__scroll-text {
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 52px 20px;
  border-right: 1px solid var(--border-gold);
  transition: background 0.3s, box-shadow 0.4s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg-card-alt); box-shadow: inset 0 -2px 0 var(--gold); }
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================================
   ABOUT (HOMEPAGE TEASER)
   ============================================================ */
.about { padding: 130px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.about__image-frame {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 62%;
  height: 58%;
  border: 1px solid var(--border-gold);
  z-index: -1;
  pointer-events: none;
}
.about__badge {
  position: absolute;
  bottom: 50px;
  left: -44px;
  background: var(--bg-primary);
  border: 1px solid var(--border-gold);
  padding: 22px 32px;
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.about__badge-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about__badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}
.about__content { max-width: 520px; }
.about__content p { margin-bottom: 1.5rem; line-height: 2.1; font-size: 0.95rem; }
.about__signature {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 2.2rem;
  margin-bottom: 0.25rem;
  display: block;
}
.about__signature-title {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES (HOMEPAGE)
   ============================================================ */
.services { padding: 120px 0; background: var(--bg-secondary); }
.services__header { text-align: center; margin-bottom: 72px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.service-card {
  background: var(--bg-primary);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(var(--gold-rgb), 0.3));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover { background: var(--bg-card); }
.service-card:hover::after { transform: scaleY(1); }
.service-card__num {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--gold-rgb), 0.12);
  position: absolute;
  top: 10px; right: 22px;
  line-height: 1;
  transition: -webkit-text-stroke-color 0.4s;
  user-select: none;
  font-style: italic;
}
.service-card:hover .service-card__num { -webkit-text-stroke-color: rgba(var(--gold-rgb), 0.08); }
.service-card__icon {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-card__icon { transform: scale(1.12); }
.service-card__title { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card__desc {
  font-size: 0.875rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}
.service-card__link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-card__link:hover { gap: 14px; }

/* ============================================================
   GALLERY (HOMEPAGE PREVIEW)
   ============================================================ */
.gallery-preview { padding: 120px 0; }
.gallery-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 4;  grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 7;  grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 7 / 9;  grid-row: 2 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.gallery-item:focus-visible img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
  border: 1px solid transparent;
}
.gallery-item:hover .gallery-item__overlay {
  background: rgba(8,8,8,0.48);
  border-color: rgba(var(--gold-rgb), 0.2);
}
.gallery-item__icon {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-item__icon { opacity: 1; transform: scale(1); }

/* ============================================================
   VIDEO REEL
   ============================================================ */
.video-reel { padding: 120px 0; background: var(--bg-secondary); }
.video-reel__header { text-align: center; margin-bottom: 60px; }
.video-reel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.video-reel__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--bg-card);
  cursor: pointer;
}
.video-reel__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
  filter: brightness(0.88);
}
.video-reel__item:hover video {
  transform: scale(1.04);
  filter: brightness(1);
}
.video-reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,0.25);
  transition: background 0.4s ease;
  pointer-events: none;
}
.video-reel__item.playing .video-reel__play { background: transparent; }
.video-reel__play-btn {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.35s var(--ease-out);
  padding-left: 4px;
}
.video-reel__item:hover .video-reel__play-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
  transform: scale(1.12);
}
.video-reel__item.playing .video-reel__play-btn { opacity: 0; }

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

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 120px 0; background: var(--bg-secondary); }
.process__header { text-align: center; margin-bottom: 84px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}
.process__connector {
  position: absolute;
  top: 30px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.35) 30%, rgba(var(--gold-rgb), 0.35) 70%, transparent);
  opacity: 1;
}
.process-step { text-align: center; }
.process-step__circle {
  width: 60px; height: 60px;
  border: 1px solid rgba(var(--gold-rgb), 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  background: transparent;
  position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.process-step:hover .process-step__circle {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(var(--gold-rgb), 0.16), inset 0 0 16px rgba(var(--gold-rgb), 0.06);
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.process-step__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 2; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 130px 0; overflow: hidden; }
.testimonials__header { text-align: center; margin-bottom: 72px; }
.testimonials__track {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.testimonial {
  display: none;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 0.75s var(--ease-out);
}
.testimonial.active { display: block; }
.testimonial__mark {
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  margin-bottom: 0.5rem;
  display: block;
}
.testimonial__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 2.4rem;
  letter-spacing: 0.01em;
}
.testimonial__author {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.testimonial__meta {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 5px;
}

.testimonials__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
}
.testimonials__dots {
  display: flex;
  gap: 10px;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s;
}
.t-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 3px;
}
.testimonials__nav { display: flex; gap: 12px; }
.t-btn {
  width: 46px; height: 46px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.85rem;
}
.t-btn:hover { background: var(--gold); color: #080808; border-color: var(--gold); }

/* ============================================================
   CTA PARALLAX BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-image: url('../images/IMG_2785.JPG');
  background-size: cover;
  background-position: center 20%;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.78);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}
.cta-banner__title { font-size: clamp(2.3rem, 4.5vw, 4rem); margin-bottom: 1.2rem; }
.cta-banner__sub {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 2.8rem;
  line-height: 1.9;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }

/* ============================================================
   CONTACT (HOMEPAGE SECTION)
   ============================================================ */
.contact-section { padding: 120px 0; background: var(--bg-secondary); }
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}
.contact-info__title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.2rem; }
.contact-info__desc { font-size: 0.925rem; line-height: 2; color: var(--text-secondary); margin-bottom: 2.8rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.8rem; margin-bottom: 2.8rem; }
.contact-detail { display: flex; gap: 1.4rem; align-items: flex-start; }
.contact-detail__icon { color: var(--gold); font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.contact-detail__label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-detail__value { font-size: 0.875rem; color: var(--text-primary); display: block; }
.contact-detail__value a { color: var(--text-primary); }
.contact-detail__value a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  padding: 54px;
  border: 1px solid var(--border-gold);
}
.contact-form__title { font-size: 1.8rem; margin-bottom: 0.6rem; }
.contact-form__sub { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 2.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(var(--gold-rgb), 0.6);
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.06), inset 0 1px 0 rgba(var(--gold-rgb), 0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-footer);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-gold);
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 64px;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}
.footer__desc { font-size: 0.82rem; line-height: 2; color: var(--text-secondary); margin-bottom: 1.8rem; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 38px; height: 38px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.78rem;
  transition: all 0.3s;
}
.footer__social:hover { background: var(--gold); color: #080808; border-color: var(--gold); }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.footer__links { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__link { font-size: 0.8rem; color: var(--text-muted); transition: color 0.25s; letter-spacing: 0.02em; }
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }
.footer__legal { display: flex; gap: 1.8rem; }
.footer__legal-link { font-size: 0.68rem; color: var(--text-muted); transition: color 0.25s; }
.footer__legal-link:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADERS (inner pages)
   ============================================================ */
/* ============================================================
   PAGE HERO (About, Services, Gallery, Contact)
   ============================================================ */
.page-hero {
  position: relative;
  height: 76vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero.loaded .page-hero__bg { transform: scale(1); }
.page-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.68) 0%,
      rgba(8,8,8,0.16) 38%,
      rgba(8,8,8,0.72) 72%,
      rgba(8,8,8,0.97) 100%
    );
}
.page-hero__ghost {
  position: absolute;
  bottom: -0.14em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 17vw, 19rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.08);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.06em;
  user-select: none;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 28px 68px;
  width: 100%;
}
.page-hero__content .breadcrumb {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 0.25s forwards;
}
.page-hero__content .eyebrow {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.page-hero__content h1 {
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-shadow: 0 4px 48px rgba(0,0,0,0.55);
  margin-top: 1rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.1s var(--ease-out) 0.6s forwards;
}
.page-hero__content h1 em { font-style: italic; color: var(--gold); }
.page-hero__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.8rem auto 1.6rem;
}
.page-hero__bar-line {
  height: 1px;
  width: 0;
  background: linear-gradient(to right, transparent, var(--gold));
  animation: phBarExpand 0.9s var(--ease-out) 1s forwards;
}
.page-hero__bar-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.page-hero__bar-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 0.5s ease 1.15s forwards;
}
@keyframes phBarExpand {
  to { width: 76px; }
}
.page-hero__content .section-lead {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s var(--ease-out) 1.05s forwards;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--gold); font-size: 0.5rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { padding: 110px 0; }
.service-full-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-full-item:last-child { border-bottom: none; }
.service-full-item.reverse > *:first-child { order: 2; }
.service-full-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.service-full-content__icon { color: var(--gold); font-size: 2.2rem; margin-bottom: 1.4rem; }
.service-full-content__title { font-size: 2.2rem; margin-bottom: 1rem; }
.service-full-content p { margin-bottom: 1.2rem; line-height: 2.1; font-size: 0.95rem; }
.service-full-content ul { margin: 1.2rem 0 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-full-content ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.4rem;
  position: relative;
}
.service-full-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* Packages */
.packages { padding: 100px 0; background: var(--bg-secondary); }
.packages__header { text-align: center; margin-bottom: 68px; }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-gold); border: 1px solid var(--border-gold); }
.package-card {
  background: var(--bg-primary);
  padding: 52px 44px;
  text-align: center;
  transition: background 0.3s;
}
.package-card.featured { background: var(--bg-card); position: relative; }
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #080808;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}
.package-card__name { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.package-card__price { font-family: var(--font-heading); font-size: 3.2rem; color: var(--text-primary); line-height: 1; margin-bottom: 0.4rem; }
.package-card__price span { font-size: 1.2rem; vertical-align: super; }
.package-card__period { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 2rem; }
.package-card__features { text-align: left; margin-bottom: 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.package-card__feature {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.package-card__feature i { color: var(--gold); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-full { padding: 80px 0 120px; }
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 22px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  color: var(--text-muted);
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-masonry .gallery-item { height: 340px; }
.gallery-masonry .gallery-item.tall { height: 500px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 120px 0; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-story__img { width: 100%; height: 580px; object-fit: cover; }
.values { padding: 110px 0; background: var(--bg-secondary); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-gold); border: 1px solid var(--border-gold); margin-top: 60px; }
.value-card { background: var(--bg-primary); padding: 50px 40px; transition: background 0.3s; }
.value-card:hover { background: var(--bg-card); }
.value-card__icon { color: var(--gold); font-size: 1.6rem; margin-bottom: 1.4rem; }
.value-card__title { font-size: 1.3rem; margin-bottom: 0.9rem; }
.value-card__desc { font-size: 0.875rem; line-height: 2.1; color: var(--text-secondary); }
.team { padding: 120px 0; }
.team__header { text-align: center; margin-bottom: 68px; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; }
.team-card__img { width: 100%; height: 380px; object-fit: cover; object-position: top; margin-bottom: 1.8rem; filter: grayscale(20%); transition: filter 0.4s; }
.team-card:hover .team-card__img { filter: grayscale(0%); }
.team-card__name { font-size: 1.5rem; margin-bottom: 0.3rem; }
.team-card__role { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 110px 0; }
.contact-page__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 90px; }
.map-embed { width: 100%; height: 300px; border: 0; filter: grayscale(80%) invert(90%); margin-top: 2rem; display: block; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; display: block; }
.lightbox__close {
  position: absolute;
  top: 28px; right: 36px;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.35s;
  background: none; border: none;
  z-index: 10001;
}
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  background: rgba(8,8,8,0.7);
  border: 1px solid var(--border-gold);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  z-index: 10001;
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover, .lightbox__next:hover { background: var(--gold); color: #080808; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  80%  { opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about__grid { gap: 56px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__connector { display: none; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border-gold); }
  .stat:nth-child(4) { border-top: 1px solid var(--border-gold); border-right: none; }
  .service-full-item { grid-template-columns: 1fr; gap: 44px; }
  .service-full-item.reverse > *:first-child { order: unset; }
  .service-full-img { height: 380px; }
  .packages__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-story__grid { grid-template-columns: 1fr; gap: 50px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page__grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-section__grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }
  .nav { padding: 22px; }
  .nav.scrolled { padding: 15px 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__badge { left: 16px; bottom: 24px; }
  .about__image { height: 420px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 210px !important; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .gallery-item, .gallery-masonry .gallery-item.tall { height: 240px; }
  .gallery-preview__header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .contact-form { padding: 32px 22px; }
  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .process__steps { grid-template-columns: 1fr; }
  .page-hero { height: 60vh; min-height: 480px; }
  .page-hero__content { padding: 0 22px 52px; }
  .page-hero__ghost { display: none; }

  /* Lightbox touch targets */
  .lightbox__close { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; top: 16px; right: 16px; }

  /* Section-specific padding reductions */
  .hero__side-label { display: none; }
  .about { padding: 80px 0; }
  .services { padding: 80px 0; }
  .gallery-preview { padding: 80px 0; }
  .video-reel { padding: 80px 0; }
  .process { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .cta-banner { padding: 90px 0; }
  .contact-section { padding: 80px 0; }
  .about-story { padding: 80px 0; }
  .values { padding: 80px 0; }
  .services-full { padding: 64px 0; }
  .service-full-item { padding: 56px 0; }
  .about-story__img { height: 400px; }
  .gallery-full { padding: 52px 0 80px; }
  .contact-page { padding: 80px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }
  .hero__title { font-size: 2.8rem; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .hero__actions { gap: 0.8rem; }
  .container { padding: 0 18px; }
  .btn { padding: 16px 32px; }

  /* Service cards: single column on small phones */
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  /* Further section padding reductions */
  .section { padding: 64px 0; }
  .about { padding: 64px 0; }
  .cta-banner { padding: 72px 0; }
  .services { padding: 64px 0; }
  .gallery-preview { padding: 64px 0; }
  .video-reel { padding: 64px 0; }
  .process { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .contact-section { padding: 64px 0; }
  .about-story { padding: 64px 0; }
  .values { padding: 64px 0; }
  .service-full-item { padding: 44px 0; }
  .service-full-img { height: 260px; }
  .about-story__img { height: 280px; }
  .faq-item { padding: 22px 20px; }
  .contact-form { padding: 28px 18px; }
  .gallery-full { padding: 40px 0 64px; }
  .contact-page { padding: 64px 0; }
}

/* ============================================================
   UTILITIES & COMPONENT OVERRIDES
   ============================================================ */

/* Section modifiers */
.section--no-bottom { padding-bottom: 0; }

/* Container width variants */
.container--narrow { max-width: 880px; }
.container--medium { max-width: 940px; }

/* Centered content block with max-width */
.content-narrow { max-width: 800px; margin: 0 auto; }

/* Auto-center section-lead inside centered contexts */
.text-center .section-lead,
.page-hero__content .section-lead { margin: 0 auto; }

/* Section-lead margin-bottom override for intro sections */
.section-lead--spaced { margin-bottom: 1rem; }

/* Spaced reveal headers */
.reveal--spaced   { margin-bottom: 48px; }
.reveal--spaced-lg { margin-bottom: 52px; }

/* Required field asterisk */
.required-mark { color: var(--gold); }

/* Form privacy note */
.form-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* Philosophy / pull quote */
.philosophy-quote {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Contact info grid (contact page detail cards) */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  margin-bottom: 48px;
}
.contact-info-card {
  background: var(--bg-card);
  padding: 36px 28px;
}
.contact-info-card .contact-detail__label {
  display: block;
  margin-top: 1rem;
}

/* Small muted note inside contact cards */
.detail-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Social block with heading + centered icons */
.social-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}
.socials-centered {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.socials-block {
  margin-bottom: 48px;
}

/* FAQ accordion */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.faq-item {
  background: var(--bg-card);
  padding: 28px 36px;
  transition: background 0.3s;
}
.faq-summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--text-secondary);
  overflow-wrap: break-word;
}

/* Footer icon in contact list */
.footer__icon {
  margin-right: 8px;
  font-size: 0.7rem;
}
.footer__link--static { cursor: default; }

/* ============================================================
   VIEW TRANSITIONS — Gallery Lightbox Morph
   ============================================================ */
@supports (view-transition-name: none) {
  @media (prefers-reduced-motion: no-preference) {
    ::view-transition-group(gallery-active) {
      animation-duration: 0.45s;
      animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    ::view-transition-old(gallery-active),
    ::view-transition-new(gallery-active) {
      object-fit: cover;
    }
    ::view-transition-old(root),
    ::view-transition-new(root) {
      animation-duration: 0.35s;
    }
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__eyebrow,
  .hero__ornament,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__scroll,
  .hero__corner,
  .hero__side-label,
  .hero__sweep,
  .page-hero__content .eyebrow,
  .page-hero__content h1,
  .page-hero__content .section-lead,
  .page-hero__bar-line,
  .page-hero__bar-dot {
    opacity: 1 !important;
    transform: none !important;
  }
}
