:root {
  --stage: #061428;
  --stage-deep: #030b18;
  --fog: #0c2a4a;
  --spot: #7ec8e8;
  --spot-soft: rgba(126, 200, 232, .18);
  --wood: #c4a574;
  --wood-deep: #8a6a3d;
  --ink: #0d1a2a;
  --paper: #eef3f8;
  --paper-soft: #f7f9fc;
  --muted: #5a6b7d;
  --line: rgba(13, 26, 42, .12);
  --white: #fff;
  --container: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  border-radius: .4rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 600;
}
h1 { margin-bottom: 18px; font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h3 { margin-bottom: 10px; font-size: 1.45rem; }
p { margin-top: 0; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand-mark { width: 36px; height: auto; flex: 0 0 auto; }
.brand-mark-dark { width: 30px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
}
nav a:not(.nav-cta):hover { color: var(--spot); }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--stage-deep);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--stage-deep);
}
.hero-stage {
  position: absolute;
  inset: 0;
}
.hero-backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.04);
  animation: stage-settle 2.4s ease-out both;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,11,24,.5) 0%, rgba(3,11,24,.28) 34%, rgba(3,11,24,.45) 62%, rgba(3,11,24,.86) 100%),
    radial-gradient(ellipse 52% 62% at 50% 40%, rgba(3,11,24,.08), rgba(3,11,24,.62) 75%);
}
.hero-haze {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(12,42,74,.35));
  animation: haze-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 110px 0 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: clamp(120px, 18vw, 190px);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.45));
}
.hero-lead {
  max-width: 34rem;
  margin: 0 0 32px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--white);
  color: var(--stage-deep);
}
.button-primary:hover { background: #e8f4fb; }
.button-secondary {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.button-secondary:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in .9s ease forwards;
}
.reveal-delay-1 { animation-delay: .15s; }
.reveal-delay-2 { animation-delay: .3s; }
.reveal-delay-3 { animation-delay: .45s; }

.services { background: var(--paper-soft); }
.section-heading {
  max-width: 40rem;
  margin-bottom: 48px;
}
.section-heading h2 { margin-bottom: 12px; }
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-link {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(6,20,40,.14);
}
.service-coffee {
  color: #2a1a0c;
  background: linear-gradient(160deg, #d8b984 0%, #b8894f 100%);
}
.service-actor {
  color: var(--white);
  background: linear-gradient(160deg, #16385c 0%, #0a1f36 100%);
}
.service-label {
  margin-bottom: auto;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}
.service-link h3 {
  margin: 28px 0 12px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.service-link p {
  margin-bottom: 24px;
  opacity: .85;
  max-width: 28rem;
}
.service-go {
  margin-top: auto;
  font-weight: 700;
  font-size: .95rem;
}

.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.about-copy > p { color: var(--muted); font-size: 1.05rem; }
.capabilities { border-top: 1px solid var(--line); }
.capabilities li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.capabilities span {
  color: var(--wood-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-top: 6px;
}
.capabilities h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}
.capabilities p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.manifesto {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(126,200,232,.12), transparent 55%),
    linear-gradient(180deg, var(--stage) 0%, var(--stage-deep) 100%);
}
.manifesto .eyebrow {
  color: var(--spot);
  margin-bottom: 20px;
}
.manifesto h2 {
  max-width: 28rem;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.vision-lead {
  max-width: 40rem;
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}
.vision-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  color: var(--spot);
  letter-spacing: -.01em;
}

.contact { background: var(--paper-soft); }
.contact-panel {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-panel h2 {
  max-width: 28rem;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.contact-panel p {
  margin: 0;
  color: var(--muted);
}
.contact-panel .button { flex: 0 0 auto; }

footer {
  padding: 32px 0;
  background: var(--paper-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}
.brand-footer { color: var(--ink); font-size: 1.1rem; }
.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

:focus-visible {
  outline: 3px solid #2a74ff;
  outline-offset: 4px;
}

@keyframes stage-settle {
  from { transform: scale(1.08); opacity: .85; }
  to { transform: scale(1.04); opacity: 1; }
}
@keyframes haze-drift {
  from { opacity: .55; transform: translateY(0); }
  to { opacity: .9; transform: translateY(-10px); }
}
@keyframes rise-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-copy { padding: 110px 0 64px; }
  .service-grid,
  .about-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner p:last-child { text-align: right; }
  .footer-inner > p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .brand { font-size: 1.15rem; }
  .brand-mark { width: 30px; }
  .hero-copy { padding: 96px 0 56px; }
  .hero-logo { width: 96px; margin-bottom: 22px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .service-link { min-height: 240px; padding: 26px; }
  .manifesto { padding: 80px 0; }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-inner p:last-child { text-align: left; }
}

.page-404 {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(126,200,232,.12), transparent 60%),
    var(--stage-deep);
  text-align: center;
}
.error-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.error-panel img { margin-bottom: 16px; }
.error-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}
.error-panel p {
  max-width: 28rem;
  margin: 0 0 28px;
  color: rgba(255,255,255,.75);
}

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