/* ========================================================================
   MONE Events — Luxury minimal site
   Colour system: obsidian base + silver / champagne metallic accents
   ======================================================================== */

:root {
  --bg: #0a0a0b;
  --bg-2: #101012;
  --bg-3: #141417;
  --ink: #f5f5f6;
  --muted: #8f8f95;
  --muted-2: #606066;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  /* Metallic */
  --silver-1: #e9e9ea;
  --silver-2: #b8b8ba;
  --champagne-1: #e6d3b3;
  --champagne-2: #b89a6c;

  --gradient-metal: linear-gradient(135deg,
    var(--silver-1) 0%,
    var(--silver-2) 35%,
    var(--champagne-1) 65%,
    var(--champagne-2) 100%);

  --gradient-metal-soft: linear-gradient(135deg,
    rgba(233,233,234,0.92) 0%,
    rgba(184,184,186,0.85) 35%,
    rgba(230,211,179,0.9) 65%,
    rgba(184,154,108,0.88) 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --container: 1320px;
  --pad-x: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overscroll-behavior-y: none;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a, button, .tile, .service, .social__tile, .filter, .brand-logo {
  touch-action: manipulation;
}

body::before {
  /* Ambient background sheen */
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 80% -10%, rgba(230,211,179,0.06), transparent 60%),
    radial-gradient(900px 700px at -10% 20%, rgba(200,200,210,0.05), transparent 60%),
    radial-gradient(1200px 800px at 50% 110%, rgba(184,154,108,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Grain overlay — subtle */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --- Typography helpers --- */

em {
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: 0.005em;
  background: var(--gradient-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Metallic gradient fill without changing font/style */
.metallic {
  background: var(--gradient-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.section__num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}

.section__head {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section__title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: -0.025em;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 56px;
  max-width: 18ch;
}

/* ==========================  NAV  ========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad-x);
  z-index: 50;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10,10,11,0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad-x);
}

.nav__brand {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.nav__wordmark .metallic {
  margin-left: 0.12em;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gradient-metal);
  transition: width .4s var(--ease-out);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.nav__cta:hover {
  border-color: rgba(230,211,179,0.5);
  background: rgba(230,211,179,0.05);
  transform: translateY(-1px);
}

.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
  }
  .nav__burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform .3s var(--ease);
  }
  body.menu-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: center;
}
.mobile-menu__foot {
  position: absolute;
  bottom: 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ==========================  BUTTONS  ========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .4s var(--ease-out), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn--primary {
  color: var(--bg);
  background: var(--gradient-metal);
  border: 1px solid transparent;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, #e4d6bd 50%, #b89a6c 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { transform: translateY(-2px); }

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: transparent;
}
.btn--ghost:hover {
  border-color: rgba(230,211,179,0.55);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 38px;
  font-size: 14px;
}

/* ==========================  HERO  ========================== */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
  background: #000; /* while video loads */
}

/* Background video + readability veil */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.55) contrast(1.02);
  animation: heroVideoFade 1.4s var(--ease-out) both;
}

@keyframes heroVideoFade {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* Layered dark veil — keeps headline legible and unifies with brand */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.82) 70%, rgba(10,10,11,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.2) 40%, rgba(10,10,11,0.9) 100%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(600px 400px at 50% 30%, rgba(230,211,179,0.1), transparent 60%),
    radial-gradient(800px 500px at 50% 80%, rgba(184,184,186,0.06), transparent 60%);
  animation: heroGlow 14s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.hero__inner { position: relative; z-index: 2; }
.hero__scroll { z-index: 2; }

/* Reduced motion only — keep video playing on mobile for the premium feel */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__media {
    background-image: url("assets/video/hero-poster.jpg");
    background-size: cover;
    background-position: center;
  }
}

@keyframes heroGlow {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1);    opacity: 0.9; }
  100% { transform: translate3d(2%, 1%, 0)  scale(1.05); opacity: 1; }
}

.hero__inner {
  position: relative;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: clamp(140px, 14vw, 200px);
  height: clamp(140px, 14vw, 200px);
  border-radius: 24px;
  margin-bottom: 48px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 100px -20px rgba(230,211,179,0.25);
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
}

.hero__title em {
  font-weight: 300;
  font-size: 1.02em;
}

.hero__sub {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  margin: 0 0 44px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--line-2), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--champagne-1));
  animation: scrollDot 2.4s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ==========================  SECTIONS  ========================== */

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(90px, 13vw, 160px) var(--pad-x);
}

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about__kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 0;
}

