:root {
  --ink: #09090b;
  --panel: #111115;
  --panel-2: #17171c;
  --steel: #b9bac1;
  --paper: #f5f4f2;
  --white: #ffffff;
  --pink: #f2297b;
  --pink-bright: #ff3d8d;
  --line: rgba(255,255,255,.13);
  --muted: #aaaab2;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--pink-bright); outline-offset: 4px; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: 24px; }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 30; padding: 12px 20px; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 12px; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--pink-bright);
  font-size: .875rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: currentColor; transform: skewX(-24deg); }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 166px; height: 64px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav-links a {
  color: #d7d7dc;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  background: #be1458;
  color: var(--white);
  box-shadow: none;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform .18s ease, background .18s ease;
}
.button:hover { background: #a7104c; transform: translateY(-2px); }
.button:focus-visible { clip-path: none; }
.button:disabled { cursor: not-allowed; opacity: .6; transform: none; }
.button.secondary { background: transparent; border-color: rgba(255,255,255,.45); clip-path: none; }
.button.secondary:hover { background: var(--white); color: var(--ink); }
.button svg { width: 18px; height: 18px; }

.hero {
  min-height: 820px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 170px 0 88px;
  background:
    linear-gradient(90deg, rgba(9,9,11,.98) 0%, rgba(9,9,11,.93) 42%, rgba(9,9,11,.58) 100%),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(255,255,255,.035) 83px 84px),
    repeating-linear-gradient(0deg, transparent 0 82px, rgba(255,255,255,.035) 83px 84px),
    radial-gradient(circle at 78% 34%, rgba(242,41,123,.22), transparent 25%),
    #0d0d10;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 52vw;
  height: 95%;
  right: -11vw;
  top: 8%;
  border-left: 1px solid rgba(242,41,123,.35);
  background:
    linear-gradient(135deg, transparent 29%, rgba(255,255,255,.055) 30%, transparent 31%),
    linear-gradient(45deg, transparent 46%, rgba(242,41,123,.10) 47%, transparent 48%);
  transform: skewX(-13deg);
  pointer-events: none;
}
.hero::after {
  content: "KUPE";
  position: absolute;
  z-index: -1;
  right: -2vw;
  bottom: -7rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  font: italic 1000 clamp(9rem, 22vw, 22rem)/1 Arial, sans-serif;
  letter-spacing: -.09em;
  pointer-events: none;
}
.hero-copy { max-width: 900px; }
h1, h2, h3, .hero-title { margin-top: 0; text-wrap: balance; }
.hero-title {
  max-width: 880px;
  margin-bottom: 28px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero-title span { color: var(--pink); }
.hero-heading { max-width: 700px; margin: 0 0 16px; font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.3; }
.hero-period { display: inline-block; margin-left: .06em; }
.hero-lead { max-width: 650px; margin: 0 0 34px; color: #d4d4da; font-size: clamp(1.1rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 20px 0 0; color: var(--muted); font-size: .95rem; }
.hero-note a, .text-link { text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link { display: inline-block; font-weight: 800; padding-block: 10px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}
.proof { padding: 20px 26px 0 0; }
.proof + .proof { padding-left: 26px; border-left: 1px solid var(--line); }
.proof strong { display: block; color: var(--white); font-size: .98rem; text-transform: uppercase; letter-spacing: .06em; }
.proof span { color: var(--muted); font-size: .88rem; }

.materials {
  border-block: 1px solid var(--line);
  background: var(--pink);
  color: var(--ink);
  overflow: hidden;
}
.materials-track {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 74px);
  font-weight: 950;
  font-style: italic;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.materials-track span::after { content: "✦"; margin-left: clamp(26px, 5vw, 74px); font-style: normal; }
.materials-track span:last-child::after { display: none; }

.section { padding: 112px 0; }
.section-head { max-width: 750px; margin-bottom: 54px; }
h2 {
  margin-bottom: 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  hyphens: auto;
}
.section-head p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.1rem; }

.services { background: var(--paper); color: var(--ink); }
.services .section-head p { color: #5e5e64; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #c9c9cc; border: 1px solid #c9c9cc; }
.service-card {
  min-height: 340px;
  position: relative;
  padding: 34px;
  background: var(--paper);
  transition: background .18s ease, color .18s ease;
}
.service-card:hover { background: var(--ink); color: var(--white); }
.service-number { color: #be1458; font-size: .875rem; font-weight: 950; letter-spacing: .14em; }
.service-card:hover .service-number { color: var(--pink-bright); }
.service-icon { width: 46px; height: 46px; margin: 54px 0 32px; color: currentColor; }
.service-card h3 { margin-bottom: 14px; font-size: 1.42rem; line-height: 1.16; text-transform: uppercase; letter-spacing: -.015em; }
.service-card p { margin: 0; color: #66666d; }
.service-card:hover p { color: #bdbdc4; }
.service-card .text-link { margin-top: 16px; }
.service-card .text-link:hover { text-decoration-thickness: 3px; }
.service-card::after { content: ""; position: absolute; right: 0; bottom: 0; width: 44px; height: 6px; background: var(--pink); }

.about {
  position: relative;
  background:
    linear-gradient(110deg, transparent 0 72%, rgba(242,41,123,.09) 72% 100%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255,255,255,.026) 119px 120px),
    var(--panel);
}
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.about-stamp {
  width: min(100%, 390px);
  aspect-ratio: 1;
  position: sticky;
  top: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242,41,123,.55);
  background: linear-gradient(145deg, rgba(242,41,123,.14), transparent 55%);
  transform: rotate(-3deg);
}
.about-stamp::after { content: ""; position: absolute; inset: 22px; border: 1px solid var(--line); }
.about-stamp img { width: 76%; height: 76%; object-fit: contain; transform: rotate(3deg); }
.about-copy h2 { max-width: 680px; }
.about-copy > p { color: #c1c1c8; font-size: 1.1rem; }
.service-area { margin-top: 32px; padding-left: 22px; border-left: 3px solid var(--pink); }
.service-area h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-area p { color: #c1c1c8; margin: 0; }
.process { margin-top: 52px; border-top: 1px solid var(--line); }
.process-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.process-row span { color: var(--pink); font-weight: 950; }
.process-row h3 { margin: 0 0 5px; font-size: 1.02rem; text-transform: uppercase; }
.process-row p { margin: 0; color: var(--muted); }

.contact { padding: 0; background: #be1458; color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; }
.contact-copy { padding: 94px 7vw 94px max(20px, calc((100vw - var(--max)) / 2)); }
.contact-copy .eyebrow { color: var(--white); }
.contact-copy h2 { max-width: 520px; }
.contact-copy p { max-width: 520px; color: var(--white); }
.contact-person { margin: 28px 0 0; }
.contact-person strong, .contact-person span { display: block; }
.quote-checklist { padding-left: 1.2em; margin: 24px 0; }
.quote-checklist li { margin-bottom: 8px; }
.contact-direct { margin-top: 46px; display: grid; gap: 10px; }
.contact-direct a { width: fit-content; font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.contact-form { padding: 76px max(20px, calc((100vw - var(--max)) / 2)) 76px 7vw; background: var(--panel-2); }
.field { margin-bottom: 18px; }
label { display: block; margin-bottom: 8px; color: #d6d6db; font-size: .875rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
input, textarea, select {
  width: 100%;
  border: 1px solid #3a3a42;
  border-radius: 0;
  background: #0f0f12;
  color: var(--white);
  padding: 15px 16px;
  font-size: 1rem;
}
input::placeholder, textarea::placeholder { color: #777780; }
textarea { min-height: 128px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin: 15px 0 0; color: #b3b3bb; font-size: .9rem; }
.form-intro { color: #c1c1c8; margin: 0 0 26px; }
.form-title { margin-bottom: 12px; font-size: 1.4rem; }
.form-fallback { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 18px; }
.form-fallback summary { cursor: pointer; padding: 8px 0; font-weight: 750; }
.form-fallback p { color: #c1c1c8; }
#copy-output { margin-top: 16px; min-height: 190px; }
#form-status:not(:empty) { margin-top: 18px; padding: 14px 16px; border-left: 3px solid var(--pink); background: var(--panel); }
.contact-form .button { width: 100%; margin-top: 6px; }
.faq { background: var(--ink); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; }
.faq .section-head { margin-bottom: 0; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 24px 8px 24px 0; font-size: 1.1rem; font-weight: 750; }
.faq-list details p { margin: 0 0 24px; color: #c1c1c8; }
.mobile-contact { display: none; }

footer { background: #050506; }
.footer-main {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding-block: 52px;
}
.footer-main img { width: 180px; height: 74px; object-fit: contain; }
.footer-block { display: grid; align-content: start; gap: 4px; }
.footer-label { margin-bottom: 10px; color: var(--pink); font-size: .875rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-block strong { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; }
.footer-block span, .footer-block a { color: #a3a3ab; text-decoration: none; }
.footer-block a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { padding-block: 20px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #a3a3ab; font-size: .875rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: 760px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-icon { margin-top: 36px; }
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-stamp { position: relative; top: auto; width: 280px; margin-bottom: 56px; }
  .contact-copy, .contact-form { padding: 76px max(20px, calc((100vw - var(--max)) / 2)); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-main > img { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html { scroll-padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 78px; gap: 12px; }
  .brand img { width: 134px; height: 54px; }
  .nav > .button { min-height: 44px; padding-inline: 17px; font-size: .84rem; }
  .hero { min-height: auto; padding: 140px 0 70px; }
  .hero-title { font-size: clamp(2.75rem, 12.8vw, 4.9rem); line-height: .98; letter-spacing: -.035em; }
  .hero-heading { font-size: 1.3rem; }
  h2 { font-size: clamp(2.15rem, 9.5vw, 3.5rem); line-height: 1.02; }
  .hero-actions .button { width: 100%; padding: 12px 16px; }
  .eyebrow { letter-spacing: .08em; }
  .eyebrow::before { flex-shrink: 0; width: 22px; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 50px; }
  .proof { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .proof + .proof { padding-left: 0; border-left: 0; }
  .materials-track { flex-wrap: wrap; justify-content: center; gap: 10px 22px; padding: 20px; font-size: .875rem; white-space: normal; }
  .materials-track span::after { display: none; }
  .section { padding: 82px 0; }
  .service-card { padding: 28px; }
  .about-stamp { width: 230px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-copy, .contact-form { padding: 68px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding-block: 46px; }
  .footer-main > img { grid-column: auto; }
  .footer-main img { width: 160px; height: 64px; }
  .mobile-contact { position: fixed; z-index: 20; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: #09090bf5; border-top: 1px solid var(--line); }
  .mobile-contact .button { min-height: 46px; padding: 10px 8px; font-size: .875rem; }
  .contact-direct a { overflow-wrap: anywhere; }
}

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

/* Service detail page shares the established Kupe visual identity. */
.service-hero { padding: 150px 0 80px; background: radial-gradient(ellipse at 90% 10%, #f2297b19, transparent 65%), var(--panel); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; color: var(--muted); font-size: .9rem; }
.breadcrumb a { text-underline-offset: 4px; }
.detail-title { max-width: 960px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.4rem, 6.2vw, 5.6rem); font-style: italic; line-height: 1.02; letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 30px; overflow-wrap: break-word; hyphens: auto; }
.detail-title span { color: var(--pink); }
.detail-layout { display: grid; grid-template-columns: 1.4fr 1fr; align-items: start; gap: 7vw; }
.detail-content article + article { border-top: 1px solid var(--line); padding-top: 48px; margin-top: 48px; }
.detail-content h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.04; overflow-wrap: break-word; hyphens: auto; }
.detail-content p { color: #c1c1c8; font-size: 1.05rem; }
.detail-content .eyebrow { color: var(--pink-bright); font-size: .875rem; }
.detail-note { padding: 18px 22px; border-left: 3px solid var(--pink); background: var(--panel-2); }
.quote-panel { position: sticky; top: 24px; padding: 30px; border: 1px solid var(--line); background: var(--panel-2); }
.quote-panel h2 { font-size: 2rem; line-height: 1.04; }
.quote-panel .eyebrow { letter-spacing: .06em; }
.quote-panel .eyebrow::before { display: none; }
.quote-panel > p { color: #c1c1c8; }
.quote-panel .button { width: 100%; margin-top: 12px; padding: 12px; }
.work-area { border-top: 1px solid var(--line); background: var(--panel); }
.work-area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.work-area .section-head { margin: 0; }
.work-area-layout > div > p { color: #c1c1c8; font-size: 1.1rem; }
@media (max-width: 900px) {
  .detail-layout, .work-area-layout { grid-template-columns: 1fr; gap: 48px; }
  .quote-panel { position: static; }
}
@media (max-width: 620px) {
  .service-hero { padding: 116px 0 58px; }
  .breadcrumb { margin-bottom: 28px; }
  .quote-panel { padding: 24px; }
}
