/* style.css */
:root {
  --bg: #0b0c0e;
  --bg2: #07080a;
  --ink: rgba(245, 245, 247, 0.92);
  --muted: rgba(245, 245, 247, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --wrap: 1100px;
  --gutter: 22px;
  --r: 18px;
  --r2: 26px;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(900px 650px at 10% -10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(900px 650px at 110% 10%, rgba(255, 255, 255, 0.05), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

/* static grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 280px 280px;
}

a {
  color: inherit;
  text-decoration: none;
}
img,
iframe {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
.muted {
  color: var(--muted);
}
.tiny {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.skip {
  position: absolute;
  left: 14px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  transform: translateY(-160%);
  transition: transform 220ms var(--ease);
  z-index: 99999;
}
.skip:focus {
  transform: translateY(0);
  outline: none;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 14, 0.78) 0%,
    rgba(10, 11, 14, 0.34) 70%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 0;
}

/* Header brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.18em;
}
.brand__text {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.94;
  line-height: 1;
  position: relative;
  top: 2px;
  font-weight: 700;
  color: rgba(245, 245, 247, 0.95);
}

/* Logo */
.logo {
  display: block;
  object-fit: contain;
}
.logo--small {
  width: 44px;
  height: 44px;
  opacity: 0.95;
}
.logo--big {
  width: min(340px, 78vw);
  opacity: 0.92;
}

.nav {
  display: none;
  gap: 18px;
  align-items: center;
}
.nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 247, 0.92);
  font-weight: 700;
  padding: 10px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: rgba(245, 245, 247, 0.85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  width: 44px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.menu:focus-visible {
  outline: 2px solid rgba(245, 245, 247, 0.25);
  outline-offset: 2px;
}
.menu__lines {
  width: 18px;
  height: 10px;
  position: relative;
}
.menu__lines::before,
.menu__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: rgba(245, 245, 247, 0.92);
  transition: transform 220ms var(--ease), top 220ms var(--ease);
}
.menu__lines::before {
  top: 2px;
}
.menu__lines::after {
  top: 7px;
}

.header.is-open .nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 72px;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 13, 16, 0.92);
  box-shadow: var(--shadow);
}
.header.is-open .menu__lines::before {
  top: 5px;
  transform: rotate(45deg);
}
.header.is-open .menu__lines::after {
  top: 5px;
  transform: rotate(-45deg);
}

/* anchor offset */
section[id] {
  scroll-margin-top: 92px;
}

/* Scroll reveal (simple + smooth, no glitch) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: 92px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  --hero-lift: clamp(18px, 6svh, 64px);
}
.hero--bg .hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: contrast(1.1) saturate(0.8);
  opacity: 0.62;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 620px at 50% 18%, rgba(0, 0, 0, 0.25), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.26) 45%, rgba(0, 0, 0, 0.88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 52px;
  transform: translateY(calc(var(--hero-lift) * -1));
}
.kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 12px;
  color: rgba(245, 245, 247, 0.78);
}
.title {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(56px, 12vw, 160px);
  line-height: 0.86;
  margin: 0;
  color: rgba(245, 245, 247, 0.94);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  text-rendering: geometricPrecision;
  font-kerning: normal;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  justify-content: center;
}
.btn--hero {
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.btn__arrow {
  display: inline-block;
  margin-left: 10px;
  transform: translateY(1px);
  font-size: 14px;
  line-height: 1;
}
.rule {
  margin-top: 34px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent);
}
.hero .rule {
  display: none !important;
}

/* Sections + texture */
.section {
  padding: 92px 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%);
}
.section--texture {
  position: relative;
  overflow: hidden;
}
.section--texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--texture);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: contrast(1.2) saturate(0.75);
  pointer-events: none;
}
.section--texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 14, 0.72), rgba(7, 8, 10, 0.94));
  pointer-events: none;
}
.section--texture > .wrap {
  position: relative;
  z-index: 1;
}

.head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.head h2 {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}
.subhead {
  margin: 0;
  max-width: 72ch;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* About */
.about-card {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  display: grid;
  gap: 18px;
}
.about {
  max-width: 72ch;
  display: grid;
  gap: 16px;
}
.about p {
  margin: 0;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.social-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 247, 0.82);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.social-link:focus-visible {
  outline: 2px solid rgba(245, 245, 247, 0.22);
  outline-offset: 3px;
}

/* Media */
.media {
  display: grid;
  gap: 16px;
}
.media--center {
  justify-items: center;
}
.card {
  width: 100%;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.card--portrait {
  max-width: 720px;
}
.portrait--big {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.video-card {
  max-width: 920px;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Download */
.download {
  display: block;
}
.btn--download {
  max-width: 100%;
  width: max-content;
  white-space: normal;
  text-align: center;
  justify-content: center;
  line-height: 1.35;
  word-break: break-word;
  hyphens: auto;
  overflow: visible;
  padding: 14px 18px;
}
@media (max-width: 520px) {
  .btn--download {
    width: 100%;
    padding: 16px 18px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
}

/* Contact/Bookings */
.contact {
  display: grid;
  gap: 16px;
}
.form {
  padding: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 247, 0.72);
}
input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 11, 14, 0.65);
  color: rgba(245, 245, 247, 0.92);
  padding: 12px 12px;
  font: inherit;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}
textarea {
  resize: vertical;
  min-height: 140px;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(245, 245, 247, 0.28);
  background: rgba(10, 11, 14, 0.78);
}
.form__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 6px;
}

.aside {
  display: grid;
  gap: 12px;
}
.aside__block {
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.aside__text {
  margin: 10px 0 0;
  font-size: 14px;
}
.aside__text a {
  text-decoration: underline;
  text-decoration-color: rgba(245, 245, 247, 0.28);
  text-underline-offset: 4px;
}
.aside__text a:hover {
  text-decoration-color: rgba(245, 245, 247, 0.7);
}

/* Big logo placement near bottom */
.logo-footer {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 247, 0.18);
  background: rgba(245, 245, 247, 0.92);
  color: rgba(10, 11, 14, 0.96);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
  white-space: nowrap;
  overflow: visible;
}
.btn:hover {
  transform: translateY(-2px);
  background: rgba(245, 245, 247, 0.98);
}
.btn:focus-visible {
  outline: 2px solid rgba(245, 245, 247, 0.22);
  outline-offset: 3px;
}

/* Footer */
.footer {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
  .menu {
    display: none;
  }

  .contact {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
    align-items: start;
  }

  .about-card {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: start;
    gap: 22px;
  }
  .socials {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0;
    padding-left: 18px;
    align-content: start;
  }
}

@media (max-width: 520px) {
  .kicker {
    margin-bottom: 10px;
  }
  .hero__cta {
    margin-top: 22px;
  }
  .btn--hero {
    padding: 16px 28px;
  }
  .about-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .social-link {
    transition: none;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
