:root {
  --font-geist-sans: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #090b0c;
  --ink-soft: #121516;
  --paper: #f2f0ea;
  --paper-deep: #e5e1d7;
  --accent: #ffb400;
  --accent-light: #ffd36c;
  --white: #ffffff;
  --muted: #939799;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}
body::selection { background: var(--accent); color: var(--ink); }
a { color: inherit; text-decoration: none; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1740px, calc(100% - 80px));
  height: 96px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.wordmark { display: flex; align-items: center; flex: 0 0 auto; }
.wordmark picture { display: block; }
.wordmark img {
  display: block;
  width: clamp(210px, 17vw, 268px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; margin-right: 38px; }
.main-nav a {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--accent); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 99px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.header-cta:hover, .header-cta:focus-visible { transform: translateY(-2px); background: var(--accent-light); }
.external-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 800px;
  height: min(820px, 100vh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.15) 0%, rgba(5, 7, 8, 0.3) 35%, rgba(5, 7, 8, 0.86) 66%, rgba(5, 7, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 7, 8, 0.78) 0%, transparent 40%);
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(620px, 42vw);
  transform: translate(-4%, -40%);
}
.eyebrow, .kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--accent); }
.eyebrow > span { width: 38px; height: 2px; background: var(--accent); }
.hero h1, .section-heading h2, .portfolio-statement h2, .services-title h2, .final-cta h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 5.1vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 780;
}
h1 em, h2 em { color: var(--accent); font-style: normal; font-weight: 420; }
.hero-copy {
  width: min(540px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--ink); box-shadow: 0 18px 50px rgba(255, 180, 0, 0.16); }
.button-primary:hover, .button-primary:focus-visible { background: var(--accent-light); }
.button-ghost { border: 1px solid rgba(255, 255, 255, 0.32); color: var(--white); backdrop-filter: blur(12px); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.arrow-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.store-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.store-features span { display: flex; align-items: center; gap: 8px; }
.store-features span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue i { width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; position: relative; }
.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 17px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(45deg);
}

