:root {
  --ink: #18211f;
  --muted: #5d6762;
  --line: #d9ddd6;
  --paper: #f8f7f1;
  --soft: #eeefe8;
  --mint: #2ca88f;
  --red: #e85b3b;
  --yellow: #f3c74a;
  --blue: #2e86a6;
  --green: #7ca46e;
  --black: #111817;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 24, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 34px;
  background: rgba(248, 247, 241, 0.9);
  border-bottom: 1px solid rgba(24, 33, 31, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #2f3835;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(44, 168, 143, 0.14);
  outline: none;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-proof-mosaic.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 247, 241, 0.98) 0%, rgba(248, 247, 241, 0.95) 42%, rgba(248, 247, 241, 0.48) 57%, rgba(248, 247, 241, 0.04) 72%, rgba(248, 247, 241, 0) 100%),
    linear-gradient(0deg, rgba(24, 33, 31, 0.08), rgba(24, 33, 31, 0.01));
  z-index: -1;
}

.hero-inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 84vh;
  margin: 0 auto;
  padding: 82px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  font-weight: 800;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 58px;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #26302d;
  font-size: 20px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #25312e;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 33, 31, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--mint);
  background: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin: 0;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid rgba(24, 33, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.hero-metrics dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--white);
}

.strip-item {
  padding: 28px 34px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.strip-item span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: end;
  max-width: none;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.section-head-split > p {
  margin-bottom: 2px;
}

.advantage-section {
  border-bottom: 1px solid var(--line);
}

.advantage-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}

.advantage-grid {
  grid-template-columns: repeat(4, 1fr);
}

.advantage-item,
.faq-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.advantage-item {
  border-top: 5px solid var(--mint);
}

.advantage-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.advantage-item p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.format-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
}

.format-strip a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.format-strip a:last-child {
  border-right: 0;
}

.format-strip a:hover,
.format-strip a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: none;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item h3 {
  font-size: 20px;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 24px;
}

.proof-bar span {
  padding: 8px 10px;
  color: #34403c;
  background: #f1f3ed;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.filter-button {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 23, 0.08);
}

.case-card.is-hidden {
  display: none;
}

.case-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.case-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--soft);
  transition: transform 180ms ease, filter 180ms ease;
}

.case-card-large img {
  height: 100%;
  min-height: 360px;
}

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.case-body p {
  color: #4f5955;
}

.case-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-topline span {
  padding: 5px 8px;
  color: #26302d;
  background: #edf1ec;
  border: 1px solid #dbe2db;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 18px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 8px;
  border-left: 3px solid var(--mint);
  background: #f2f5f1;
  color: #46504c;
  font-size: 12px;
  font-weight: 700;
}

.case-link {
  align-self: flex-start;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  font-weight: 900;
}

.case-link:hover,
.case-link:focus-visible {
  color: var(--red);
  outline: none;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 0;
}

.case-actions .case-link {
  margin: 0;
}

.case-detail-button {
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: #f7f8f4;
  border: 1px solid #d8ded7;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.case-detail-button:hover,
.case-detail-button:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.services-section {
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-item {
  min-height: 225px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.service-number {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
}

.service-item p {
  color: var(--muted);
}

.reviews-section {
  border-top: 1px solid var(--line);
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 239, 232, 0.76)),
    var(--white);
}

.profile-portrait {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center 22%;
}

.profile-copy {
  align-self: center;
  padding: 8px 8px 8px 0;
}

.profile-copy h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.05;
}

.profile-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(24, 33, 31, 0.14);
}

.profile-facts div {
  min-width: 0;
}

.profile-facts dt {
  color: var(--ink);
  font-weight: 900;
}

.profile-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.review-card {
  min-height: 205px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  color: #34403c;
  background: #f1f3ed;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.review-card p {
  color: var(--muted);
}

.review-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-shot img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 180ms ease, filter 180ms ease;
}

