/* ============================================================
   Major Amar Sinha — Master of Ceremonies
   LIQUID GLASS THEME — Warm Maroon + Gold
   Premium, refractive, depth-forward design
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Colors */
  --bg-deep: #120808;
  --bg-surface: #1E1010;
  --bg-elevated: #2A1818;
  --text-primary: #FFF5F0;
  --text-secondary: rgba(255, 245, 240, 0.72);
  --text-muted: rgba(255, 245, 240, 0.4);
  --accent: #D4AF37;
  --accent-warm: #E8C96A;
  --accent-deep: #A32D2D;
  --accent-deep-bright: #C43A3A;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.14);
  --glass-shadow: rgba(0, 0, 0, 0.55);

  /* Type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 36px;
  --s-12: 42px;
  --s-16: 52px;
  --s-20: 64px;
  --s-24: 72px;
  --s-32: 96px;

  /* Layout */
  --container-max: 1100px;
  --container-pad: 24px;

  /* Glass */
  --glass-blur: 28px;
  --glass-radius: 20px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 160ms;
  --dur: 240ms;
  --dur-slow: 480ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--accent-warm); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; color: var(--text-primary); font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Background Effects ---------- */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 15% 15%, rgba(163, 45, 45, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 75%, rgba(212, 175, 55, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(80, 20, 20, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: float 22s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.orb--1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(163, 45, 45, 0.3), transparent 70%);
  top: -120px; left: -120px;
}
.orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  bottom: -100px; right: -100px;
  animation-delay: -8s;
}
.orb--3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(120, 30, 30, 0.25), transparent 70%);
  top: 40%; left: 55%;
  animation-delay: -15s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(35px, -20px) scale(1.06); }
  66% { transform: translate(-20px, 30px) scale(0.94); }
}

/* ---------- Glass Panel ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4) brightness(1.05);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4) brightness(1.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow:
    0 8px 32px var(--glass-shadow),
    0 2px 8px rgba(212, 175, 55, 0.03),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    inset 0 0 60px rgba(212, 175, 55, 0.01);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.glass::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, rgba(212, 175, 55, 0.3) 30%, rgba(255, 255, 255, 0.15) 50%, rgba(212, 175, 55, 0.3) 70%, transparent 90%);
  pointer-events: none;
}
.glass--strong {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 80px rgba(212, 175, 55, 0.02);
}
.glass--subtle {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Refraction shimmer */
.glass-refract {
  position: relative;
  overflow: hidden;
}
.glass-refract::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.035) 60deg,
    transparent 120deg,
    rgba(163, 45, 45, 0.03) 180deg,
    transparent 240deg,
    rgba(255, 255, 255, 0.02) 300deg,
    transparent 360deg
  );
  animation: refract-spin 25s linear infinite;
  pointer-events: none;
}
@keyframes refract-spin {
  to { transform: rotate(360deg); }
}

/* Hover glow */
.glass-glow {
  position: relative;
}
.glass-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, transparent 35%, transparent 65%, rgba(163, 45, 45, 0.12) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.glass-glow:hover::before { opacity: 1; transform: scale(1.01); }
.glass-glow:hover {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, .h1 { font-size: clamp(40px, 6.2vw, 72px); }
h1, .h1 { font-size: clamp(32px, 3.8vw, 48px); }
h1, .h1 { font-size: clamp(20px, 2vw, 26px); }
h2, .h2 { font-size: clamp(20px, 2vw, 26px); }
h3, .h3 { font-size: clamp(13px, 1.1vw, 15px); }
.lede { font-size: 16px; line-height: 1.6; color: var(--text-secondary); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--s-24) 0; }
.section--tight { padding: var(--s-16) 0; }
@media (max-width: 720px) {
  .section { padding: var(--s-16) 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), #B8962E);
  color: #120808;
  border: none;
  font-weight: 700;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
  color: #120808;
}
.btn--primary:active { transform: translateY(1px); }
.btn--glass {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--glass:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
}
.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--maroon {
  background: linear-gradient(135deg, #A32D2D, #7A1E1E);
  color: var(--text-primary);
  border: none;
}
.btn--maroon:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(163, 45, 45, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 0 var(--s-2);
  min-height: auto;
  border: none;
}
.btn--ghost::after { content: " \2192"; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 860px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) var(--s-6);
  gap: var(--s-4);
  border-radius: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.nav__brand:hover { color: var(--text-primary); }
.nav__badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1a1010;
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.nav__badge::after { content: "AS"; display: block; }
.nav__brand-name { display: none; }
@media (min-width: 480px) { .nav__brand-name { display: inline; } }
.nav__links {
  display: none;
  align-items: center;
  gap: var(--s-4);
}
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a.is-active { color: var(--text-primary); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
}
.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
}
@media (min-width: 900px) { .nav__toggle { display: none; } }
.nav__toggle svg { width: 20px; height: 20px; }
.nav__mobile {
  display: none;
  border-top: 1px solid var(--glass-border);
  background: rgba(18, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--s-4) var(--container-pad) var(--s-6);
  border-radius: 0 0 16px 16px;
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  padding: 14px 0;
  color: var(--text-primary);
  font-size: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: var(--s-4); width: 100%; }