.about__body p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  margin: 0 0 24px;
  color: var(--ink);
}
.about__body--muted {
  color: var(--muted) !important;
}

.about__meta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about__meta > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__meta span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.about__meta strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__meta { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .about__meta { grid-template-columns: 1fr 1fr; }
}

/* --- Services --- */
/* Desktop: 3 cards top row, 2 cards bottom row centered.
   Achieved via 6-col grid where each card spans 2;
   bottom row starts at column 2 so the pair sits centered. */
.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.services__grid .service { grid-column: span 2; }
.services__grid .service:nth-child(4) { grid-column: 2 / span 2; }
.services__grid .service:nth-child(5) { grid-column: 4 / span 2; }

.service {
  /* Equal heights via flex column; tags anchored to bottom for alignment */
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 36px 32px;

  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,255,255,0.025) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #121215, #0d0d10);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .5s var(--ease-out),
    border-color .4s var(--ease),
    box-shadow .5s var(--ease);
}

/* Pointer-follow inner sheen */
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px 220px at var(--mx, 50%) var(--my, 0%),
              rgba(230,211,179,0.09), transparent 65%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: 0;
}

/* Metallic top accent — animates in on hover */
.service::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-metal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease-out);
  z-index: 2;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(230,211,179,0.25);
  box-shadow:
    0 20px 60px -30px rgba(230,211,179,0.18),
    0 0 0 1px rgba(230,211,179,0.06) inset;
}
.service:hover::before { opacity: 1; }
.service:hover::after  { transform: scaleX(1); }

/* HEAD — index + unified mark */
.service__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.service__index {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Single consistent metallic dot — same across all 5 cards */
.service__mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-metal);
  opacity: 0.55;
  transition: opacity .4s var(--ease), transform .5s var(--ease-out);
}
.service:hover .service__mark {
  opacity: 1;
  transform: scale(1.15);
}

/* BODY — consistent hierarchy */
.service__body {
  position: relative;
  z-index: 1;
}

.service h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}

.service p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  /* Keep descriptions to a stable 3–4 line block for visual balance */
}

/* TAGS — uniform pill chips, bottom-anchored */
.service__tags {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.service__tags li {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,246,0.85);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}

.service:hover .service__tags li {
  border-color: rgba(230,211,179,0.22);
  background: rgba(230,211,179,0.04);
}

/* Responsive layout */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .services__grid .service { grid-column: span 2; }
  .services__grid .service:nth-child(4) { grid-column: 1 / span 2; }
  .services__grid .service:nth-child(5) { grid-column: 3 / span 2; }
}

@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service,
  .services__grid .service:nth-child(4),
  .services__grid .service:nth-child(5) { grid-column: 1 / -1; }
  .service { min-height: 0; padding: 30px 26px; }
}

/* --- Work / Portfolio --- */
.work__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.work__top .section__title { margin-bottom: 0; }

.work__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--line-2); }
.filter.is-active {
  color: var(--bg);
  background: var(--gradient-metal);
  border-color: transparent;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  grid-row: span 1;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform .6s var(--ease-out), border-color .4s var(--ease), opacity .4s var(--ease);
  display: block;
}

.tile.is-hidden {
  display: none;
}

.tile--tall  { grid-row: span 2; }
.tile--wide  { grid-column: span 2; }

.tile__img {
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
  background-size: cover;
  background-position: center;
}