.review-shot figcaption {
  padding: 14px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.photo-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.photo-copy {
  position: sticky;
  top: 110px;
}

.photo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.photo-tile {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, rgba(17, 28, 25, 0) 0%, rgba(17, 28, 25, 0.52) 100%);
  pointer-events: none;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.photo-tile figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 7px;
  background: rgba(250, 248, 240, 0.88);
  color: var(--black);
  box-shadow: 0 8px 22px rgba(17, 28, 25, 0.18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.photo-tile-tall {
  grid-row: span 2;
}

.photo-tile-tall img {
  min-height: 452px;
}

.photo-tile-wide {
  grid-column: span 2;
}

.photo-tile-portrait {
  grid-column: span 2;
  min-height: 330px;
}

.photo-tile-portrait img {
  min-height: 330px;
  object-position: center 45%;
}

.photo-tile-reportage {
  min-height: 300px;
}

.photo-tile-reportage img {
  min-height: 300px;
  object-position: center center;
}

.photo-tile-lifestyle,
.photo-tile-lifestyle img {
  min-height: 452px;
}

.photo-tile-lifestyle img {
  object-position: center 34%;
}

.photo-tile-wedding img {
  object-position: center 22%;
}

.zoomable-image {
  cursor: zoom-in;
}

.zoomable-image:hover {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.zoomable-image:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.image-lightbox {
  width: min(96vw, 1480px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(8, 13, 12, 0.86);
  backdrop-filter: blur(14px);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
  gap: 14px;
}

.lightbox-frame {
  display: grid;
  place-items: center;
  width: 100%;
  max-height: 84vh;
  padding: 14px;
  background: rgba(238, 239, 232, 0.08);
  border: 1px solid rgba(238, 239, 232, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(84vh - 28px);
  object-fit: contain;
  border-radius: 6px;
  background: var(--black);
}

.lightbox-caption {
  max-width: min(92vw, 980px);
  margin: 0;
  color: rgba(248, 247, 241, 0.86);
  text-align: center;
  font-size: 15px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(248, 247, 241, 0.6);
  border-radius: 50%;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--white);
  background: var(--red);
  outline: none;
}

.case-dialog {
  width: min(94vw, 1120px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(8, 13, 12, 0.42);
}

.case-dialog::backdrop {
  background: rgba(8, 13, 12, 0.72);
  backdrop-filter: blur(12px);
}

.case-dialog[open] {
  display: block;
}

.case-dialog-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
}

.case-dialog-media {
  min-height: 100%;
  margin: 0;
  background: var(--black);
}

.case-dialog-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.case-dialog-copy {
  max-height: 92vh;
  padding: 30px;
  overflow: auto;
}

.case-dialog-copy .eyebrow {
  margin-bottom: 10px;
}

.case-dialog-copy h2 {
  margin-bottom: 12px;
  font-size: 38px;
}

.case-dialog-copy > p {
  color: #4f5955;
  font-size: 17px;
}

.case-dialog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 16px;
}

.case-dialog-block {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-dialog-block h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.case-dialog-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #4f5955;
  font-size: 14px;
}

.case-dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.case-dialog-tags span {
  padding: 6px 8px;
  color: #26302d;
  background: #e9eee8;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.case-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: rgba(248, 247, 241, 0.94);
  border: 1px solid rgba(17, 24, 23, 0.14);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(8, 13, 12, 0.22);
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--white);
  background: var(--red);
  outline: none;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  padding: 22px;
  border-top: 5px solid var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.process-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--blue);
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 70px;
  padding: 46px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: #d9dfda;
  font-size: 18px;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.contact-proof span {
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--white);
  background: var(--red);
  outline: none;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #dfe5e0;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f6f7f3;
  border: 1px solid transparent;
  border-radius: 6px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(243, 199, 74, 0.3);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 26px;
  margin: 0;
  color: #f4d66a;
  font-weight: 800;
}

.form-helper {
  margin: -4px 0 0;
  color: #c5cec8;
  font-size: 14px;
  line-height: 1.45;
}

.brief-output[hidden] {
  display: none;
}

.brief-output textarea {
  color: var(--ink);
  background: #fff9df;
}

.smart-picker {
  border-top: 1px solid var(--line);
}

.picker-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.picker-card {
  display: grid;
  min-height: 138px;
  padding: 18px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 24, 23, 0.06);
  cursor: pointer;
}

.picker-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.picker-card strong {
  align-self: end;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.08;
}

