:root {
  --black: #000000;
  --ink: #213139;
  --teal: #008168;
  --teal-dark: #006451;
  --yellow: #ffd35d;
  --orange: #ff8711;
  --orange-dark: #e96f00;
  --red: #af0000;
  --paper: #f7f3e9;
  --paper-2: #efe9dc;
  --white: #ffffff;
  --line: rgba(33, 49, 57, .18);
  --muted: #67635b;
  --radius: 30px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--yellow); color: var(--black); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 9999; background: var(--white); padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--pad);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
  color: var(--white);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1; position: relative; z-index: 3; }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  flex: 0 0 auto;
}
.brand-copy { font-family: var(--display); font-weight: 900; letter-spacing: -.02em; font-size: 20px; }
.brand-copy small { display: block; margin-top: 5px; color: rgba(255,255,255,.68); font-family: var(--body); font-size: 9px; letter-spacing: .10em; font-weight: 800; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 38px); }
.site-nav a { text-decoration: none; font-weight: 800; font-size: 14px; }
.site-nav a:not(.nav-cta)::after { content: ""; display: block; height: 3px; width: 0; background: var(--yellow); transition: width .2s ease; }
.site-nav a:hover::after { width: 100%; }
.nav-cta { background: var(--orange); color: var(--black); padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(130px, 17vh, 180px) var(--pad) 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  align-items: center;
  gap: clamp(36px, 7vw, 120px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-label { font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--yellow); }
.eyebrow::before { content: ""; width: 34px; height: 4px; background: var(--teal); }
.hero h1, .section-head h2, .intro h2, .portfolio h2, .solo h2, .contact h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.045em;
  margin: 0;
}
.hero h1 { font-size: clamp(60px, 7.2vw, 132px); max-width: 11ch; }
.hero h1 span { color: var(--orange); }
.hero-lead { max-width: 690px; margin: 32px 0 0; font-size: clamp(18px, 1.45vw, 24px); line-height: 1.45; color: rgba(255,255,255,.77); }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; padding: 0 24px; text-decoration: none; border: 0; border-radius: 999px; font-weight: 900; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: var(--black); }
.button-orange:hover { background: var(--yellow); }
.button-yellow { background: var(--yellow); color: var(--black); }
.button-yellow:hover { background: var(--white); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.button-ghost:hover { background: var(--white); color: var(--black); }

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(38vw, 650px, calc(100svh - 210px));
  max-width: 100%;
  aspect-ratio: 1 / 1;
  justify-self: end;
  align-self: center;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.45));
}
.logo-glow { position: absolute; width: 82%; height: 82%; left: 9%; top: 9%; border-radius: 50%; background: radial-gradient(circle, rgba(255,135,17,.35), rgba(0,129,104,.12) 52%, transparent 72%); filter: blur(45px); }
.hero-stamp { position: absolute; z-index: 3; right: -12px; bottom: 8%; width: 108px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--yellow); color: var(--ink); border: 4px solid var(--black); font-size: 11px; font-weight: 1000; letter-spacing: .1em; transform: rotate(10deg); }
.brand-bars { position: absolute; left: 0; bottom: 0; width: 100%; display: grid; grid-template-columns: 2fr 1.35fr 1.35fr 1fr; height: 16px; z-index: 5; }
.brand-bars span { display: block; }
.bar-teal { background: var(--teal); }
.bar-yellow { background: var(--yellow); }
.bar-orange { background: var(--orange); }
.bar-red { background: var(--red); }

.section-pad { padding: clamp(90px, 11vw, 180px) var(--pad); }
.section-label { color: var(--teal); margin-bottom: 26px; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(40px, 8vw, 140px); align-items: end; }
.intro h2 { font-size: clamp(48px, 6.8vw, 112px); color: var(--ink); }
.intro h2 em { color: var(--teal); font-style: normal; }
.intro-copy { font-size: clamp(18px, 1.5vw, 23px); }
.intro-copy p { margin: 0 0 22px; }
.intro-copy p:last-child { margin-bottom: 0; }