/* Abstract "photography" placeholders — rich, on-brand, no stock images */
.tile__img--1 {
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(230,211,179,0.35), transparent 60%),
    radial-gradient(500px 400px at 80% 80%, rgba(184,154,108,0.25), transparent 60%),
    linear-gradient(135deg, #1a1a1d, #0a0a0b 70%);
}
.tile__img--2 {
  background:
    radial-gradient(400px 250px at 50% 30%, rgba(233,233,234,0.22), transparent 55%),
    radial-gradient(500px 300px at 30% 80%, rgba(150,150,160,0.18), transparent 60%),
    linear-gradient(180deg, #131316, #0a0a0b);
}
.tile__img--3 {
  background:
    radial-gradient(500px 400px at 70% 30%, rgba(230,211,179,0.2), transparent 55%),
    radial-gradient(400px 300px at 10% 90%, rgba(120,120,130,0.2), transparent 55%),
    linear-gradient(160deg, #18181c, #0d0d10);
}
.tile__img--4 {
  background:
    radial-gradient(700px 400px at 50% 20%, rgba(184,154,108,0.28), transparent 60%),
    radial-gradient(400px 200px at 50% 80%, rgba(230,211,179,0.18), transparent 55%),
    linear-gradient(200deg, #1c1a18, #0a0a0b 70%);
}
.tile__img--5 {
  background:
    radial-gradient(700px 380px at 30% 50%, rgba(230,211,179,0.28), transparent 55%),
    radial-gradient(600px 300px at 90% 40%, rgba(184,184,186,0.2), transparent 55%),
    linear-gradient(120deg, #17171a, #0a0a0b 65%);
}
.tile__img--6 {
  background:
    radial-gradient(450px 350px at 25% 70%, rgba(200,200,210,0.2), transparent 55%),
    radial-gradient(500px 300px at 80% 20%, rgba(230,211,179,0.18), transparent 55%),
    linear-gradient(170deg, #15151a, #0a0a0b 70%);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: opacity .5s var(--ease);
}

.tile:hover .tile__img { transform: scale(1.06); filter: brightness(1.05); }
.tile:hover { border-color: var(--line-2); }

/* Video tile — self-hosted reel plays silently, looped */
.tile__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
}
.tile:hover .tile__video { transform: scale(1.06); filter: brightness(1.05); }

.tile--video::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  z-index: 2;
  background: rgba(10,10,11,0.5);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}
.tile--video > .tile__meta::before {
  content: "";
  position: absolute;
  top: -43px;
  right: 23px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--champagne-1);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  z-index: 3;
  transform: translate(1px, 0);
}

.tile__meta {
  position: absolute;
  left: 22px;
  bottom: 20px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(6px);
  transition: transform .5s var(--ease);
}
.tile:hover .tile__meta { transform: translateY(0); }

.tile__meta span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne-1);
}
.tile__meta h4 {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

@media (max-width: 960px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 2; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .tile--wide, .tile--tall { grid-column: span 1; grid-row: span 1; }
}

/* --- Why MONE --- */
.why__title { max-width: 14ch; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why__item {
  padding: 32px 28px 36px;
  border-top: 1px solid var(--line);
  position: relative;
  transition: border-color .5s var(--ease);
}
.why__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-metal);
  transition: width .7s var(--ease-out);
}
.why__item:hover::before { width: 100%; }

.why__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  background: var(--gradient-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 20px;
}

.why__item h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.why__item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

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

/* --- CTA --- */
.cta {
  padding: clamp(100px, 14vw, 180px) var(--pad-x);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
}

/* Background video + readability veil — mirrors hero treatment */
.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.5) contrast(1.02);
}
.cta__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.85) 70%, rgba(10,10,11,0.96) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.35) 40%, rgba(10,10,11,0.92) 100%);
}

.cta__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(230,211,179,0.1), transparent 60%),
    radial-gradient(1200px 500px at 50% 120%, rgba(184,154,108,0.08), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Reduced motion only — poster fallback for users who opt out of animation */
@media (prefers-reduced-motion: reduce) {
  .cta__video { display: none; }
  .cta__media {
    background-image: url("assets/video/cta-poster.jpg");
    background-size: cover;
    background-position: center;
  }
}

.cta__title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 6px 0 4px;
}

.cta__sub {
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 16px);
  margin: 0 0 22px;
  max-width: 38ch;
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact__title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}

.contact__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 6px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .5s var(--ease), color .3s var(--ease);
}
.contact__row::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gradient-metal);
  transition: width .6s var(--ease-out);
}
.contact__row:hover {
  padding-left: 18px;
  padding-right: 18px;
}
.contact__row:hover::before { width: 100%; }
.contact__row:hover .contact__arrow {
  transform: translate(4px, -4px);
  color: var(--champagne-1);
}