.picker-card em {
  color: #5c6662;
  font-style: normal;
  line-height: 1.4;
}

.picker-card:hover,
.picker-card:focus-visible,
.picker-card.is-active {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 18px 44px rgba(17, 24, 23, 0.12);
  transform: translateY(-2px);
}

.picker-card.is-active {
  background: #fff9df;
}

.picker-result {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(243, 199, 74, 0.18), transparent 34%),
    var(--ink);
  border-radius: 8px;
}

.picker-result .eyebrow {
  color: var(--yellow);
}

.picker-result h3 {
  color: var(--white);
}

.picker-result p {
  color: #d9dfda;
  font-size: 17px;
}

.picker-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.picker-points li {
  position: relative;
  padding-left: 18px;
  color: #e9eee8;
}

.picker-points li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
}

.picker-result .button {
  align-self: flex-start;
  margin-top: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 34px;
  color: #59625e;
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .case-grid,
  .service-grid,
  .review-grid,
  .advantage-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-strip .strip-item:nth-child(2) {
    border-right: 0;
  }

  .signal-strip .strip-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .format-strip a:nth-child(2) {
    border-right: 0;
  }

  .format-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .case-card-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .case-card-large img {
    min-height: 280px;
  }

  .photo-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .photo-copy {
    position: static;
  }

  .profile-card {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  }

  .profile-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .picker-panel,
  .case-dialog-layout {
    grid-template-columns: 1fr;
  }

  .case-dialog {
    overflow: auto;
  }

  .case-dialog-media img {
    height: 36vh;
    min-height: 320px;
  }

  .case-dialog-copy {
    max-height: none;
    overflow: visible;
  }

  .case-dialog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    width: min(100% - 32px, 1120px);
    padding: 56px 0 42px;
  }

  .hero-bg {
    opacity: 0.42;
    background-position: 64% center;
    transform: scale(1.04);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(248, 247, 241, 0.98), rgba(248, 247, 241, 0.9)),
      linear-gradient(0deg, rgba(248, 247, 241, 0.2), rgba(248, 247, 241, 0.72));
  }

  h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 18px;
    max-width: 100%;
  }

  .hero-metrics,
  .signal-strip,
  .section-head-split,
  .case-grid,
  .service-grid,
  .review-grid,
  .review-screens,
  .advantage-grid,
  .format-strip,
  .picker-grid,
  .faq-grid,
  .photo-grid,
  .process-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .strip-item {
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .format-strip a,
  .format-strip a:nth-child(2),
  .format-strip a:nth-child(-n + 2) {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .format-strip a:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 62px 0;
  }

  .profile-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .profile-portrait,
  .profile-portrait img {
    min-height: 360px;
  }

  .profile-portrait img {
    height: 360px;
  }

  .profile-copy {
    padding: 4px;
  }

  .profile-copy h3 {
    font-size: 28px;
  }

  .case-card-large {
    grid-column: auto;
  }

  .case-card img,
  .case-card-large img {
    height: 220px;
    min-height: 220px;
  }

  .case-actions {
    gap: 10px;
  }

  .case-detail-button {
    min-height: 34px;
  }

  .review-shot img {
    height: 380px;
  }

  .photo-tile,
  .photo-tile img,
  .photo-tile-tall img {
    min-height: 245px;
  }

  .photo-tile-tall,
  .photo-tile-wide,
  .photo-tile-portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile-lifestyle,
  .photo-tile-lifestyle img {
    min-height: 430px;
  }

  .image-lightbox {
    width: min(100vw - 18px, 760px);
    max-height: 92vh;
  }

  .lightbox-frame {
    max-height: 78vh;
    padding: 8px;
  }

  .lightbox-frame img {
    max-height: calc(78vh - 16px);
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .case-dialog {
    width: min(100vw - 18px, 760px);
    max-height: 92vh;
  }

  .case-dialog-media img {
    height: 240px;
    min-height: 240px;
  }

  .case-dialog-copy {
    padding: 22px 18px;
  }

  .case-dialog-copy h2 {
    font-size: 30px;
  }

  .picker-card {
    min-height: 116px;
  }

  .contact-section {
    padding: 28px 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
