:root {
  --ink: #171817;
  --ink-soft: #30322f;
  --paper: #f4f1ea;
  --porcelain: #fbfaf7;
  --mist: #dce1dc;
  --sage: #3f564d;
  --sage-dark: #263a35;
  --clay: #9a6648;
  --clay-dark: #72472f;
  --line: rgba(23, 24, 23, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(17, 16, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body::selection {
  color: var(--white);
  background: var(--sage);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(145px, 1fr);
  align-items: center;
  width: 100%;
  padding: 20px 42px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(244, 241, 234, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: 98px;
  height: auto;
  filter: invert(1);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-width: 132px;
  padding: 13px 16px;
  border: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 17, 15, 0.82) 0%, rgba(11, 17, 15, 0.55) 38%, rgba(11, 17, 15, 0.1) 68%),
    linear-gradient(0deg, rgba(11, 17, 15, 0.62) 0%, rgba(11, 17, 15, 0) 46%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
  min-height: 96svh;
  padding: 150px 42px 44px;
}

.hero-copy {
  max-width: 810px;
}

.eyebrow,
.section-kicker,
.section-label p {
  margin: 0;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 6.9rem;
  line-height: 0.93;
}

h2 {
  margin-bottom: 0;
  font-size: 3.9rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

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

.button,
.contact-form button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button {
  padding: 14px 20px;
}

.button:hover,
.contact-form button:hover {
  transform: translateY(-1px);
}

.button-primary,
.contact-form button {
  color: var(--white);
  background: var(--clay);
}

.button-primary:hover,
.contact-form button:hover {
  background: var(--clay-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.shoot-menu {
  align-self: end;
  border: 1px solid var(--line-light);
  background: rgba(10, 17, 15, 0.48);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.shoot-menu p {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shoot-menu a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-light);
}

.shoot-menu a:last-child {
  border-bottom: 0;
}

.shoot-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.shoot-menu span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
}

.shoot-menu strong {
  font-size: 0.94rem;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
}

.brand-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

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

.section {
  padding: 112px 42px;
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 14px;
}

.section-label span {
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 9px;
  background: var(--clay);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
}

.intro-copy p,
.section-heading > p,
.feature-copy > p,
.contact-copy > p {
  margin-bottom: 0;
  color: #60645e;
  font-size: 1.02rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.36fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .section-kicker,
.services-intro .section-kicker,
.feature-copy .section-kicker,
.process-copy .section-kicker,
.contact-copy .section-kicker {
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--sage-dark);
}

.gallery-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: -3px;
}

.gallery-feature {
  grid-row: span 2;
}

.gallery-trigger img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(12, 16, 14, 0.78), rgba(12, 16, 14, 0.08) 58%);
  content: "";
  pointer-events: none;
}

.gallery-card:hover .gallery-trigger img,
.gallery-trigger:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 28px;
  color: var(--white);
  pointer-events: none;
}

.gallery-card span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-card strong {
  display: block;
  max-width: 510px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.gallery-feature strong {
  font-size: 2.6rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  gap: 18px;
  align-items: center;
  padding: 86px 32px 32px;
  color: var(--white);
  background: rgba(10, 13, 12, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0;
  min-width: 0;
}

.lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-frame figcaption {
  display: grid;
  gap: 5px;
  width: min(760px, 100%);
  text-align: center;
}

.lightbox-frame span,
.lightbox-close,
.lightbox-nav {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-frame span {
  color: rgba(255, 255, 255, 0.55);
}

.lightbox-frame strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.lightbox-frame p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  min-width: 90px;
  min-height: 44px;
}

.lightbox-nav {
  min-height: 86px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
}

.trust-band article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-band article:last-child {
  border-right: 0;
}

.trust-band span {
  display: block;
  margin-bottom: 42px;
  color: var(--clay-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-band p {
  margin-bottom: 0;
  color: #5d635d;
}

.services {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 58px;
  padding: 112px 42px;
  background: var(--mist);
}

.services-intro {
  position: sticky;
  top: 104px;
  align-self: start;
}

.services-intro h2 {
  font-size: 3.25rem;
}

.service-rows {
  border-top: 1px solid rgba(23, 24, 23, 0.22);
}

.service-rows article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 130px;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 24, 23, 0.22);
}

.service-rows .service-featured {
  margin: 0 -24px;
  padding: 30px 24px;
  color: var(--white);
  background: var(--sage-dark);
}

.service-rows span,
.service-rows strong,
.deliverable-grid p,
.process-list span {
  color: var(--clay-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-rows p,
.deliverable-grid span,
.process-list p {
  max-width: 640px;
  margin-bottom: 0;
  color: #5d635d;
}

.service-featured h3 {
  color: var(--white);
}

.service-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-rows .service-featured span,
.service-rows .service-featured strong {
  color: rgba(255, 255, 255, 0.72);
}

.service-rows strong {
  justify-self: end;
  color: var(--sage);
}

.packages {
  background: var(--porcelain);
}

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

.package-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.package-featured {
  color: var(--white);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: var(--shadow);
}

.package-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 52px;
}

.package-topline span,
.package-topline p,
.package-card strong,
.choice-list strong,
.choice-note span {
  margin: 0;
  color: var(--clay-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-featured .package-topline span,
.package-featured .package-topline p,
.package-featured strong {
  color: rgba(255, 255, 255, 0.72);
}

.package-card h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.package-featured h3 {
  color: var(--white);
}

.package-card > p {
  margin-bottom: 22px;
  color: #5d635d;
}

.package-featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.package-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.82rem;
}

.package-featured.package-card strong {
  color: rgba(255, 255, 255, 0.78);
}

.package-saving {
  display: block;
  margin-bottom: 22px;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.package-featured .package-saving {
  color: rgba(255, 255, 255, 0.64);
}

.package-card ul {
  display: grid;
  gap: 12px;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-featured ul {
  border-top-color: var(--line-light);
}

.package-card li {
  position: relative;
  padding-left: 18px;
  color: #4f554f;
  font-size: 0.92rem;
}

.package-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.package-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--clay);
  content: "";
}

.choice-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 42px;
  margin-top: 22px;
  padding: 32px;
  color: var(--white);
  background: var(--ink);
}

.choice-panel h3 {
  max-width: 360px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.45rem;
}

.choice-panel > div > p:not(.section-kicker) {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.choice-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.choice-list article {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 156px;
  padding: 20px;
  background: var(--ink);
}

.choice-list .choice-featured {
  background: var(--sage-dark);
}

.choice-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.choice-list p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
}

.choice-list strong {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.choice-note {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 22px;
  background: var(--clay);
}

.choice-note span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.choice-note p {
  margin-bottom: 0;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.14;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.74fr);
  min-height: 700px;
  color: var(--white);
  background: var(--sage-dark);
}

.feature-image {
  min-height: 700px;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: 72px;
}

.feature-copy h2 {
  margin-bottom: 24px;
  font-size: 3.35rem;
}

.feature-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.feature-points {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line-light);
}

.feature-points div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.feature-points dt {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.feature-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.deliverables {
  background: var(--porcelain);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-grid p {
  margin-bottom: 76px;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 64px;
  background: var(--paper);
}

.process-copy h2 {
  font-size: 3.15rem;
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 155px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.68fr);
  gap: 76px;
  background: var(--sage-dark);
  color: var(--white);
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-copy > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 30px;
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #5c615c;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 24, 23, 0.2);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(63, 86, 77, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 15px 18px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #646861;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 30px 42px;
  color: rgba(255, 255, 255, 0.72);
  background: #111614;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

.footer-brand .brand-logo {
  width: 92px;
  filter: invert(1);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .shoot-menu {
    width: min(680px, 100%);
  }

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

  .shoot-menu p {
    grid-column: 1 / -1;
  }

  .shoot-menu a:nth-last-child(2) {
    border-bottom: 0;
  }

  .intro,
  .intro-copy,
  .services,
  .feature-band,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .feature-copy {
    padding: 64px 42px;
  }

  .feature-image,
  .feature-band {
    min-height: auto;
  }

  .feature-image img {
    max-height: 560px;
  }

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

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

  .trust-band article:nth-child(2) {
    border-right: 0;
  }

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

  .package-card {
    min-height: 460px;
  }

  .choice-panel,
  .choice-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-header.is-scrolled {
    padding: 12px 18px;
  }

  .brand {
    align-items: center;
  }

  .brand-logo {
    width: 78px;
  }

  .header-cta {
    min-width: 112px;
    padding: 11px 10px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 900px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 17, 15, 0.82) 0%, rgba(11, 17, 15, 0.52) 58%, rgba(11, 17, 15, 0.22) 100%);
  }

  .hero-inner {
    min-height: 900px;
    padding: 128px 18px 24px;
  }

  h1 {
    font-size: 3.5rem;
    line-height: 0.98;
  }

  h2,
  .services-intro h2,
  .feature-copy h2,
  .process-copy h2 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .shoot-menu {
    grid-template-columns: 1fr;
  }

  .shoot-menu a:nth-last-child(2) {
    border-bottom: 1px solid var(--line-light);
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .brand-strip span {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .services {
    padding: 72px 18px;
  }

  .intro {
    gap: 26px;
  }

  .intro-copy,
  .section-heading {
    gap: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-feature {
    grid-row: auto;
  }

  .gallery-card {
    min-height: 360px;
  }

  .gallery-feature strong,
  .gallery-card strong {
    font-size: 1.7rem;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 76px 18px 18px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
  }

  .lightbox-frame img {
    max-height: 66vh;
  }

  .lightbox-prev {
    grid-column: 1;
    grid-row: 2;
  }

  .lightbox-next {
    grid-column: 2;
    grid-row: 2;
  }

  .lightbox-nav {
    min-height: 52px;
  }

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

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band article:last-child {
    border-bottom: 0;
  }

  .trust-band span {
    margin-bottom: 20px;
  }

  .service-rows article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-rows .service-featured {
    margin: 0;
    padding: 24px 20px;
  }

  .service-rows strong {
    justify-self: start;
  }

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

  .package-card {
    min-height: auto;
  }

  .package-topline {
    margin-bottom: 36px;
  }

  .choice-panel {
    padding: 24px 20px;
  }

  .choice-content,
  .choice-list {
    grid-template-columns: 1fr;
  }

  .choice-list article {
    min-height: auto;
  }

  .feature-copy {
    padding: 58px 18px;
  }

  .feature-points div,
  .process-list li,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .deliverable-grid article {
    min-height: 230px;
  }

  .deliverable-grid p {
    margin-bottom: 44px;
  }

  .contact {
    gap: 38px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3rem;
  }

  .brand-logo {
    width: 70px;
  }

  .header-cta {
    min-width: auto;
  }
}