.contact__row-label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
}
.contact__tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}

.contact__value {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.01em;
}

.contact__arrow {
  color: var(--muted-2);
  transition: transform .4s var(--ease-out), color .3s var(--ease);
}

@media (max-width: 780px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__row { grid-template-columns: 1fr auto; }
  .contact__value {
    grid-column: 1 / -1;
    font-size: 14px;
  }
}

/* --- Contact: Map --- */
.contact__map {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.contact__map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.contact__map-head .section__label { display: block; margin-bottom: 10px; }
.contact__map-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
}
.contact__map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.contact__map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  border: 0;
  /* Subtle dark pass so Maps blends with the brand */
  filter: grayscale(0.45) contrast(0.92) brightness(0.85);
  transition: filter .5s var(--ease);
}
.contact__map-frame:hover iframe {
  filter: grayscale(0.15) contrast(1) brightness(0.95);
}

/* ==========================  SOCIAL / INSTAGRAM  ========================== */
.social__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.social__title { margin-bottom: 0; max-width: 22ch; }
.social__follow { white-space: nowrap; }

.social__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.social__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform .5s var(--ease-out), border-color .4s var(--ease);
}

.social__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s var(--ease-out), filter .5s var(--ease);
  display: block;
}

/* Tiny video/reel indicator — always visible, low-key */
.social__tile--video::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  z-index: 2;
  background: rgba(10,10,11,0.55);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}
.social__tile--video::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 19px;
  width: 0;
  height: 0;
  z-index: 3;
  border-left: 7px solid var(--champagne-1);
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
  transform: translate(1px, 0);
}

