:root {
  --ink: #12120f;
  --muted: #5f625b;
  --line: #dedbd0;
  --paper: #fffdf7;
  --soft: #f4f0e7;
  --sun: #f2c94c;
  --leaf: #23765a;
  --coral: #e86f51;
  --teal: #178e9a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(18, 18, 15, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[contenteditable="true"]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 54px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(18, 18, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(132px, 15vw, 188px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 130px clamp(20px, 6vw, 82px) 72px;
  overflow: hidden;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/images/hero/creative-team.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.82), rgba(18, 18, 15, 0.48) 48%, rgba(18, 18, 15, 0.08)),
    linear-gradient(0deg, rgba(18, 18, 15, 0.7), rgba(18, 18, 15, 0.08) 42%);
}

.hero__content {
  position: relative;
  width: min(1120px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost-dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.section {
  padding: clamp(70px, 9vw, 128px) 0;
}

.section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section__heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section__heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 34px;
  max-width: none;
}

.section__heading--split p:last-child {
  color: var(--muted);
}

.intro {
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro__copy {
  display: grid;
  gap: 18px;
}

.intro__copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.work-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card img,
.service-card__media img {
  display: block;
  width: 100%;
  height: clamp(170px, 16vw, 220px);
  object-fit: cover;
  object-position: center;
}

.service-card div,
.work-card div {
  padding: 22px;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card h4 {
  margin: 12px 0 10px;
  color: var(--leaf);
  font-size: 0.95rem;
  line-height: 1.25;
}

.service-card p,
.work-card p,
.process-grid p,
.about p,
.contact p {
  color: var(--muted);
}

.service-card__media,
.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card__media {
  display: block;
}

.service-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.service-page {
  padding-top: 0;
}

.service-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82svh;
  padding: 132px 0 clamp(54px, 8vw, 96px);
  overflow: hidden;
  background-image: var(--service-hero-image);
  background-position: center;
  background-size: cover;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.86), rgba(18, 18, 15, 0.54) 52%, rgba(18, 18, 15, 0.12)),
    linear-gradient(0deg, rgba(18, 18, 15, 0.66), rgba(18, 18, 15, 0.08) 50%);
}

.service-hero__inner {
  position: relative;
}

.service-hero__copy {
  display: grid;
  gap: 24px;
  width: min(980px, 100%);
  color: var(--white);
}

.service-hero .eyebrow {
  color: var(--sun);
}

.service-hero__copy h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.service-hero__copy > p,
.service-cta p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.service-focus {
  background: var(--white);
}

.service-focus__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.service-focus__grid > img {
  width: 100%;
  height: clamp(460px, 42vw, 680px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-focus__grid > div {
  display: grid;
  gap: 20px;
}

.service-focus__grid p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

.service-detail {
  background: var(--soft);
}

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

.service-list article {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 18, 15, 0.06);
}

.service-list span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--sun);
}

.service-list svg {
  width: 23px;
  height: 23px;
  fill: var(--ink);
}

.service-list p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-steps {
  background: var(--ink);
  color: var(--white);
}

.service-steps .eyebrow {
  color: var(--sun);
}

.service-steps .section__heading--split p:last-child,
.service-steps .process-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.service-steps .process-grid article {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.related-services {
  background: var(--paper);
}

.service-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-cta {
  background: var(--white);
}

.service-contact {
  background: var(--white);
}

.work {
  background: var(--paper);
}

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

.work-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: var(--case-image-aspect, 16 / 10);
  height: auto;
  object-fit: contain;
  object-position: top;
  background: var(--soft);
}

.work-card__media {
  display: block;
  text-decoration: none;
}

.work-card__media img {
  display: block;
}

.process {
  color: var(--white);
  background: var(--ink);
}