/* ---------- Hero ---------- */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 110px 0 var(--s-10);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-16); }
}
.hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--s-4);
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 100px;
}
.hero__title {
  font-size: clamp(32px, 3.2vw, 42px);
  margin-bottom: var(--s-6);
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  color: var(--text-secondary);
  margin-bottom: var(--s-8);
  max-width: 52ch;
  font-size: 14px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-elevated) url("../images/hero.jpg") 90% center / cover no-repeat;
  border: 1px solid var(--glass-border);
  margin-top: 24px;
}
.hero__photo::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 180deg, transparent, rgba(212, 175, 55, 0.04), transparent, rgba(163, 45, 45, 0.03), transparent);
  animation: refract-spin 28s linear infinite;
  pointer-events: none;
}

/* ---------- Stat row ---------- */
.stats { padding: var(--s-8) 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (max-width: 600px) { .stats__grid { grid-template-columns: 1fr; } }
.stat-card {
  padding: var(--s-8);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.08);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  margin-bottom: var(--s-2);
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Section header ---------- */
.section-header {
  max-width: 640px;
  margin: 0 auto var(--s-12);
  text-align: center;
}
.section-header .eyebrow { margin-bottom: var(--s-3); }
.section-header h2 { margin-bottom: var(--s-4); }
.section-header p { color: var(--text-secondary); }

/* ---------- Card grid (services teaser) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  padding: var(--s-8);
  transition: all 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.06);
}
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--accent);
  margin-bottom: var(--s-6);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 20px; margin-bottom: var(--s-3); font-family: var(--font-body); font-weight: 600; }
.card h3 { font-size: 16px; margin-bottom: var(--s-3); font-family: var(--font-body); font-weight: 600; }
.card p { color: var(--text-secondary); font-size: 16px; line-height: 1.6; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: start;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--s-16); }
}
.about__photo {
  aspect-ratio: 4/5;
  background: var(--bg-elevated) url("../images/about.jpg") center/cover no-repeat;
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .about__photo { position: sticky; top: calc(80px + var(--s-6)); }
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 8, 8, 0.4) 100%);
  pointer-events: none;
}
.about__body h2 { margin-bottom: var(--s-6); }
.about__body p { margin-bottom: var(--s-4); font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.about__body p { margin-bottom: var(--s-4); font-size: 15px; line-height: 1.65; color: var(--text-secondary); }
.about-quote {
  margin: var(--s-10) 0;
  padding: var(--s-2) 0 var(--s-2) var(--s-6);
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.4;
  color: var(--text-primary);
}
.about-closing {
  margin-top: var(--s-8) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(11.5px, 1vw, 13px) !important;
  line-height: 1.45 !important;
  color: var(--text-primary) !important;
}

/* ---------- Services detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  padding: var(--s-16) 0;
  border-bottom: 1px solid var(--glass-border);
}
@media (min-width: 800px) {
  .service-detail { grid-template-columns: 220px 1fr; gap: var(--s-16); }
}
.service-detail__label {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text-primary);
}
.service-detail__label small {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.service-detail__body p { margin-bottom: var(--s-4); font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.service-detail__body ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}
@media (min-width: 600px) {
  .service-detail__body ul { grid-template-columns: 1fr 1fr; }
}
.service-detail__body li {
  padding-left: var(--s-4);
  position: relative;
  color: var(--text-secondary);
  font-size: 16px;
}
.service-detail__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 1px;
  background: var(--accent);
}

/* ---------- Reel / Video ---------- */
.reel { padding: var(--s-24) 0; }
.video-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}
@media (min-width: 800px) {
  .video-gallery { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
}
.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0505;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}
.video-card__frame video,
.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
  border-radius: 16px;
}
.video-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--glass-border);
}
.video-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
.video-card__type {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.video-card__caption {
  margin-top: var(--s-2);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.video-gallery--clips { margin-top: var(--s-8); }
@media (min-width: 800px) {
  .video-gallery--clips { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}
.video-card--clip .video-card__caption {
  margin-top: var(--s-3);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  padding: var(--s-8);
  transition: all 0.3s ease;
}
.quote:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.12);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: var(--s-2);
}
.quote__body {
  font-family: var(--font-display);
  /* Upright and a step larger than the original italic 13-15px — Playfair's
     italics get thin and hard to read at small sizes on the dark background. */
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: var(--s-6);
  font-style: normal;
}
.quote__body p + p { margin-top: var(--s-4); }
.quote:not(.is-open) .quote__body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.quote__toggle {
  display: inline-block;
  background: none;
  border: none;
  padding: 0 0 2px;
  margin: calc(-1 * var(--s-3)) 0 var(--s-6);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--accent);
  cursor: pointer;
}
.quote__toggle:hover { color: var(--accent-warm); border-color: var(--accent-warm); }
.quote__meta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quote__meta strong {
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Contact / form ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 0.9fr; gap: var(--s-16); }
}
.contact__info h2 { margin-bottom: var(--s-6); }
.contact__info p { margin-bottom: var(--s-6); max-width: 46ch; color: var(--text-secondary); }
.contact__list {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--glass-border);
}
.contact__list dt {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact__list dd {
  margin: 0;
  font-size: 16px;
  color: var(--text-primary);
}
.contact__list dd a { color: var(--text-primary); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.contact__list dd a:hover { color: var(--accent); }

/* Honeypot. Pulled off-screen rather than display:none or hidden — some
   bots skip fields that are obviously hidden, and a real submission that
   fills this is discarded by Formspree. Must stay in the stylesheet: the
   markup relies on it, and without this rule the field is simply visible. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form {
  padding: var(--s-10);
}
.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  border-radius: 10px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
/* The dropdown list itself is native browser UI. Without color-scheme the
   browser paints it for a light page — white panel — while the options
   inherit the site's near-white text, so the expanded list reads as blank
   until an option is highlighted. color-scheme: dark makes the native panel
   dark; the option rule is the explicit fallback for browsers (Firefox)
   that style options directly. Same fix for the date input's native picker. */
.field select,
.field input[type="date"] { color-scheme: dark; }
.field select option {
  color: var(--text-primary);
  background-color: var(--bg-elevated);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.03);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-items: end;
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}
.form .btn { width: 100%; margin-top: var(--s-4); }

/* ---------- CTA band ---------- */
.cta-band {
  padding: var(--s-8) 0;
  text-align: center;
}
.cta-band__inner {
  padding: var(--s-6);
  max-width: 520px;
  margin: 0 auto;
}
.cta-band h2 { margin-bottom: var(--s-4); }
.cta-band p {
  color: var(--text-secondary);
  margin-bottom: var(--s-8);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  padding: 120px 0 var(--s-8);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: var(--s-3); }
.page-hero h1 { margin-bottom: 6px; font-size: clamp(22px, 2.2vw, 28px); }
.page-hero p { max-width: 460px; margin: 0 auto; color: var(--text-secondary); font-size: 14px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: var(--s-16) 0 var(--s-10);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: start;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer__brand { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.footer__brand .nav__badge { width: 32px; height: 32px; font-size: 13px; }
.footer__brand-name { font-family: var(--font-display); font-size: 18px; color: var(--text-primary); font-weight: 600; }
.footer p { color: var(--text-muted); font-size: 14px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-4);
}
.footer ul a {
  color: var(--text-secondary);
  font-size: 14px;
  display: inline-block;
  padding: 4px 0;
}
.footer ul a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.socials { display: flex; gap: var(--s-3); }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.socials svg { width: 16px; height: 16px; }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  margin: 0;
  border: none;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #120808;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 175, 55, 0.35); }

/* ============================================================
   ENHANCED LIQUID GLASS EFFECTS
   ============================================================ */

/* ---------- Caustics / Light Refraction Layer ---------- */
.caustics {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background:
    repeating-conic-gradient(
      from 45deg at 30% 25%,
      transparent 0deg,
      rgba(212, 175, 55, 0.015) 3deg,
      transparent 6deg
    ),
    repeating-conic-gradient(
      from 120deg at 70% 70%,
      transparent 0deg,
      rgba(163, 45, 45, 0.01) 4deg,
      transparent 8deg
    );
  animation: caustics-drift 40s linear infinite;
}
@keyframes caustics-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-3%, 2%) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* ---------- Prismatic Light Band ---------- */
.prism-band {
  position: fixed;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: conic-gradient(
    from 0deg,
    rgba(212, 175, 55, 0.04),
    rgba(163, 45, 45, 0.03),
    rgba(255, 200, 100, 0.02),
    rgba(212, 175, 55, 0.04),
    rgba(180, 60, 60, 0.02),
    rgba(212, 175, 55, 0.04)
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: prism-rotate 50s linear infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}
.prism-band--2 {
  top: auto;
  bottom: -150px;
  left: auto;
  right: -150px;
  width: 500px;
  height: 500px;
  animation-direction: reverse;
  animation-duration: 60s;
  opacity: 0.4;
}
@keyframes prism-rotate {
  to { transform: rotate(360deg); }
}

/* ---------- Glass Depth Enhancement ---------- */
.glass-depth {
  position: relative;
}
.glass-depth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ---------- Specular Highlight Strip ---------- */
.glass-specular {
  position: relative;
  overflow: hidden;
}
.glass-specular::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 60%
  );
  animation: specular-sweep 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes specular-sweep {
  0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(15deg); }
  50% { transform: translateX(30%) translateY(30%) rotate(15deg); }
}