/* Designed placeholders — replace when wiring a live feed */
.social__img--1 { background:
  radial-gradient(400px 260px at 30% 20%, rgba(230,211,179,0.25), transparent 60%),
  radial-gradient(400px 260px at 80% 80%, rgba(184,154,108,0.2), transparent 60%),
  linear-gradient(135deg,#1a1a1d,#0a0a0b 70%); }
.social__img--2 { background:
  radial-gradient(420px 260px at 60% 40%, rgba(233,233,234,0.22), transparent 55%),
  radial-gradient(360px 240px at 20% 85%, rgba(140,140,150,0.18), transparent 60%),
  linear-gradient(180deg,#131316,#0a0a0b); }
.social__img--3 { background:
  radial-gradient(500px 300px at 80% 20%, rgba(230,211,179,0.22), transparent 55%),
  radial-gradient(340px 260px at 15% 85%, rgba(120,120,130,0.2), transparent 55%),
  linear-gradient(160deg,#18181c,#0d0d10); }
.social__img--4 { background:
  radial-gradient(500px 280px at 50% 30%, rgba(184,154,108,0.26), transparent 60%),
  radial-gradient(300px 220px at 50% 80%, rgba(230,211,179,0.18), transparent 55%),
  linear-gradient(210deg,#1c1a18,#0a0a0b 70%); }
.social__img--5 { background:
  radial-gradient(500px 300px at 30% 55%, rgba(230,211,179,0.26), transparent 55%),
  radial-gradient(420px 260px at 85% 40%, rgba(184,184,186,0.18), transparent 55%),
  linear-gradient(120deg,#17171a,#0a0a0b 65%); }
.social__img--6 { background:
  radial-gradient(380px 300px at 25% 70%, rgba(200,200,210,0.2), transparent 55%),
  radial-gradient(420px 260px at 80% 20%, rgba(230,211,179,0.2), transparent 55%),
  linear-gradient(170deg,#15151a,#0a0a0b 70%); }

.social__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-1);
  opacity: 0;
  transition: opacity .4s var(--ease), backdrop-filter .4s var(--ease);
  background: linear-gradient(180deg, rgba(10,10,11,0.15), rgba(10,10,11,0.5));
  backdrop-filter: blur(0);
}
.social__tile:hover .social__overlay { opacity: 1; backdrop-filter: blur(2px); }
.social__tile:hover .social__img { transform: scale(1.06); }
.social__tile:hover { border-color: rgba(230,211,179,0.3); transform: translateY(-2px); }

@media (max-width: 900px) {
  .social__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .social__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================  BRANDS  ========================== */

.brands {
  padding-top: clamp(80px, 11vw, 140px);
  padding-bottom: clamp(80px, 11vw, 140px);
}
.brands__title {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 20ch;
}

.brands__marquee {
  position: relative;
  overflow: hidden;
  /* Fade the edges so logos dissolve into the background */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brands__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: brandsScroll 60s linear infinite;
}
.brands__marquee:hover .brands__track { animation-play-state: paused; }

@keyframes brandsScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.brands__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(48px, 6vw, 96px);
  padding: 0 clamp(24px, 3vw, 48px);
}

.brand-logo {
  height: clamp(28px, 3.2vw, 42px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.15);
  transition: opacity .45s var(--ease), filter .45s var(--ease), transform .45s var(--ease);
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; }
  .brands__group + .brands__group { display: none; } /* hide the duplicate, keep static */
  .brands__group { flex-wrap: wrap; justify-content: center; }
}

/* ==========================  FOOTER  ========================== */

.footer {
  padding: 40px var(--pad-x) calc(50px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.footer__meta {
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  flex-wrap: wrap;
}

.footer__credit a {
  color: var(--muted);
  background: var(--gradient-metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transition: opacity .3s var(--ease);
}
.footer__credit a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gradient-metal);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.footer__credit a:hover::after { opacity: 0.6; }

/* ==========================  REVEAL  ========================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger reveal children slightly */
.service.reveal:nth-child(1) { transition-delay: .05s; }
.service.reveal:nth-child(2) { transition-delay: .1s; }
.service.reveal:nth-child(3) { transition-delay: .15s; }
.service.reveal:nth-child(4) { transition-delay: .2s; }
.service.reveal:nth-child(5) { transition-delay: .25s; }

.why__item.reveal:nth-child(1) { transition-delay: .05s; }
.why__item.reveal:nth-child(2) { transition-delay: .15s; }
.why__item.reveal:nth-child(3) { transition-delay: .25s; }
.why__item.reveal:nth-child(4) { transition-delay: .35s; }

/* ==========================  MOBILE POLISH  ========================== */

/* Hide hero scroll indicator whenever it could overlap the CTA buttons.
   Kicks in on laptops set to non-max height, mobile landscape, and short desktops. */
@media (max-height: 900px) {
  .hero__scroll { display: none; }
}

/* Phones — tighten CTA stack and spacing */
@media (max-width: 520px) {
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }

  .nav { padding: 14px var(--pad-x); }
  .nav.is-scrolled { padding: 10px var(--pad-x); }
  .nav__brand { font-size: 16px; letter-spacing: 0.16em; }

  /* Ensure filter pills are finger-sized */
  .filter { padding: 11px 16px; font-size: 11.5px; }

  /* Brands marquee — slower on small screens so logos are readable */
  .brands__track { animation-duration: 45s; }
  .brand-logo { height: 26px; }

  /* Contact map — taller proportion on narrow screens */
  .contact__map-frame iframe { height: 320px; }

  /* Footer meta wraps nicely */
  .footer__inner { justify-content: center; text-align: center; }
  .footer__meta { justify-content: center; }
}

/* Extra-small phones (≤380px) — a bit more breathing room */
@media (max-width: 380px) {
  :root { --pad-x: 18px; }
  .hero__logo { width: 120px; height: 120px; }
  .section__head { gap: 16px; }
}

/* Landscape phones — short + wide */
@media (max-width: 900px) and (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 120vh; padding: 90px var(--pad-x) 60px; }
  .hero__scroll { display: none; }
}

/* Disable sticky hover states on touch-only devices — tap doesn't leave visual hover residue */
@media (hover: none) {
  .tile:hover .tile__img,
  .tile:hover .tile__video,
  .social__tile:hover .social__img,
  .service:hover { transform: none; }
  .service:hover::before { opacity: 0; }
  .service:hover::after { transform: scaleX(0); }
  .tile__meta { transform: translateY(0); }
  .brand-logo:hover { opacity: 0.55; filter: grayscale(1) brightness(1.15); transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Selection */
::selection {
  background: rgba(230,211,179,0.35);
  color: #fff;
}
