:root {
  --ink: #152a27;
  --paper: #f2efe7;
  --coral: #ff6e4d;
  --yellow: #f1c84a;
  --blue: #4d83ce;
  --mint: #b9d8c6;
  --line: rgba(21, 42, 39, .18);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.grain {
  position: fixed; inset: 0; opacity: .045; pointer-events: none; z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  height: 92px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); position: relative; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 10px; font: 800 20px var(--display); letter-spacing: -.8px; }
.brand > span > span { color: var(--coral); }
.brand-mark { width: 36px; height: 36px; }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 3.6; stroke-linecap: square; stroke-linejoin: bevel; }
.desktop-nav { display: flex; gap: 38px; font-size: 14px; font-weight: 600; }
.desktop-nav a { transition: color .2s; }
.desktop-nav a:hover { color: var(--coral); }
.header-cta { background: var(--ink); color: white; padding: 13px 19px; font-size: 13px; font-weight: 700; }
.header-cta span, .button span { margin-left: 12px; }
.menu-button { display: none; background: none; border: 0; padding: 10px; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px 0; }

.hero {
  min-height: calc(100vh - 92px); padding: 7vw 5vw 5vw; display: grid; grid-template-columns: 49% 51%;
  position: relative; overflow: hidden;
}
.hero-copy { padding-top: 3.5vw; position: relative; z-index: 2; }
.eyebrow, .section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,110,77,.15); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font: 700 clamp(56px, 6.8vw, 112px)/.91 var(--display);
  letter-spacing: -.075em; margin: 28px 0 35px; max-width: 800px;
}
h1 em { color: var(--coral); font-style: normal; }
.hero-intro { max-width: 550px; font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; padding: 17px 22px; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: var(--paper); color: var(--ink); }
.button-coral { background: var(--coral); color: var(--ink); }
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); padding: 8px 0; }
.text-link span { margin-left: 12px; }
.hero-visual { position: relative; min-height: 600px; }
.location-pill { position: absolute; right: 2%; top: 1%; background: #fff; padding: 11px 16px; border-radius: 30px; font-size: 10px; letter-spacing: 1.2px; z-index: 3; box-shadow: 0 8px 30px rgba(21,42,39,.08); }
.location-pill span { color: var(--coral); }
.poster {
  position: absolute; width: min(75%, 500px); aspect-ratio: .78; right: 8%; top: 7%;
  background: var(--coral); transform: rotate(4deg); box-shadow: 18px 23px 0 var(--ink); padding: 35px;
  overflow: hidden;
}
.poster-top { display: flex; justify-content: space-between; font: 700 10px var(--display); letter-spacing: 2px; border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 28px; }
.poster > p { font: 800 clamp(45px, 5vw, 82px)/.9 var(--display); letter-spacing: -.08em; margin: 0; }
.poster > p.outlined { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.poster-stamp { position: absolute; right: 9%; top: 47%; width: 78px; height: 78px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-content: center; text-align: center; font: 800 22px/.7 var(--display); transform: rotate(10deg); }
.poster-stamp small { font-size: 7px; letter-spacing: 2px; }
.poster svg { position: absolute; left: 0; bottom: 0; width: 100%; }
.poster svg path:first-child { fill: var(--ink); }
.poster svg path:last-child { fill: none; stroke: var(--paper); stroke-width: 3; }
.floating-card { position: absolute; z-index: 4; padding: 20px; box-shadow: 0 12px 35px rgba(21,42,39,.12); font-size: 13px; line-height: 1.4; }
.floating-card p { margin: 20px 0 0; }
.card-icon { font-size: 24px; }
.card-web { background: var(--blue); color: white; right: -3%; top: 51%; transform: rotate(-3deg); }
.card-print { background: var(--yellow); left: 1%; bottom: 3%; transform: rotate(3deg); }
.scroll-cue { position: absolute; left: 5vw; bottom: 30px; font-size: 10px; letter-spacing: 2px; font-weight: 700; writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px; }
.scroll-cue span { font-size: 20px; }

.section-pad { padding: 120px 7vw; }
.statement { border-top: 1px solid var(--line); display: grid; grid-template-columns: 20% 57% 23%; align-items: end; }
.section-label { color: #52605d; }
.statement-text p { font: 600 clamp(30px, 3.6vw, 58px)/1.25 var(--display); letter-spacing: -.055em; margin: 0; }
.statement-text span { color: var(--coral); position: relative; }
.statement-side { font-size: 14px; line-height: 1.6; padding-left: 30px; }
.statement-side svg { width: 75px; margin-top: 18px; }
.statement-side path { fill: none; stroke: var(--ink); stroke-width: 1.5; }

.services { background: var(--ink); color: var(--paper); }
.services .section-label, .process .section-label, .contact .section-label { color: rgba(255,255,255,.55); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 65px; }
.section-heading h2, .process h2, .region h2, .contact h2 { font: 700 clamp(42px, 5vw, 78px)/1 var(--display); letter-spacing: -.065em; margin-bottom: 0; }
.section-heading > p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { min-height: 530px; color: var(--ink); position: relative; overflow: hidden; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; }
.service-number { font: 700 11px var(--display); letter-spacing: 2px; }
.service-content { max-width: 78%; position: relative; z-index: 3; }
.service-content h3 { font: 700 clamp(28px, 3vw, 45px) var(--display); letter-spacing: -.05em; margin-bottom: 12px; }
.service-content p { font-size: 14px; line-height: 1.55; margin-bottom: 0; }
.card-coral { background: var(--coral); }
.card-yellow { background: var(--yellow); }
.card-blue { background: var(--blue); }
.card-dark { background: #263b37; color: var(--paper); border: 1px solid rgba(255,255,255,.15); }
.flyer-stack { position: absolute; width: 240px; height: 260px; right: 12%; top: 15%; transform: rotate(7deg); }
.flyer { position: absolute; width: 180px; height: 230px; padding: 25px; box-shadow: 10px 10px 20px rgba(21,42,39,.14); }
.flyer-back { background: var(--ink); left: 0; top: 0; transform: rotate(-9deg); }
.flyer-front { background: var(--paper); right: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-between; font: 800 32px/.95 var(--display); letter-spacing: -.06em; }
.flyer-front small { font: 600 9px var(--body); letter-spacing: 0; }
.design-art { width: 300px; height: 230px; position: absolute; right: 8%; top: 15%; border: 2px solid var(--ink); }
.type-box { position: absolute; font: 800 92px var(--display); left: 25px; top: 45px; }
.cursor { position: absolute; right: 25px; top: 25px; font-size: 48px; transform: rotate(10deg); }
.color-dot { width: 50px; height: 50px; border-radius: 50%; background: var(--coral); position: absolute; right: 45px; bottom: 35px; }
.design-line { position: absolute; width: 110px; border-top: 3px solid var(--ink); left: 30px; bottom: 32px; }
.browser-art { width: 370px; height: 260px; background: var(--paper); color: var(--ink); position: absolute; right: -3%; top: 12%; transform: rotate(-3deg); box-shadow: 12px 15px 0 rgba(21,42,39,.25); }
.browser-bar { height: 34px; border-bottom: 1px solid var(--ink); padding: 12px; display: flex; gap: 5px; }
.browser-bar i { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; }
.browser-page { padding: 38px; font: 800 37px/.95 var(--display); letter-spacing: -.06em; }
.browser-page b { color: var(--coral); display: block; font-size: 50px; }
.browser-page div { width: 90px; height: 8px; background: var(--ink); margin-top: 35px; }
.camera-art { position: absolute; width: 290px; height: 220px; right: 12%; top: 15%; }
.camera-body { position: absolute; width: 250px; height: 160px; background: var(--paper); bottom: 0; display: grid; place-items: center; clip-path: polygon(0 15%, 30% 15%, 36% 0, 66% 0, 72% 15%, 100% 15%, 100% 100%, 0 100%); }
.lens { width: 110px; height: 110px; background: var(--ink); border-radius: 50%; display: grid; place-items: center; }
.lens span { width: 55px; height: 55px; border-radius: 50%; background: var(--blue); border: 8px solid #53716b; }
.flash { width: 65px; height: 45px; background: var(--yellow); position: absolute; right: 0; top: 28px; box-shadow: 20px -20px 0 -13px var(--yellow), 20px 20px 0 -13px var(--yellow), 42px 0 0 -13px var(--yellow); }

.process { background: var(--coral); display: grid; grid-template-columns: 40% 60%; gap: 7vw; }
.process-copy { position: sticky; top: 90px; align-self: start; }
.process-copy > p:not(.section-label) { max-width: 420px; line-height: 1.6; margin: 30px 0; }
.steps { border-top: 1px solid rgba(21,42,39,.35); }
.step { display: grid; grid-template-columns: 60px 1fr 30px; gap: 25px; padding: 32px 0; border-bottom: 1px solid rgba(21,42,39,.35); }
.step > span { font-size: 11px; letter-spacing: 1px; padding-top: 6px; }
.step h3 { font: 700 23px var(--display); letter-spacing: -.03em; margin-bottom: 7px; }
.step p { font-size: 13px; line-height: 1.5; max-width: 430px; margin: 0; }
.step b { font-size: 20px; }

.region { display: grid; grid-template-columns: 55% 45%; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.map-art { height: 620px; }
.map-art svg { width: 100%; height: 100%; overflow: visible; }
.river { fill: none; stroke: var(--blue); stroke-width: 18; opacity: .75; }
.road { fill: none; stroke: var(--ink); stroke-width: 1; stroke-dasharray: 5 6; opacity: .25; }
.road-two { stroke-dasharray: none; }
.map-point circle:first-child { fill: var(--coral); stroke: var(--paper); stroke-width: 5; }
.map-point circle:nth-child(2) { fill: none; stroke: var(--coral); stroke-width: 1; opacity: .55; }
.map-point text { font: 700 13px var(--display); letter-spacing: 1px; fill: var(--ink); }
.river-label { font: 700 10px var(--display); letter-spacing: 5px; fill: white; }
.region-copy { padding-left: 7vw; }
.region-copy > p:not(.section-label) { max-width: 480px; line-height: 1.7; margin: 30px 0; }
.place-list { display: flex; flex-wrap: wrap; gap: 8px; }
.place-list span { border: 1px solid var(--ink); padding: 10px 14px; font-size: 11px; font-weight: 700; }

.contact { background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 47% 53%; gap: 7vw; }
.contact-top > p:last-child { color: rgba(255,255,255,.6); max-width: 440px; line-height: 1.7; margin-top: 30px; }
.contact-form label, fieldset { display: block; border: 0; padding: 0; margin: 0 0 28px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea { width: 100%; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3); border-radius: 0; padding: 14px 0; outline: 0; font-size: 15px; text-transform: none; letter-spacing: 0; resize: vertical; }
input:focus, textarea:focus { border-color: var(--coral); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.38); }
legend { margin-bottom: 13px; }
.choice-row { display: flex; gap: 8px; flex-wrap: wrap; }
.choice-row label { margin: 0; cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; width: 0; }
.choice-row span { display: block; border: 1px solid rgba(255,255,255,.35); padding: 10px 12px; transition: .2s; }
.choice-row input:checked + span { background: var(--coral); border-color: var(--coral); color: var(--ink); }
.form-note { display: inline-block; color: rgba(255,255,255,.35); font-size: 9px; margin-left: 15px; }
.form-success { display: none; margin-top: 20px; padding: 15px; border: 1px solid var(--mint); color: var(--mint); font-size: 13px; line-height: 1.5; }
.form-success.visible { display: block; }

footer { background: #0c1c19; color: var(--paper); padding: 65px 7vw 25px; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr .7fr 1fr; gap: 50px; align-items: start; padding-bottom: 55px; }
.brand-footer { font-size: 23px; }
.footer-main > p { color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: 13px; }
.footer-contact a { color: var(--coral); }
.footer-contact span { color: rgba(255,255,255,.45); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.35); font-size: 10px; }
.footer-bottom div { display: flex; gap: 25px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .desktop-nav.open { display: flex; position: absolute; top: 92px; left: 0; right: 0; background: var(--paper); padding: 30px 5vw; flex-direction: column; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual { margin-top: 60px; min-height: 650px; }
  .poster { right: 10%; }
  .scroll-cue { display: none; }
  .statement { grid-template-columns: 1fr; gap: 40px; }
  .statement-side { padding-left: 0; max-width: 500px; }
  .section-heading { align-items: start; gap: 40px; }
  .process { grid-template-columns: 1fr; }
  .process-copy { position: static; }
  .region { grid-template-columns: 1fr; }
  .region-copy { padding: 0 0 50px; grid-row: 1; }
  .map-art { height: 520px; }
  .contact { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 76px; }
  .desktop-nav.open { top: 76px; }
  .section-pad { padding: 80px 6vw; }
  .hero { padding: 45px 6vw 70px; min-height: auto; }
  h1 { font-size: 52px; margin-top: 22px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 30px; }
  .hero-visual { min-height: 490px; margin-top: 35px; }
  .poster { width: 82%; right: 9%; padding: 25px; box-shadow: 12px 14px 0 var(--ink); }
  .poster > p { font-size: 44px; }
  .location-pill { right: 0; top: -10px; }
  .floating-card { padding: 14px; }
  .card-web { top: 55%; right: -4%; }
  .card-print { left: -2%; bottom: 0; }
  .statement-text p { font-size: 32px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 450px; padding: 25px; }
  .service-content { max-width: 93%; }
  .flyer-stack { transform: scale(.8) rotate(7deg); transform-origin: right top; }
  .design-art { transform: scale(.75); transform-origin: right top; }
  .browser-art { transform: scale(.75) rotate(-3deg); transform-origin: right top; }
  .camera-art { transform: scale(.75); transform-origin: right top; }
  .process { gap: 55px; }
  .step { grid-template-columns: 35px 1fr 20px; gap: 12px; }
  .map-art { height: 380px; }
  .region-copy { padding-bottom: 15px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-note { display: block; margin: 12px 0 0; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

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