.purchase-flow { padding: 42px 0; background: var(--accent); }
.flow-grid { display: grid; grid-template-columns: 1.35fr 1.5fr auto; align-items: center; gap: 46px; }
.flow-intro { display: flex; align-items: flex-start; gap: 18px; }
.section-index { font-family: var(--font-geist-mono), monospace; font-size: 10px; color: rgba(9, 11, 12, 0.5); }
.kicker { color: rgba(9, 11, 12, 0.52); }
.flow-intro h2 { margin: 6px 0 0; max-width: 340px; font-size: 24px; line-height: 1.14; letter-spacing: -0.035em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.steps li { display: flex; flex-direction: column; gap: 7px; border-left: 1px solid rgba(9, 11, 12, 0.22); padding-left: 16px; }
.steps strong { font-family: var(--font-geist-mono), monospace; font-size: 9px; color: rgba(9, 11, 12, 0.46); }
.steps span { font-size: 12px; font-weight: 730; text-transform: uppercase; }
.round-link {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: transform 180ms ease;
}
.round-link:hover, .round-link:focus-visible { transform: translateX(4px); }

.events-section { padding-top: 120px; padding-bottom: 130px; }
.section-heading { display: grid; grid-template-columns: 1.45fr 0.55fr; align-items: end; gap: 80px; }
.section-heading h2, .services-title h2 { font-size: clamp(44px, 5.4vw, 72px); }
.section-heading > p, .portfolio-statement > p { margin: 0 0 6px; color: #5c6062; font-size: 15px; line-height: 1.8; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 66px; }
.event-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--ink-soft);
  color: var(--white);
  isolation: isolate;
  transition: transform 200ms ease;
}
.event-card:nth-child(2) { background: #191c1d; }
.event-card:nth-child(3) { background: #0d0e0f; }
.event-card:hover, .event-card:focus-visible { transform: translateY(-7px); }
.event-card-glow {
  position: absolute;
  z-index: -1;
  inset: 20% -40% -20% 10%;
  background:
    radial-gradient(circle at 45% 55%, rgba(255, 180, 0, 0.46), transparent 24%),
    repeating-radial-gradient(ellipse at 58% 58%, transparent 0 20px, rgba(255, 180, 0, 0.08) 21px 22px);
  transform: rotate(-18deg);
  opacity: 0.82;
}
.event-card:nth-child(2) .event-card-glow { transform: rotate(15deg) scale(1.2); opacity: 0.48; }
.event-card:nth-child(3) .event-card-glow { transform: rotate(-40deg) scale(1.4); opacity: 0.65; }
.event-number {
  position: absolute;
  top: 54px;
  right: 12px;
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.12em;
  color: rgba(255, 255, 255, 0.035);
}
.event-meta { display: flex; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, 0.56); font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.event-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.event-footer h3 { max-width: 270px; margin: 0; font-size: 27px; line-height: 1.08; letter-spacing: -0.04em; }
.mini-arrow { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); }
.center-action { display: flex; justify-content: center; margin-top: 48px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(9, 11, 12, 0.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 180ms ease;
}
.text-link:hover, .text-link:focus-visible { gap: 22px; }

.portfolio-section { overflow: hidden; padding: 130px 0; background: var(--ink); color: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 100px; }
.portfolio-statement h2 { font-size: clamp(48px, 5vw, 72px); }
.portfolio-statement > p { max-width: 470px; margin-top: 30px; color: rgba(255, 255, 255, 0.56); }
.light-link { margin-top: 38px; border-color: rgba(255, 255, 255, 0.28); }
.portfolio-collage { min-height: 540px; position: relative; }
.collage-card {
  position: absolute;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141718;
}
.collage-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 80px solid rgba(255, 180, 0, 0.13);
  border-radius: 50%;
  filter: blur(1px);
}
.collage-card span { position: relative; z-index: 2; font-size: 10px; font-weight: 800; letter-spacing: 0.18em; }
.collage-card-main {
  z-index: 2;
  inset: 52px 110px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, transparent, rgba(255, 180, 0, 0.1)), #101213;
}
.collage-card-main::after { right: -130px; bottom: -60px; }
.collage-card-main strong { position: relative; z-index: 2; font-size: 52px; line-height: 0.95; letter-spacing: -0.06em; }
.collage-card-top { z-index: 3; top: 0; right: 0; width: 220px; height: 230px; background: var(--accent); color: var(--ink); }
.collage-card-top::after { left: -190px; bottom: -180px; border-color: rgba(9, 11, 12, 0.16); }
.collage-card-bottom { z-index: 4; right: 16px; bottom: 0; width: 245px; height: 210px; background: #25292a; }
.collage-card-bottom::after { top: -180px; right: -160px; }
.collage-line { position: absolute; z-index: 5; top: 110px; right: 58px; width: 2px; height: 380px; background: var(--accent); transform: rotate(35deg); transform-origin: top; }

.services-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 110px; padding-top: 130px; padding-bottom: 130px; }
.dark-index { display: block; margin-bottom: 24px; }
.services-list { border-top: 1px solid rgba(9, 11, 12, 0.18); }
.service-row { min-height: 86px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 22px; border-bottom: 1px solid rgba(9, 11, 12, 0.18); }
.service-row > span { font-family: var(--font-geist-mono), monospace; font-size: 10px; color: #85898a; }
.service-row strong { font-size: 20px; letter-spacing: -0.02em; }
.service-row i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(9, 11, 12, 0.06); font-style: normal; transition: background 180ms ease, color 180ms ease; }
.service-row:hover i { background: var(--accent); }