.process .eyebrow {
  color: var(--sun);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  min-height: 245px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.about__grid > img {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.about p {
  margin-top: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-size: 1.4rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonials {
  background: var(--soft);
}

.quote-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 26px;
  border-left: 6px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
}

blockquote p {
  font-size: 1.08rem;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.contact {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.contact-phone {
  display: inline-grid;
  gap: 2px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(18, 18, 15, 0.12);
}

.contact-phone span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-phone strong {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-weight: 900;
}

.contact-form span {
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbc7ba;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  min-height: 24px;
  color: var(--leaf) !important;
  font-weight: 900;
}

.form-note.is-error {
  color: #a83232 !important;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.turnstile-wrap {
  min-height: 65px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer__brand img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.footer__grid p {
  color: var(--muted);
  max-width: 780px;
  font-size: 1.05rem;
}

.footer__grid a {
  font-weight: 900;
  text-decoration: none;
}

.footer__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--ink);
}

.footer__legal {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer__legal a {
  font-weight: 900;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(520px, calc(100% - 32px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-banner > a {
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-page {
  padding-top: 70px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.policy-summary h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.policy-summary > p {
  color: var(--muted);
}

.policy-content {
  display: grid;
  gap: 22px;
}

.policy-content h2 {
  padding-top: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.policy-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

.policy-content a {
  color: var(--leaf);
  font-weight: 900;
}

.blog-page,
.admin-page {
  padding-top: 74px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card h3 a,
.post-categories a,
.share-links a,
.admin-list a {
  text-decoration: none;
}

.blog-search {
  display: flex;
  gap: 10px;
  align-items: end;
}

.blog-intro {
  max-width: 760px;
  margin: -34px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.topic-chips,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.topic-chips a,
.pagination a,
.pagination span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.popular-guides,
.related-posts {
  display: grid;
  gap: 22px;
  margin: 38px 0;
}

.popular-guides {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.blog-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-post {
  max-width: 900px;
}

.single-post h1 {
  margin-bottom: 20px;
}

.single-post__excerpt {
  color: var(--muted);
  font-size: 1.22rem;
  margin-bottom: 28px;
}

.single-post__image {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.share-links,
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.share-links a,
.post-categories a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

.post-toc {
  display: grid;
  gap: 8px;
  margin: 22px 0 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.post-toc strong {
  font-size: 1.05rem;
}

.post-toc a {
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.post-content {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 18px;
}

.post-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.post-cta {
  display: grid;
  gap: 14px;
  margin: 42px 0 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.post-cta h2 {
  color: var(--white);
}

.post-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.case-page,
.case-index-page,
.not-found-page {
  padding-top: 74px;
}

.case-hero,
.case-index-hero {
  background: var(--white);
}

.case-index-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
}

.case-index-hero__copy {
  max-width: 680px;
}

.case-index-hero h1 {
  font-size: clamp(3.45rem, 5.2vw, 5.3rem);
}

.case-index-hero__copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

.case-hero-showcase {
  position: relative;
  min-height: clamp(390px, 40vw, 540px);
}

.case-hero-shot {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.case-hero-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.case-hero-shot--1 {
  z-index: 2;
  top: 6%;
  left: 0;
  width: 76%;
}

.case-hero-shot--2 {
  z-index: 1;
  right: 0;
  bottom: 2%;
  width: 58%;
}

.case-hero-shot--3 {
  z-index: 3;
  right: 8%;
  top: 0;
  width: 38%;
}

.case-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.case-hero__grid > * {
  min-width: 0;
}

.case-hero h1,
.case-index-hero h1 {
  overflow-wrap: anywhere;
}

.case-hero__grid > img {
  width: 100%;
  aspect-ratio: var(--case-image-aspect, 16 / 10);
  height: auto;
  object-fit: contain;
  background: var(--soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-hero__grid p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.16rem;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.case-meta div,
.case-card-meta li,
.metric-grid article,
.case-breakdown article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.case-meta div {
  padding: 14px;
}

.case-meta dt {
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.case-detail {
  background: var(--soft);
}

.case-breakdown {
  background: var(--paper);
}

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

.case-breakdown article {
  padding: clamp(24px, 4vw, 38px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  content: "";
  font-size: 0.72rem;
  font-weight: 900;
}

.check-list li::after {
  position: absolute;
  top: 0.55em;
  left: 5px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
  transform: rotate(-45deg);
}

.case-solution,
.case-cta {
  background: var(--white);
}

.case-gallery {
  background: var(--soft);
}

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

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

.case-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: var(--case-gallery-aspect, 16 / 10);
  height: auto;
  object-fit: contain;
  background: #f6f2e8;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid article {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
}

.metric-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
}

.metric-grid p {
  color: var(--muted);
  font-weight: 800;
}

.case-related {
  background: var(--soft);
}

.case-index-work {
  background: var(--paper);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-bottom: clamp(54px, 8vw, 92px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-feature__media,
.case-feature__media img {
  display: block;
}

.case-feature__media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  text-decoration: none;
}

.case-feature__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.case-feature__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.case-feature__content h2 {
  margin-top: 8px;
  font-size: clamp(2.3rem, 4.8vw, 4.7rem);
  line-height: 0.96;
}

.case-feature__content h2 a {
  color: inherit;
  text-decoration: none;
}

.case-feature__content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.case-index-subhead {
  max-width: none;
}

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

.case-index-card {
  display: flex;
  flex-direction: column;
}

.case-index-card .work-card__media img {
  height: auto;
  min-height: 0;
}

.case-index-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.case-index-card h2 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.02;
}

.case-index-card h2 a {
  color: inherit;
  text-decoration: none;
}

.case-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-card-meta li {
  padding: 7px 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.case-index-card .service-card__link,
.case-feature .service-card__link {
  margin-top: auto;
}

.sitemap-page {
  padding-top: 74px;
}

.sitemap-hero {
  background: var(--white);
}

.sitemap-hero .section__heading {
  margin-bottom: 34px;
}

.sitemap-hero h1 {
  max-width: 900px;
}

.sitemap-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.sitemap-overview div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sitemap-overview strong,
.sitemap-overview span {
  display: block;
}

.sitemap-overview strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.sitemap-overview span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.sitemap-section {
  background: var(--soft);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.sitemap-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sitemap-panel h2,
.sitemap-articles .section__heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.sitemap-panel ul,
.sitemap-post-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-panel--categories ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sitemap-panel--categories {
  grid-column: 1 / -1;
}

.sitemap-panel--cases {
  grid-column: 1 / -1;
}

.sitemap-panel--cases ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sitemap-panel li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.sitemap-panel--categories li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sitemap-panel a,
.sitemap-post-list a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.sitemap-panel a:hover,
.sitemap-post-list a:hover {
  color: var(--leaf);
}

.sitemap-panel span,
.sitemap-post-list p,
.sitemap-post-list time {
  color: var(--muted);
  font-size: 0.94rem;
}

.sitemap-articles {
  background: var(--white);
}

.sitemap-post-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sitemap-post-list article {
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sitemap-post-list h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}

.sitemap-post-list p {
  margin-top: 6px;
}

.admin-page {
  min-height: 100svh;
  background: var(--soft);
  padding-bottom: 60px;
  color: var(--ink);
}

.admin-panel,
.admin-shell {
  width: min(1540px, calc(100% - 32px));
  margin: 24px auto 0;
}

.admin-panel,
.admin-content,
.admin-nav {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-panel {
  max-width: 620px;
  padding: 28px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.admin-nav h1 {
  margin: 0 0 12px;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.admin-nav a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  text-decoration: none;
}

.admin-content {
  padding: clamp(26px, 4vw, 48px);
}

.admin-content > h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.admin-content h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.admin-content p {
  max-width: 760px;
  line-height: 1.55;
}

.admin-lede {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.admin-panel--wide {
  max-width: none;
  margin: 0;
  padding: 24px;
}

.admin-panel--wide code {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
  align-items: stretch;
}

.admin-card-grid .admin-panel {
  display: flex;
  flex-direction: column;
}

.admin-card-grid .admin-form,
.admin-actions {
  margin-top: auto;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions form {
  margin: 0;
}

.admin-details {
  margin: 14px 0;
}

.admin-details summary {
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-details code {
  margin-top: 10px;
}

.admin-muted {
  color: var(--muted);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
}

.admin-stats article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.admin-stats strong {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
}

.admin-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.admin-log {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-height: 520px;
  overflow: auto;
  padding-right: 6px;
}

.admin-log article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.admin-log article div {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.admin-log strong {
  font-size: 0.95rem;
}

.admin-log time,
.admin-log p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-log p {
  margin: 0;
  font-size: 0.92rem;
}

.admin-section-heading {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 28px;
}

.admin-section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filters a,
.admin-pagination a,
.admin-pagination span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  font-weight: 900;
  text-decoration: none;
}

.admin-filters a.is-active {
  background: var(--ink);
  color: var(--white);
}

.admin-filters a strong {
  display: inline-flex;
  min-width: 24px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.08);
  font-size: 0.82rem;
  line-height: 1;
}

.admin-filters a.is-active strong {
  background: rgba(255, 255, 255, 0.18);
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.admin-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #f6f2e8;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-table td span,
.admin-table td em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
}

.admin-table td em {
  color: #a3341e;
}

.admin-table td:first-child {
  width: 58px;
}

.admin-table td:nth-child(3) {
  width: 120px;
}

.admin-job-thumb {
  display: block;
  width: 120px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.status-pill {
  display: inline-flex !important;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e9e3d5;
  color: var(--ink) !important;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill--completed {
  background: #d9f0df;
}

.status-pill--failed {
  background: #f5d6ce;
}

.status-pill--processing {
  background: #dce8f7;
}

.admin-pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.admin-panel--wide form + form {
  margin-top: 10px;
}

.admin-form label,
.admin-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-weight: 900;
}

.admin-form fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.admin-check {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  font-weight: 700 !important;
}

.admin-check input {
  width: 18px;
  min-height: 18px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #cbc7ba;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #f6f2e8;
}

.editor-toolbar button,
.editor-toolbar select,
.admin-list button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.editor-toolbar select {
  min-width: 150px;
  padding: 0 10px;
}

.rich-editor {
  min-height: 360px;
  padding: 18px;
  border: 1px solid #cbc7ba;
  border-radius: 0 0 8px 8px;
  background: #fffefa;
}

.rich-editor:focus {
  outline: 3px solid rgba(246, 201, 68, 0.45);
  outline-offset: 0;
}

.rich-editor img,
.post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px 0;
  border-radius: 8px;
}

.rich-editor iframe,
.post-content iframe {
  display: block;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 24px 0;
  border: 0;
  border-radius: 8px;
  background: #111;
}

.rich-editor blockquote,
.post-content blockquote {
  margin: 24px 0;
  padding: 12px 18px;
  border-left: 4px solid var(--gold);
  background: #f6f2e8;
  font-weight: 700;
}

.admin-thumb {
  width: 220px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-list article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.lead-application-page {
  min-height: 100svh;
  background: var(--soft);
  color: var(--ink);
}

.lead-hero {
  position: relative;
  min-height: clamp(430px, 58svh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px 0 clamp(34px, 6vw, 58px);
  background: #11110f;
  color: var(--white);
}

.lead-hero__image,
.lead-hero__overlay {
  position: absolute;
  inset: 0;
}

.lead-hero__image {
  background-image: url("/assets/images/hero/creative-team.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lead-hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.9) 0%, rgba(17, 17, 15, 0.78) 38%, rgba(17, 17, 15, 0.24) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.3), rgba(17, 17, 15, 0.08));
}

.lead-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.38fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
}

.lead-hero__copy {
  max-width: 760px;
}

.lead-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.48;
}

.lead-hero .eyebrow {
  color: var(--gold);
}

.lead-offer-card,
.lead-confirmation,
.lead-info article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: var(--shadow);
}

.lead-offer-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  color: var(--ink);
}

.lead-offer-card strong {
  font-size: 1.1rem;
}

.lead-offer-card span {
  display: block;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.35;
}

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

.lead-info article {
  padding: 24px;
}

.lead-info h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.lead-info ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-confirmation {
  max-width: 840px;
  padding: clamp(28px, 5vw, 54px);
}

.lead-confirmation h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.lead-form {
  display: grid;
  gap: 28px;
}

.lead-form-heading {
  margin-bottom: 30px;
}

.lead-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 4px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1;
}

.lead-form label {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
}

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

.lead-form input,
.lead-form textarea,
.lead-form select,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbc7ba;
  border-radius: 6px;
  padding: 11px 13px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.lead-form input[type="file"] {
  padding: 10px;
}

.lead-form input[type="checkbox"],
.admin-form input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
}

.consent-check {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  font-weight: 800 !important;
  line-height: 1.45;
}

.consent-check span {
  min-width: 0;
}

.lead-form .turnstile-wrap {
  justify-self: start;
  padding-top: 4px;
}

.lead-form textarea,
.admin-form textarea {
  resize: vertical;
}

.lead-form .button {
  justify-self: start;
}

.lead-filter-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.lead-filter-form .button {
  min-height: 42px;
}

.admin-stats--leads {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-content .admin-panel--wide {
  border-color: #d8d0c0;
}

.lead-detail-grid .admin-panel {
  min-height: 100%;
}

.lead-detail-grid {
  align-items: start;
}

.lead-definition-list {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

.lead-definition-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.lead-definition-list dt {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-definition-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid--three,
  .metric-grid,
  .case-gallery__grid,
  .case-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__heading--split,
  .intro__grid,
  .about__grid,
  .contact__grid,
  .service-focus__grid,
  .case-index-hero__grid,
  .case-hero__grid,
  .case-feature,
  .case-breakdown__grid,
  .policy-layout,
  .sitemap-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .lead-hero__grid,
  .lead-info__grid {
    grid-template-columns: 1fr;
  }

  .lead-hero {
    min-height: auto;
    padding: 96px 0 46px;
  }

  .lead-offer-card {
    display: none;
  }

  .lead-brand img {
    width: 112px;
  }

  .case-index-card {
    display: flex;
  }

  .case-index-card .work-card__media img {
    height: auto;
    min-height: 0;
  }

  .case-hero-showcase {
    min-height: clamp(300px, 58vw, 460px);
  }

  .policy-summary {
    position: static;
  }

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

  .sitemap-overview,
  .sitemap-post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sitemap-panel--categories ul,
  .sitemap-panel--cases ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-nav {
    position: static;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-card-grid {
    grid-template-columns: 1fr;
  }

  .lead-filter-form,
  .lead-form fieldset {
    grid-template-columns: 1fr;
  }

  .admin-section-heading {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 86svh;
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .service-hero {
    min-height: 80svh;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .service-focus__grid > img {
    height: clamp(280px, 78vw, 430px);
  }

  h1 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
  }

  .case-hero-showcase {
    min-height: 260px;
  }

  .case-hero-shot--1 {
    width: 82%;
  }

  .case-hero-shot--2 {
    width: 62%;
  }

  .case-hero-shot--3 {
    right: 2%;
    width: 46%;
  }

  .service-grid,
  .service-grid--related,
  .service-list,
  .work-grid,
  .work-grid--three,
  .process-grid,
  .quote-strip,
  .stat-row,
  .metric-grid,
  .case-gallery__grid,
  .case-index-grid,
  .case-meta,
  .blog-grid,
  .blog-grid--compact,
  .sitemap-overview,
  .sitemap-grid,
  .sitemap-post-list,
  .sitemap-panel--categories ul,
  .sitemap-panel--cases ul,
  .contact-form,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .sitemap-post-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sitemap-panel li {
    display: grid;
    gap: 2px;
    justify-content: start;
  }

  .footer__grid {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
