:root {
  --bg: #0f1115;
  --card: #171a20;
  --text: #f5f5f3;
  --muted: #a7adb8;
  --accent: #c7a56a;
  --accent-rgb: 199, 165, 106;
  --line: rgba(245, 245, 243, 0.11);
  --max: 1440px;
  --pad: clamp(22px, 4vw, 72px);
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(var(--accent-rgb), .08), transparent 27rem),
    var(--bg);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

::selection { background: var(--accent); color: #0f1115; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.ambient {
  position: fixed;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .05;
  z-index: -1;
}
.ambient--one { background: var(--accent); top: -20vw; right: -18vw; }
.ambient--two { background: #7584a3; bottom: -28vw; left: -22vw; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 76px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(15, 17, 21, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.04em;
}
.brand span { color: var(--accent); }
.nav { display: flex; gap: 34px; font-size: 13px; color: var(--muted); }
.nav a { transition: color .25s ease; }
.nav a:hover { color: var(--text); }
.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(var(--accent-rgb), .45);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  transition: background .25s ease, color .25s ease;
}
.header-cta:hover { background: var(--accent); color: var(--bg); }

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(96px, 11vw, 168px) var(--pad);
  position: relative;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
  padding-top: 120px;
  padding-bottom: 90px;
}
.hero__copy { position: relative; z-index: 2; }
.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .91;
}
.hero h1 { font-size: clamp(60px, 7.2vw, 112px); }
.hero h1 span { color: var(--accent); }
.hero__lead {
  max-width: 760px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 12px; margin-top: 38px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent); color: #111216; }
.button--primary:hover { background: #d4b477; }
.button--ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.025); }
.button--ghost:hover { border-color: rgba(var(--accent-rgb), .45); color: var(--accent); }
.button--large { min-height: 58px; padding-inline: 30px; }

.hero__visual { display: flex; justify-content: flex-end; }
.portrait-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--card);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .42);
  will-change: transform;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101216;
}
.portrait-frame__glow {
  position: absolute;
  inset: auto -20% -25% -20%;
  height: 48%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), .24), transparent 65%);
  pointer-events: none;
}
.portrait-frame__caption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  color: rgba(245,245,243,.66);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue span { width: 40px; height: 1px; background: var(--accent); }

.portfolio { max-width: 1600px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 36px 72px;
  align-items: end;
  margin-bottom: 60px;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; }
.section-heading h2 { font-size: clamp(50px, 6.4vw, 92px); }
.section-heading > p:not(.eyebrow) { margin: 0 0 8px; color: var(--muted); line-height: 1.7; }

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.media-card { margin: 0; }
.media-card__canvas {
  position: relative;
  min-height: 330px;
  height: clamp(330px, 42vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
}
.media-card__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow .45s ease;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s var(--ease), filter .7s ease;
}
.media-card:hover img { transform: scale(1.025); filter: brightness(1.04); }
.media-card:hover .media-card__canvas::after { box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), .28); }
.media-card figcaption {
  padding: 14px 2px 0;
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.media-card figcaption span { color: var(--accent); }

.video-heading {
  margin: clamp(90px, 10vw, 150px) 0 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.video-heading .eyebrow { margin-bottom: 12px; }
.video-heading h3 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -.05em;
}
.video-heading > p { max-width: 390px; color: var(--muted); line-height: 1.6; margin: 0; }
.video-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px) 18px;
  width: 100%;
  overflow: visible;
}
.video-card {
  width: 100%;
  min-width: 0;
}
.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #090a0d;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-frame video {
  object-fit: contain;
}
.video-frame__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}
.video-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 13px;
  font-size: 12px;
}
.video-card__meta span { color: var(--accent); }
.video-card__meta strong { font-weight: 500; color: var(--muted); }

.contact {
  max-width: none;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), .055), transparent 42%),
    #111319;
  border-block: 1px solid var(--line);
}
.contact__inner { width: min(100%, var(--max)); margin: 0 auto; padding-inline: var(--pad); }
.contact h2 { font-size: clamp(64px, 10vw, 148px); }
.contact h2 span { color: var(--accent); }
.contact__text { max-width: 660px; margin: 42px 0 54px; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }
.contact__links { border-top: 1px solid var(--line); margin-bottom: 42px; }
.contact__links a {
  min-height: 96px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, padding .35s var(--ease), background .25s ease;
}
.contact__links a:hover { color: var(--accent); padding-inline: 15px; background: rgba(255,255,255,.018); }
.contact__label { color: var(--muted); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.contact__links strong { font-family: Manrope, Arial, sans-serif; font-size: clamp(22px, 3.2vw, 42px); font-weight: 500; letter-spacing: -.035em; }
.contact__arrow { font-size: 24px; }

.benefits { padding-bottom: clamp(90px, 11vw, 160px); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.benefit-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 4vw, 50px);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.075);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.benefit-card:hover { transform: translateY(-5px); border-color: rgba(var(--accent-rgb), .35); background: #1a1d24; }
.benefit-card__number { position: absolute; top: 26px; right: 28px; color: rgba(245,245,243,.25); font-size: 11px; letter-spacing: .14em; }
.benefit-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), .4);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 66px;
}
.benefit-card h3 { max-width: 480px; margin: 0 0 20px; font-family: Manrope, Arial, sans-serif; font-size: clamp(25px, 3vw, 38px); line-height: 1.12; letter-spacing: -.04em; }
.benefit-card p { max-width: 570px; margin: 0; color: var(--muted); line-height: 1.7; }

.footer {
  min-height: 110px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.footer .brand { color: var(--text); }
.footer p { margin: 0; }
.footer p:last-child { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 140px; }
  .hero__copy { max-width: 900px; }
  .hero__visual { justify-content: flex-start; }
  .portrait-frame { width: min(82vw, 560px); }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: 1fr; gap: 46px; }
  .media-card__canvas { height: min(112vw, 760px); }
  .video-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { height: 66px; }
  .nav { display: none; }
  .hero { padding-top: 112px; gap: 52px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero__lead { margin-top: 28px; line-height: 1.65; }
  .portrait-frame { width: 100%; }
  .section { padding-top: 94px; padding-bottom: 94px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: clamp(46px, 13.5vw, 66px); }
  .media-card__canvas { min-height: 310px; height: auto; aspect-ratio: 4 / 5; }
  .video-heading { align-items: flex-start; flex-direction: column; margin-top: 84px; }
  .video-strip {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .video-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }
  .contact h2 { font-size: clamp(56px, 17vw, 84px); }
  .contact__links a { grid-template-columns: 1fr auto; gap: 8px 16px; padding: 20px 0; }
  .contact__label { grid-column: 1 / -1; }
  .contact__links strong { font-size: clamp(22px, 7vw, 30px); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 310px; }
  .footer { grid-template-columns: 1fr; text-align: left; }
  .footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