.portfolio { background: var(--teal); color: var(--white); overflow: hidden; position: relative; }
.portfolio::after { content: "PORTFOLIO"; position: absolute; right: -2vw; bottom: -6vw; font-family: var(--display); font-size: 22vw; line-height: .8; font-weight: 900; color: rgba(0,0,0,.08); pointer-events: none; }
.portfolio-grid { display: grid; grid-template-columns: 1fr minmax(360px, .8fr); gap: clamp(50px, 9vw, 150px); align-items: center; position: relative; z-index: 1; }
.section-label-yellow { color: var(--yellow); }
.portfolio h2 { font-size: clamp(52px, 6.8vw, 116px); max-width: 10ch; }
.portfolio h2 span { color: var(--yellow); }
.portfolio-copy > p { max-width: 660px; font-size: clamp(18px, 1.4vw, 22px); color: rgba(255,255,255,.79); margin: 28px 0 34px; }
.portfolio-card { position: relative; min-height: 610px; background: var(--black); color: var(--white); border-radius: 36px; overflow: hidden; text-decoration: none; padding: 32px; box-shadow: 26px 26px 0 var(--yellow); transform: rotate(2deg); transition: transform .25s ease, box-shadow .25s ease; }
.portfolio-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 18px 26px 0 var(--orange); }
.portfolio-card-top { display: flex; justify-content: space-between; font-size: 11px; font-weight: 900; letter-spacing: .14em; position: relative; z-index: 2; }
.portfolio-card-main { position: relative; z-index: 2; margin-top: 90px; }
.portfolio-kicker { display: block; color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .15em; margin-bottom: 18px; }
.portfolio-card strong { display: block; font-family: var(--display); font-size: clamp(62px, 6vw, 104px); line-height: .78; letter-spacing: -.04em; }
.portfolio-arrow { position: absolute; z-index: 3; right: 28px; bottom: 34px; width: 78px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--black); font-size: 38px; }
.portfolio-stripes { position: absolute; inset: auto 0 0 0; height: 170px; display: grid; grid-template-rows: repeat(4, 1fr); transform: skewY(-7deg) translateY(42px); transform-origin: left; }
.portfolio-stripes i:nth-child(1) { background: var(--teal); }
.portfolio-stripes i:nth-child(2) { background: var(--yellow); }
.portfolio-stripes i:nth-child(3) { background: var(--orange); }
.portfolio-stripes i:nth-child(4) { background: var(--red); }