/* ---------- Enhanced Card Hover (Tilt Glow) ---------- */
.card-tilt {
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}
.card-tilt:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 40px rgba(212, 175, 55, 0.02);
  border-color: rgba(212, 175, 55, 0.2);
}

/* ---------- Animated Glass Border (Rainbow Rim) ---------- */
.glass-rim {
  position: relative;
}
.glass-rim::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    var(--rim-angle, 135deg),
    rgba(212, 175, 55, 0.25),
    rgba(163, 45, 45, 0.15),
    rgba(255, 220, 100, 0.1),
    rgba(212, 175, 55, 0.25)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: rim-rotate 6s linear infinite;
}
.glass-rim:hover::after { opacity: 1; }
@keyframes rim-rotate {
  to { --rim-angle: 495deg; }
}
@property --rim-angle {
  syntax: '<angle>';
  initial-value: 135deg;
  inherits: false;
}

/* ---------- Floating Glass Particles ---------- */
.glass-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.glass-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.1);
  animation: particle-float 20s ease-in-out infinite;
}
.glass-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 18s; }
.glass-particle:nth-child(2) { top: 25%; left: 80%; animation-delay: -4s; animation-duration: 22s; width: 3px; height: 3px; }
.glass-particle:nth-child(3) { top: 55%; left: 20%; animation-delay: -8s; animation-duration: 25s; width: 5px; height: 5px; }
.glass-particle:nth-child(4) { top: 70%; left: 65%; animation-delay: -12s; animation-duration: 20s; }
.glass-particle:nth-child(5) { top: 85%; left: 40%; animation-delay: -16s; animation-duration: 24s; width: 3px; height: 3px; }
.glass-particle:nth-child(6) { top: 35%; left: 50%; animation-delay: -6s; animation-duration: 28s; width: 2px; height: 2px; }
.glass-particle:nth-child(7) { top: 45%; left: 90%; animation-delay: -10s; animation-duration: 19s; }
.glass-particle:nth-child(8) { top: 10%; left: 60%; animation-delay: -14s; animation-duration: 26s; width: 3px; height: 3px; }
@keyframes particle-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(15px, -20px) scale(1.3); opacity: 0.7; }
  50% { transform: translate(-10px, -40px) scale(0.8); opacity: 0.3; }
  75% { transform: translate(20px, -15px) scale(1.1); opacity: 0.6; }
}

