:root {
  --bg: #f8f8f5;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(17, 17, 17, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #fcfcfb 0%, #f6f6f2 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
}
.eyebrow--compact { margin-bottom: 10px; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__ring {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(17,17,17,.08);
  border-top-color: #111;
  animation: spin 1s linear infinite;
}
.loader__content { text-align: center; }
.loader__content p { margin: 0 0 10px; font-size: 11px; letter-spacing: .38em; text-transform: uppercase; color: rgba(17,17,17,.45); }
.loader__content h1 { margin: 0; padding-top: 34px; font: 600 44px/1 "Cormorant Garamond", serif; }
.site-header {
  position: fixed;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1200px, calc(100% - 24px));
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
}
.brand strong { display: block; font: 600 22px/1 "Cormorant Garamond", serif; }
.brand small { display: block; margin-top: 4px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(17,17,17,.45); }
.nav { display: flex; gap: 30px; }
.nav a { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(17,17,17,.66); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px;
  border-radius: 999px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: #111; color: #fff; box-shadow: 0 12px 24px rgba(0,0,0,.12); }
.btn--light { background: #fff; color: #111; border: 1px solid var(--line); }
.btn--full { width: 100%; margin-top: 12px; }
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.06) contrast(1.02) brightness(1.06);
  transform: scale(1.04);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.72) 44%, rgba(255,255,255,.48) 100%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .22;
  background: rgba(255,255,255,.9);
}
.hero__glow--one { width: 340px; height: 340px; left: -80px; top: 20%; }
.hero__glow--two { width: 280px; height: 280px; right: 6%; bottom: 10%; }
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1.08fr .92fr;
}
.hero h1, .section h2, .browser-card h3, .social-card h3, .services-card h3 {
  font-family: "Cormorant Garamond", serif;
}
.hero h1 { margin: 0; font-size: clamp(60px, 9vw, 112px); line-height: .92; }
.hero h2 { margin: 20px 0 0; font-size: clamp(24px, 3vw, 36px); line-height: 1.18; font-weight: 600; }
.hero__text { max-width: 700px; margin: 22px 0 30px; font-size: 17px; line-height: 1.9; color: var(--muted); }
.frame {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  padding: 14px;
}
.frame img { border-radius: calc(var(--radius-xl) - 10px); object-fit: contain; background: #f5f5f1; }
.frame--hero img { min-height: 640px; max-height: 72svh; }
.section { padding: 96px 0; }
.split { display: grid; gap: 40px; align-items: center; }
.split--nomination { grid-template-columns: .92fr 1.08fr; }
.frame--poster img { min-height: 520px; max-height: 640px; }
.content-card {
  padding: 24px 8px;
}
.content-card h2, .section-heading h2, .contact-shell h2 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: .98; }
.content-card p:last-child, .section-heading p:last-child, .about-copy p, .contact-shell p { font-size: 17px; line-height: 1.9; color: var(--muted); }
.section-heading { max-width: 900px; margin-bottom: 36px; }
.section-heading--center { text-align: center; margin-inline: auto; }
.work-list { display: grid; gap: 28px; }
.browser-card {
  display: grid; grid-template-columns: .98fr 1.02fr; gap: 34px; align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.browser-card__preview {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #f5f5f0;
}
.browser-card__topbar {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.84);
}
.browser-card__topbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(17,17,17,.12); }
.browser-card__topbar small { margin-left: 10px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(17,17,17,.45); }
.browser-card__preview img { height: 360px; object-fit: contain; background: #fff; }
.page-pill {
  position: absolute; top: 16px; right: 16px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
}
.browser-card__content { padding: 10px 10px 10px 0; }
.browser-card h3 { margin: 0; font-size: clamp(34px, 5vw, 56px); line-height: 1; }
.browser-card p:last-of-type { margin: 18px 0 24px; font-size: 17px; line-height: 1.85; color: var(--muted); }
.gallery-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 42px 0 32px;
}
.gallery-row .frame img { min-height: 520px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  padding: 24px 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line);
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase; line-height: 1.6;
  box-shadow: 0 16px 36px rgba(0,0,0,.04);
}
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card {
  padding: 30px; border-radius: 28px; border: 1px solid var(--line); background: rgba(255,255,255,.94); box-shadow: var(--shadow);
}
.social-card h3 { margin: 0 0 12px; font-size: 42px; line-height: 1; }
.social-card p { margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.social-card span { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }
.contact-shell {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 32px;
  padding: 24px;
  border-radius: var(--radius-xl); border: 1px solid var(--line); background: rgba(255,255,255,.94); box-shadow: var(--shadow);
}
.contact-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-list a {
  font-size: clamp(22px, 3vw, 32px); font-family: "Cormorant Garamond", serif;
  padding: 18px 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line);
}
.services-card {
  padding: 26px; border-radius: 30px; background: linear-gradient(180deg, #fff, #f6f6f3); border: 1px solid var(--line);
}
.services-card h3 { margin: 0 0 18px; font-size: 40px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chips span {
  padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal-delay { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 980px) {
  .nav, .site-header > .btn { display: none; }
  .hero__grid, .split--nomination, .browser-card, .gallery-row, .about-grid, .social-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero__overlay { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72)); }
  .frame--hero img, .frame--poster img, .gallery-row .frame img { min-height: unset; max-height: unset; height: auto; }
}
@media (max-width: 640px) {
  .container { width: min(1200px, calc(100% - 20px)); }
  .site-header { top: 10px; width: calc(100% - 16px); padding: 12px 14px; }
  .brand strong { font-size: 20px; }
  .section { padding: 72px 0; }
  .browser-card, .contact-shell, .social-card, .frame { padding: 14px; }
  .browser-card__preview img { height: 260px; }
  .services-card, .social-card, .contact-shell, .browser-card { border-radius: 24px; }
  .stats { grid-template-columns: 1fr; }
}