.services { background: var(--black); color: var(--white); }
.services .section-head, .work .section-head { display: grid; grid-template-columns: minmax(180px, .35fr) 1fr; gap: 40px; align-items: start; margin-bottom: 72px; }
.section-head h2 { font-size: clamp(52px, 6.6vw, 110px); }
.services .section-label { color: var(--orange); }
.service-list { border-top: 1px solid rgba(255,255,255,.2); }
.service-card { display: grid; grid-template-columns: 90px 1fr 90px; gap: 32px; align-items: start; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.service-number { color: var(--yellow); font-weight: 900; font-size: 12px; }
.service-body { display: grid; grid-template-columns: .8fr 1fr; gap: 42px; align-items: start; }
.service-body h3 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4vw, 70px); text-transform: uppercase; line-height: .92; letter-spacing: -.03em; }
.service-body p { margin: 0; max-width: 620px; color: #c5c2bb; font-size: 18px; }
.tags { grid-column: 2; display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.tags span { border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 7px 11px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.service-symbol { font-size: 42px; text-align: right; color: var(--orange); }
.price-note { margin-top: 72px; display: grid; grid-template-columns: .55fr .7fr 1fr; gap: 28px; align-items: center; background: var(--yellow); color: var(--ink); border-radius: var(--radius); padding: clamp(28px, 4vw, 56px); position: relative; overflow: hidden; }
.price-note::after { content: ""; position: absolute; right: 0; top: 0; width: 14px; height: 100%; background: linear-gradient(var(--teal) 0 25%, var(--yellow) 25% 50%, var(--orange) 50% 75%, var(--red) 75% 100%); }
.price-kicker { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.price-note strong { font-family: var(--display); font-size: clamp(48px, 6vw, 96px); line-height: .8; letter-spacing: -.05em; }
.price-note strong small { font-family: var(--body); font-size: 14px; letter-spacing: 0; }
.price-note p { margin: 0; font-weight: 650; font-size: 17px; }

.work { background: var(--paper-2); }
.work .section-label { color: var(--red); }
.steps { list-style: none; margin: 0; padding: 0; }
.step { display: grid; grid-template-columns: minmax(84px, .2fr) 1fr; gap: 28px; padding: 34px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-number { color: var(--red); font-size: 12px; font-weight: 900; }
.step > div { display: grid; grid-template-columns: .75fr 1fr; gap: 40px; align-items: baseline; }
.step h3 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4.5vw, 74px); text-transform: uppercase; letter-spacing: -.04em; line-height: .9; }
.step p { margin: 0; max-width: 560px; font-size: 18px; color: #53514d; }

.solo { background: var(--paper); }
.solo-card { background: var(--orange); color: var(--black); border-radius: clamp(24px, 4vw, 54px); padding: clamp(34px, 6vw, 94px); overflow: hidden; position: relative; }
.solo-card::after { content: "JAR"; position: absolute; right: -3vw; bottom: -10vw; font-family: var(--display); font-size: 33vw; line-height: 1; font-weight: 900; color: rgba(255,255,255,.14); pointer-events: none; }
.section-label-light { color: var(--black); opacity: .7; }
.solo-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(48px, 8vw, 130px); position: relative; z-index: 1; }
.solo h2 { font-size: clamp(52px, 6vw, 104px); }
.solo-copy { font-size: clamp(18px, 1.5vw, 23px); align-self: end; }
.solo-copy p { margin: 0 0 22px; }
.solo-sign { margin-top: 40px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.solo-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 90px; border-top: 1px solid rgba(0,0,0,.32); padding-top: 34px; }
.solo-stats div { display: flex; flex-direction: column; }
.solo-stats strong { font-family: var(--display); font-size: clamp(54px, 7vw, 110px); line-height: .85; letter-spacing: -.06em; }
.solo-stats span { margin-top: 12px; font-weight: 750; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px, 10vw, 160px); }
.contact h2 { font-size: clamp(58px, 7.3vw, 128px); }
.contact h2 span { color: var(--teal); }
.contact-copy > p { font-size: 19px; max-width: 520px; margin: 32px 0; }
.phone-link { display: inline-flex; gap: 18px; align-items: center; font-family: var(--display); font-size: clamp(30px, 3vw, 50px); font-weight: 900; text-decoration: none; border-bottom: 4px solid var(--orange); padding-bottom: 4px; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px); box-shadow: 18px 18px 0 var(--teal); }
.contact-form label { display: block; margin-bottom: 26px; }
.contact-form label > span { display: block; margin-bottom: 8px; font-weight: 900; font-size: 13px; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 2px solid #cac6bc; background: transparent; padding: 12px 0; outline: none; resize: vertical; border-radius: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--teal); }
.button-full { width: 100%; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { background: var(--black); color: var(--white); padding: 28px var(--pad); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; font-size: 12px; border-top: 12px solid var(--red); }
.brand-footer img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
}
.brand-footer .brand-copy small { color: rgba(255,255,255,.55); }
.site-footer a:not(.brand) { font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--yellow); }
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 30px; }
  .hero h1 { max-width: 12ch; }
  .hero-logo-wrap {
    width: min(78vw, 620px);
    max-width: 100%;
    justify-self: center;
    margin-top: 10px;
  }
  .intro-grid, .portfolio-grid, .solo-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-copy { max-width: 760px; }
  .portfolio-copy { max-width: 920px; }
  .portfolio-card { max-width: 720px; width: 100%; min-height: 560px; }
  .contact-grid { gap: 70px; }
  .contact-form { max-width: 760px; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; --radius: 22px; }
  .site-header { padding-top: 8px; padding-bottom: 8px; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy { font-size: 17px; }
  .menu-toggle { display: inline-flex; position: relative; z-index: 3; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--orange); flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--black); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; background: var(--teal); padding: 120px 24px 40px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 20px; transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .site-nav.open { transform: none; }
  .site-nav a { font-family: var(--display); font-size: 10.5vw; text-transform: uppercase; line-height: .9; }
  .nav-cta { background: var(--yellow); padding: 10px 16px; color: var(--black); }

  .hero { padding-top: 128px; padding-bottom: 76px; gap: 28px; }
  .hero h1 { font-size: clamp(50px, 15vw, 82px); }
  .hero-lead { font-size: 17px; margin-top: 24px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-logo-wrap {
    width: min(92vw, 520px);
    max-width: 100%;
    margin-top: 8px;
  }
  .hero-stamp { width: 88px; right: 0; font-size: 9px; }
  .brand-bars { height: 12px; }

  .section-pad { padding-top: 90px; padding-bottom: 90px; }
  .intro h2, .section-head h2, .portfolio h2, .solo h2, .contact h2 { font-size: clamp(46px, 14vw, 72px); }
  .portfolio-card { min-height: 470px; padding: 24px; border-radius: 26px; box-shadow: 12px 14px 0 var(--yellow); transform: none; }
  .portfolio-card-main { margin-top: 72px; }
  .portfolio-card strong { font-size: clamp(58px, 18vw, 92px); }
  .portfolio-arrow { width: 64px; right: 20px; bottom: 24px; }
  .services .section-head, .work .section-head { display: block; margin-bottom: 46px; }
  .service-card { grid-template-columns: 42px 1fr; gap: 16px; }
  .service-symbol { display: none; }
  .service-body { display: block; }
  .service-body h3 { font-size: 46px; }
  .service-body p { margin-top: 18px; font-size: 16px; }
  .tags { margin-top: 18px; }
  .price-note { grid-template-columns: 1fr; }
  .price-note strong { font-size: 70px; }
  .step { grid-template-columns: 42px 1fr; gap: 14px; }
  .step > div { display: block; }
  .step h3 { font-size: 48px; }
  .step p { margin-top: 14px; font-size: 16px; }
  .solo-card { padding: 34px 24px; }
  .solo-stats { grid-template-columns: 1fr; margin-top: 56px; }
  .solo-stats div { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.24); }
  .solo-stats strong { font-size: 74px; }
  .contact-form { box-shadow: 10px 10px 0 var(--teal); }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
}

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