.final-cta { position: relative; overflow: hidden; padding: 120px 0; background: var(--accent); }
.final-cta-pattern { position: absolute; inset: -220px -80px; background: repeating-radial-gradient(circle at 78% 48%, transparent 0 43px, rgba(9, 11, 12, 0.06) 44px 46px); transform: rotate(-12deg); }
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 em { color: rgba(9, 11, 12, 0.48); }
.final-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: #242728; }
.phone-link { padding-bottom: 4px; border-bottom: 1px solid rgba(9, 11, 12, 0.35); font-size: 14px; font-weight: 750; }

footer { padding: 46px 0; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 16px; letter-spacing: 0.14em; }
.footer-brand span, .footer-grid > p { margin-top: 7px; color: rgba(255, 255, 255, 0.45); font-size: 10px; }
.footer-links { display: flex; gap: 28px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--accent); }
.footer-grid > p { grid-column: 1 / -1; margin: 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.mobile-store-cta { display: none; }

@media (max-width: 1100px) {
  .site-header { width: calc(100% - 48px); }
  .main-nav { display: none; }
  .hero-content { left: 46%; width: min(590px, 50vw); }
  .portfolio-grid, .services-section { gap: 58px; }
}

@media (max-width: 800px) {
  .section-shell { width: min(100% - 36px, 640px); }
  .site-header { width: calc(100% - 36px); height: 76px; }
  .header-cta { padding: 0 15px; font-size: 10px; }
  .header-cta .external-icon { display: none; }
  .wordmark img { width: 205px; }
  .hero { min-height: 760px; height: 92vh; }
  .hero-image { object-position: 76% center; opacity: 0.7; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.9) 0%, rgba(5, 7, 8, 0.62) 58%, rgba(5, 7, 8, 0.18) 100%),
      linear-gradient(0deg, rgba(5, 7, 8, 0.88) 0%, transparent 58%);
  }
  .hero-content { top: auto; left: 18px; right: 18px; bottom: 84px; width: auto; transform: none; }
  .hero h1 { font-size: clamp(42px, 12vw, 62px); }
  .hero-copy { font-size: 14px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; padding: 0 18px; }
  .store-features { gap: 10px 14px; }
  .scroll-cue { display: none; }
  .flow-grid { grid-template-columns: 1fr; gap: 26px; }
  .round-link { display: none; }
  .steps { gap: 10px; }
  .steps li { padding-left: 10px; }
  .steps span { font-size: 10px; }
  .events-section, .portfolio-section, .services-section { padding-top: 86px; padding-bottom: 86px; }
  .section-heading, .portfolio-grid, .services-section { grid-template-columns: 1fr; gap: 42px; }
  .section-heading h2, .portfolio-statement h2, .services-title h2, .final-cta h2 { font-size: clamp(42px, 12vw, 58px); }
  .events-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .event-card { min-height: 330px; }
  .portfolio-collage { min-height: 420px; }
  .collage-card-main { inset: 40px 64px 14px 0; }
  .collage-card-main strong { font-size: 42px; }
  .collage-card-top { width: 150px; height: 170px; }
  .collage-card-bottom { right: 4px; width: 180px; height: 160px; }
  .final-cta { padding: 86px 0; }
  .final-actions { align-items: stretch; flex-direction: column; }
  .phone-link { align-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .mobile-store-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(9, 11, 12, 0.2);
    border-radius: 6px;
    background: var(--accent);
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  footer { padding-bottom: 110px; }
}

@media (max-width: 460px) {
  .header-cta { min-height: 40px; font-size: 0; }
  .header-cta::after { content: "Fotos"; font-size: 10px; }
  .wordmark img { width: 44px; max-height: 44px; object-fit: contain; }
  .hero h1 { font-size: 40px; }
  .hero-copy { margin-top: 18px; }
  .hero-actions { margin-top: 22px; }
  .button { min-height: 54px; font-size: 10px; }
  .store-features span:nth-child(2) { display: none; }
  .portfolio-collage { min-height: 360px; }
  .collage-card-main strong { font-size: 34px; }
  .collage-card-top { width: 120px; height: 140px; }
  .collage-card-bottom { width: 150px; height: 135px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