/* ---------- Enhanced Button Glass Effect ---------- */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn--primary:hover::before {
  left: 100%;
}

/* ---------- Glass Inner Glow on Focus ---------- */
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.08),
    inset 0 0 20px rgba(212, 175, 55, 0.03);
}

/* ---------- Enhanced Gallery Glass Overlay ---------- */
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 40%,
    transparent 60%,
    rgba(163, 45, 45, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(212, 175, 55, 0.06);
}

/* ---------- Enhanced Nav Glass ---------- */
.nav .glass {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(212, 175, 55, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ---------- Stat Card Glass Pulse ---------- */
.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.03) 90deg,
    transparent 180deg,
    rgba(163, 45, 45, 0.02) 270deg,
    transparent 360deg
  );
  animation: refract-spin 20s linear infinite;
  pointer-events: none;
}

/* ---------- Hero Photo Enhanced Glass Frame ---------- */
.hero__photo {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(212, 175, 55, 0.06),
    inset 0 0 80px rgba(0, 0, 0, 0.2);
}
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 30%,
    transparent 70%,
    rgba(18, 8, 8, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* ---------- Quote Card Enhanced Depth ---------- */
.quote {
  position: relative;
  overflow: hidden;
}
.quote::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.01));
  pointer-events: none;
  border-radius: inherit;
}

/* ---------- CTA Band Enhanced Glow ---------- */
.cta-band__inner {
  position: relative;
  overflow: hidden;
}
.cta-band__inner::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 255, 255, 0.2), rgba(212, 175, 55, 0.4), transparent);
  border-radius: 2px;
  filter: blur(1px);
}

/* ---------- Video Card Glass Frame ---------- */
.video-card__frame {
  position: relative;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.video-card__frame:hover {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ---------- Service Detail Glass Separator ---------- */
.service-detail {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.12), transparent) 1;
}

/* ---------- Footer Glass Enhancement ---------- */
.footer {
  border-top: none;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.2), transparent);
}

/* ---------- Smooth Page Transitions ---------- */
.reveal {
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease;
  filter: blur(4px);
}
.reveal.is-in {
  filter: blur(0);
}
