@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@600;700&family=Syncopate:wght@700&display=swap');

:root {
  --black: #07090a;
  --ink: #0b0e10;
  --paper: #efeee8;
  --white: #ffffff;
  --acid: #3155ff;
  --muted: #646d6b;
  --dark-line: #343a3c;
  --light-line: #b5bab7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
}
a { color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Anton, Oswald, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
h2 {
  margin: 14px 0 30px;
  font-size: clamp(3.7rem, 5.4vw, 6.7rem);
  line-height: .93;
  letter-spacing: -.035em;
}
h3 { letter-spacing: -.02em; }
em { color: var(--acid); font-style: normal; }

.skip {
  position: absolute;
  top: -100px;
  z-index: 100;
  padding: 15px;
  background: white;
}
.skip:focus { top: 0; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  padding: 0 max(5vw, 28px);
  color: white;
  background: var(--black);
  border-bottom: 1px solid var(--dark-line);
}
.brand {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: Syncopate, 'Eurostile Extended', 'Square 721', Arial, sans-serif;
  font-size: 2.32rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
  text-decoration: none;
}
.brand-word {
  display: block;
}
.brand small {
  margin: 9px 0 0 1px;
  color: #d1d6d4;
  font-family: Manrope, Arial, sans-serif;
  font-size: .66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .27em;
}
.site-header nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 42px); }
.site-header nav a { font-size: .9rem; font-weight: 800; text-decoration: none; }
.site-header nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta {
  min-width: 190px;
  padding: 18px 22px;
  color: white;
  background: var(--acid);
}
.nav-cta span { float: right; margin-left: 18px; }
.mobile-cta { display: none; }
.arrow { font-family: Arial, sans-serif; font-size: 1.2em; line-height: 1; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: white;
  background: var(--black);
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img {
  object-position: 68% 54%;
  filter: saturate(1) contrast(1.01) brightness(1.24);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 7, 8, .72) 0%, rgba(4, 7, 8, .31) 38%, rgba(4, 7, 8, .035) 72%, rgba(4, 7, 8, 0) 100%),
    linear-gradient(90deg, rgba(4, 7, 8, .24) 0%, rgba(4, 7, 8, 0) 78%);
}
.hero::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 9px;
  height: 43%;
  background: var(--acid);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(72%, 980px);
  min-height: 790px;
  padding: 96px max(5vw, 28px) 58px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .68);
}
.eyebrow {
  margin-bottom: 14px;
  font-size: .73rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.yellow-line {
  display: inline-block;
  width: 34px;
  height: 5px;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--acid);
}
h1 {
  margin: 17px 0 22px;
  font-size: clamp(4.7rem, 7.1vw, 8.7rem);
  line-height: .9;
  letter-spacing: -.015em;
}
.hero-title-line { display: block; white-space: nowrap; }
.hero h1 em { color: white; }
.hero-title-schedule em span { display: inline; }
.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: #f1f3f2;
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  line-height: 1.65;
}
.hero-lead-sentence + .hero-lead-sentence::before { content: " "; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin: 30px 0 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 226px;
  padding: 20px 23px;
  gap: 28px;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
}
.button.accent { color: white; background: var(--acid); box-shadow: 8px 8px 0 rgba(255, 255, 255, .16); }
.button:hover, .nav-cta:hover, .mobile-cta:hover { background: #5873ff; }
.text-link {
  padding-bottom: 7px;
  border-bottom: 1px solid white;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.hero-audience {
  margin: 0;
  color: #d8dddb;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.audience-strip {
  margin: 0;
  padding: 19px max(5vw, 28px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--light-line);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .24em;
  text-align: center;
  text-transform: uppercase;
}
.audience-strip span { margin: 0 12px; color: var(--acid); }
.photo-label {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 3vw;
  display: flex;
  gap: 14px;
  align-items: center;
  color: white;
  font-size: .66rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.photo-label span { color: var(--acid); }
.hero-index {
  position: absolute;
  z-index: 2;
  right: 3vw;
  bottom: 30px;
  color: #d9dfdd;
  font-size: .6rem;
  letter-spacing: .2em;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 31px max(5vw, 28px);
  gap: 0;
  color: var(--ink);
  background: white;
  border-top: 7px solid var(--acid);
  border-bottom: 2px solid var(--ink);
}
.proof-strip p {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 5px;
  margin: 0;
  padding: 3px 26px 3px 0;
  border-right: 1px solid var(--light-line);
}
.proof-strip p::before {
  content: '\2713';
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: white;
  background: var(--acid);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
}
.proof-strip p:last-child { border-right: 0; }
.proof-strip strong {
  grid-column: 2;
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.16rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.proof-strip span { grid-column: 2; color: var(--muted); font-size: .84rem; }

.section { padding: 124px max(5vw, 28px); }
.services { color: var(--ink); background: var(--paper); }
.services .section-head h2::after { display: none; }
.section-head {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 8%;
  align-items: end;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}
.section-head h2 { margin-bottom: 0; }
.section-head h2 em { color: var(--ink); }
.section-head h2::after {
  content: '';
  display: block;
  width: 84px;
  height: 9px;
  margin-top: 28px;
  background: var(--acid);
}
.section-head > .section-summary {
  max-width: 470px;
  margin-bottom: 9px;
  color: #343c3a;
  font-size: 1rem;
  line-height: 1.65;
}
.section-summary strong {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.45;
}
.section-summary span { display: block; margin-top: 10px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}
.service-list article {
  position: relative;
  min-width: 0;
  min-height: clamp(360px, 39vw, 560px);
  overflow: hidden;
  background: var(--ink);
}
.service-image {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  filter: none;
  transition: transform .5s ease, filter .5s ease;
}
.service-list article:hover .service-image { transform: scale(1.025); filter: saturate(1.08) contrast(1.03); }
.service-list article:nth-child(1) .service-image { object-position: 50% 55%; }
.service-list article:nth-child(2) .service-image,
.service-list article:nth-child(3) .service-image,
.service-list article:nth-child(4) .service-image { object-position: 50% 50%; }
.service-list article > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 64px 28px 27px;
  color: white;
  background: linear-gradient(transparent, rgba(4, 6, 8, .94) 52%);
}
.service-list h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.05;
}
.service-list p {
  margin: 0;
  color: #e5e9e7;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.work { color: white; background: var(--black); }
.work-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 7%;
  margin-bottom: 46px;
  padding-top: 20px;
  border-top: 1px solid #5b6362;
}
.work-intro .eyebrow { grid-column: 1 / -1; color: #c9cfcd; }
.work-intro h2 { margin-bottom: 0; }
.work-intro h2 em { color: white; }
.work-title-line { display: block; }
.work-title-more { display: inline; }
.work-intro > p:last-child {
  max-width: 470px;
  align-self: end;
  color: #c6cdcb;
  font-size: 1rem;
  line-height: 1.7;
}
.work-summary span { display: block; }
.work-feature { position: relative; height: min(65vw, 660px); min-height: 410px; overflow: hidden; }
.work-feature img { object-position: center 62%; filter: brightness(1.16) saturate(1.06) contrast(.98); }
.work-feature::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
}
.work-feature span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  background: rgba(5, 8, 9, .87);
  border-left: 7px solid var(--acid);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.gallery figure { position: relative; height: clamp(240px, 27vw, 390px); margin: 0; overflow: hidden; background: #202526; }
.gallery img { filter: brightness(1.06) saturate(1.04) contrast(1.01); transition: filter .35s, transform .35s; }
.gallery figure:hover img { filter: brightness(1.1) saturate(1.13) contrast(1.02); transform: scale(1.025); }
.gallery figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  padding: 9px 11px;
  color: white;
  background: rgba(5, 8, 9, .87);
  border-left: 5px solid var(--acid);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.references {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 720px;
  color: var(--ink);
  background: #d9d8d2;
  overflow: hidden;
}
.references::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url('assets/IMG_0004-purak.webp') center 50% / cover no-repeat;
  filter: brightness(1.12) saturate(.96);
  transform: scale(1.02);
}
.references::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 240, 234, .88) 0%, rgba(241, 240, 234, .68) 50%, rgba(241, 240, 234, .42) 100%),
    linear-gradient(0deg, rgba(241, 240, 234, .76), rgba(241, 240, 234, .22) 68%);
}
.references-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  padding-top: 26px;
  border-top: 2px solid rgba(11, 14, 16, .72);
}
.references-head .eyebrow {
  margin: 0;
  color: var(--ink);
  font-family: Anton, Oswald, Impact, sans-serif;
  font-size: clamp(3.6rem, 6.7vw, 7.2rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.025em;
}
.references-head > p:last-child {
  max-width: 28ch;
  margin: 0 0 8px;
  color: #242b2a;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;
}
.reference-panel {
  padding-top: 52px;
  color: var(--ink);
}
.reference-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.reference-panel li {
  position: relative;
  min-height: 245px;
  padding: 106px 28px 28px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(250, 249, 244, .84);
  border: 1px solid rgba(11, 14, 16, .38);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(11, 14, 16, .14);
}
.reference-panel li::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 28px;
  width: 54px;
  height: 6px;
  background: var(--acid);
}
.reference-panel li span { display: block; font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 800; line-height: 1.2; }
.reference-panel small { display: block; margin-top: 10px; color: #4d5654; font-size: .94rem; }

.contact {
  position: relative;
  scroll-margin-top: 20px;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, .62) 0%, rgba(5, 8, 9, .37) 53%, rgba(5, 8, 9, .10) 100%),
    url('assets/IMG_0337-purak.webp') center 56% / cover no-repeat;
}
.contact h2,
.contact > p,
.contact-grid { text-shadow: 0 3px 20px rgba(0, 0, 0, .72); }
.contact .eyebrow { color: var(--acid); }
.contact-kicker { display: flex; flex-wrap: wrap; }
.contact-kicker span + span::before { content: " · "; white-space: pre; }
.contact h2 { max-width: 990px; }
.contact h2 em { color: white; }
.contact > p:not(.eyebrow) {
  max-width: 630px;
  color: #e1e5e3;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-button { margin-top: 26px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid #717876;
  border-bottom: 1px solid #717876;
}
.contact-grid > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 142px;
  padding: 22px 22px 22px 0;
  border-right: 1px solid #717876;
}
.contact-grid > div:last-child { border-right: 0; padding-left: 22px; }
#tarjouspyynnot { scroll-margin-top: 24px; }
.contact-grid > div:nth-child(2) { padding-left: 22px; }
.contact-grid span { color: #c8cfcd; font-size: .78rem; }
.contact-grid strong {
  color: white;
  font-family: Anton, Oswald, Impact, sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}
.contact-grid strong a {
  color: inherit;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.offer-dialog {
  width: min(620px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  color: white;
  background: var(--black);
  border: 1px solid #4a5153;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
  overflow: auto;
}
.offer-dialog::backdrop {
  background: rgba(3, 5, 6, .78);
  backdrop-filter: blur(5px);
}
.offer-dialog-panel { position: relative; padding: 46px 52px; }
.offer-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: white;
  background: transparent;
  border: 1px solid #62696b;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.offer-dialog .eyebrow { margin-bottom: 16px; color: var(--acid); }
.offer-dialog h2 { margin: 0 0 20px; font-size: clamp(2.8rem, 6.5vw, 4.45rem); }
.offer-dialog h2 em { color: white; }
.offer-dialog-lead { max-width: 48ch; margin-bottom: 26px; color: #d8dddb; line-height: 1.6; }
.offer-honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.offer-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.offer-field { display: flex; flex-direction: column; gap: 7px; }
.offer-field-wide { grid-column: 1 / -1; }
.offer-field > span {
  color: #d8dddb;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.offer-field input,
.offer-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 2px solid transparent;
  border-radius: 0;
  font: 600 1rem/1.35 Manrope, Arial, sans-serif;
}
.offer-field textarea { min-height: 112px; resize: vertical; }
.offer-field input:focus,
.offer-field textarea:focus { border-color: var(--acid); outline: 0; }
.offer-privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 20px;
  color: #cbd1cf;
  font-size: .8rem;
  line-height: 1.5;
}
.offer-privacy input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--acid); }
.offer-privacy a { color: white; text-underline-offset: 3px; }
.offer-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}
.offer-submit:disabled { cursor: wait; opacity: .62; }
.offer-form-status { min-height: 1.5em; margin: 14px 0 0; color: #ffb4b4; font-size: .84rem; line-height: 1.45; }
.offer-success[hidden] { display: none; }
.offer-success { padding: 34px 0 20px; }
.offer-success h2 { margin-bottom: 22px; }
.offer-success > p:not(.eyebrow) { max-width: 40ch; color: #d8dddb; line-height: 1.65; }
.offer-new-button {
  margin-top: 20px;
  padding: 0 0 6px;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid white;
  font: 800 .85rem/1.3 Manrope, Arial, sans-serif;
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 48px max(5vw, 28px);
  color: white;
  background: var(--black);
  border-top: 1px solid var(--dark-line);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-brand > span { color: #aeb6b4; font-size: .82rem; }
.footer-brand .brand { font-size: 1.8rem; }
.footer-brand .brand small { font-size: .44rem; }
footer nav { display: flex; gap: 28px; align-items: center; }
footer a { font-size: .82rem; text-underline-offset: 5px; }

.privacy-body { background: var(--paper); }
.privacy-header .brand { flex-shrink: 0; }
.privacy-main { max-width: 980px; margin: 0 auto; padding: 90px 28px 110px; }
.privacy-main .eyebrow { color: #5e6664; }
.privacy-main h1 { margin: 12px 0 24px; color: var(--ink); font-size: clamp(4rem, 8vw, 7rem); line-height: .96; }
.privacy-lead { max-width: 680px; margin-bottom: 55px; color: #4e5755; font-size: 1.08rem; line-height: 1.7; }
.privacy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 2px solid var(--ink); border-left: 1px solid var(--light-line); }
.privacy-section { padding: 30px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.privacy-section.wide { grid-column: 1 / -1; }
.privacy-section h2 { margin: 0 0 14px; font-size: 1.65rem; line-height: 1.15; letter-spacing: 0; }
.privacy-section p, .privacy-section li { color: #404846; font-size: .94rem; line-height: 1.7; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { margin: 0; padding-left: 20px; }
.privacy-updated { margin-top: 30px; color: #68716f; font-size: .78rem; }
a:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { height: 96px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero, .hero-copy { min-height: 730px; }
  .hero-copy { width: 88%; }
  h1 { font-size: clamp(3.4rem, 8.3vw, 5rem); }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip p:nth-child(2) { border-right: 0; }
  .proof-strip p:nth-child(3) { grid-column: 1 / -1; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--light-line); }
  .section-head { grid-template-columns: 1fr; }
  .section-head > p { margin-top: 28px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .work-intro { grid-template-columns: 1fr; }
  .work-intro > p:last-child { margin-top: 25px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .mobile-wide { grid-column: 1 / -1; }
  .reference-panel ul { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-header { height: 108px; padding: 0 clamp(18px, 5.3vw, 22px); gap: 12px; }
  .brand {
    flex: 0 1 auto;
    font-size: 1.92rem;
  }
  .brand small {
    margin-top: 9px;
    color: #e2e6e5;
    font-size: .62rem;
    letter-spacing: .1em;
  }
  .site-header nav { display: none; }
  .mobile-cta {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    min-width: clamp(120px, 32vw, 138px);
    padding: 15px 12px;
    color: white;
    background: var(--acid);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .hero, .hero-copy { min-height: 690px; }
  .hero, .hero-copy { min-height: calc(100svh - 108px); }
  .hero-copy {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 54px 20px 38px;
    align-items: center;
    text-align: center;
  }
  .hero-photo img { object-position: 58% center; }
  .hero-photo::after {
    background:
      linear-gradient(0deg, rgba(4, 7, 8, .68) 0%, rgba(4, 7, 8, .29) 31%, rgba(4, 7, 8, .035) 66%, rgba(4, 7, 8, 0) 100%),
      radial-gradient(ellipse at 50% 58%, rgba(4, 7, 8, .22) 0%, rgba(4, 7, 8, .07) 46%, rgba(4, 7, 8, 0) 76%);
  }
  .hero::after { width: 7px; height: 34%; }
  .hero .eyebrow { font-size: .76rem; letter-spacing: .2em; }
  h1 { width: 100%; font-size: clamp(3rem, 13.4vw, 4.2rem); line-height: .98; letter-spacing: -.005em; }
  .hero-title-schedule { width: 100%; padding-top: .16em; text-align: center; }
  .hero-title-schedule em { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .hero-title-schedule em span { display: block; width: max-content; }
  .hero-title-schedule em span + span { margin-top: .04em; }
  .hero-lead { max-width: 35ch; font-size: .98rem; line-height: 1.58; }
  .hero-lead-sentence { display: block; }
  .hero-lead-sentence + .hero-lead-sentence { margin-top: .36em; }
  .hero-lead-sentence + .hero-lead-sentence::before { content: none; }
  .hero-actions { justify-content: center; margin: 28px 0 29px; }
  .hero .text-link { display: none; }
  .button { min-width: 224px; padding: 19px 20px; font-size: .91rem; }
  .hero-audience { max-width: 330px; font-size: .7rem; line-height: 1.7; }
  .audience-strip {
    padding: 19px 14px;
    font-size: .63rem;
    letter-spacing: .1em;
  }
  .audience-strip span { margin: 0 4px; }
  .photo-label, .hero-index { display: none; }
  .proof-strip { grid-template-columns: 1fr; padding: 20px 24px; }
  .proof-strip p, .proof-strip p:nth-child(2) {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }
  .proof-strip p:nth-child(3) {
    grid-column: auto;
    margin: 0;
    padding: 18px 0 7px;
    border-top: 0;
    border-bottom: 0;
  }
  .proof-strip p::before { width: 24px; height: 24px; margin-top: 1px; font-size: .72rem; }
  .proof-strip strong { font-size: 1.08rem; }
  .proof-strip span { font-size: .82rem; }
  .section { padding: 88px 20px; }
  h2 { font-size: clamp(3rem, 13.7vw, 4.2rem); }
  .section h2 { font-size: clamp(2.7rem, 11.8vw, 3.6rem); }
  .section-head { gap: 0; padding-top: 18px; }
  .section-head h2 { line-height: 1.04; }
  .section-head > .section-summary {
    max-width: 34ch;
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .section-summary strong { font-size: 1.05rem; line-height: 1.42; }
  .section-summary span { margin-top: 12px; }
  .section-head h2::after { width: 64px; height: 7px; margin-top: 22px; }
  .service-list { grid-template-columns: 1fr; gap: 8px; margin-top: 44px; }
  .service-list article { min-height: 335px; }
  .service-list article > div { padding: 70px 22px 24px; }
  .service-list h3 { font-size: clamp(1.9rem, 8.4vw, 2.45rem); hyphens: auto; }
  .service-list p { font-size: .75rem; letter-spacing: .11em; }
  .work-intro { margin-bottom: 26px; }
  .work-intro h2 { font-size: clamp(3.25rem, 14vw, 4.5rem); line-height: .96; }
  .work-title-line + .work-title-line { padding-top: .08em; }
  .work-title-more { display: block; padding-top: .08em; }
  .work-intro > .work-summary { max-width: 31ch; margin-top: 30px; font-size: 1rem; line-height: 1.55; }
  .work-feature { height: 410px; min-height: 0; }
  .gallery { gap: 6px; margin-top: 6px; }
  .gallery figure { height: 235px; }
  .gallery .mobile-wide { height: 310px; }
  .gallery figcaption { right: 6px; bottom: 6px; left: 6px; padding: 7px 8px; font-size: .6rem; }
  .references { min-height: 900px; padding-top: 94px; padding-bottom: 94px; }
  .references::before { background-position: 48% center; }
  .references::after {
    background:
      linear-gradient(0deg, rgba(241, 240, 234, .84) 0%, rgba(241, 240, 234, .62) 56%, rgba(241, 240, 234, .34) 100%),
      linear-gradient(90deg, rgba(241, 240, 234, .58), rgba(241, 240, 234, .22));
  }
  .references-head { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .references-head .eyebrow { font-size: clamp(2.5rem, 10.8vw, 3.35rem); }
  .references-head > p:last-child {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(.9rem, 4vw, 1rem);
  }
  .reference-panel { padding-top: 38px; }
  .reference-panel ul { grid-template-columns: 1fr; gap: 7px; }
  .reference-panel li { min-height: 158px; padding: 72px 20px 20px; }
  .reference-panel li::before { top: 25px; left: 20px; width: 46px; height: 5px; }
  .reference-panel li span { font-size: 1.35rem; }
  .reference-panel small { font-size: .9rem; }
  .contact {
    background:
      linear-gradient(90deg, rgba(5, 8, 9, .54), rgba(5, 8, 9, .16)),
      url('assets/IMG_0337-purak.webp') 60% center / cover no-repeat;
  }
  .contact .contact-kicker {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: fit-content;
    font-size: .76rem;
    line-height: 1.45;
    letter-spacing: .2em;
    text-shadow: 0 2px 8px #000, 0 3px 20px rgba(0, 0, 0, .92);
  }
  .contact-kicker span:last-child { font-size: .94rem; }
  .contact-kicker span + span::before { content: none; }
  .contact h2 { margin-top: 30px; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .contact-grid > div, .contact-grid > div:nth-child(2), .contact-grid > div:last-child {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #717876;
  }
  .contact-grid > div:last-child { border-bottom: 0; }
  footer { flex-direction: column; align-items: flex-start; padding: 40px 22px; }
  .footer-brand .brand { font-size: 1.65rem; }
  footer nav { width: 100%; justify-content: space-between; gap: 18px; }
  .privacy-header .mobile-cta { display: inline-flex; }
  .privacy-main { padding: 65px 22px 82px; }
  .privacy-main h1 { font-size: clamp(3.3rem, 17vw, 4.8rem); }
  .privacy-lead { margin-bottom: 38px; font-size: 1rem; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-section, .privacy-section.wide { grid-column: auto; padding: 24px 20px; }
  .offer-dialog-panel { padding: 48px 22px 30px; }
  .offer-dialog h2 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .offer-form-grid { grid-template-columns: 1fr; gap: 13px; }
  .offer-field-wide { grid-column: auto; }
  .offer-submit { min-height: 58px; }
}

@media (max-width: 360px) {
  .site-header { padding: 0 10px; gap: 4px; }
  .brand {
    flex-basis: auto;
    font-size: 1.63rem;
  }
  .brand small { font-size: .55rem; letter-spacing: .09em; }
  .mobile-cta { min-width: 105px; padding: 13px 8px; font-size: .66rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery img { transition: none; }
}
