:root {
  --ink: #0c0b09;
  --ink-soft: #15120f;
  --brown: #3b2418;
  --brown-2: #5d3823;
  --copper: #b78052;
  --sand: #d7bd96;
  --cream: #f1eadf;
  --paper: #ebe1d1;
  --text-dark: #17120d;
  --muted-light: rgba(241, 234, 223, 0.72);
  --muted-dark: rgba(23, 18, 13, 0.66);
  --line-light: rgba(241, 234, 223, 0.14);
  --line-dark: rgba(23, 18, 13, 0.16);
  --container: min(1180px, calc(100vw - 48px));
  --header: 76px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ink);
  background: var(--sand);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--sand), var(--copper));
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4.6vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background .32s ease, border-color .32s ease, backdrop-filter .32s ease, min-height .32s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 64px;
  background: rgba(12, 11, 9, .78);
  border-color: rgba(241, 234, 223, .09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(215, 189, 150, .42);
  color: var(--sand);
  background: rgba(215, 189, 150, .06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
}

.brand-name {
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(241, 234, 223, .7);
  font-size: .72rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--sand);
  transition: transform .3s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(215, 189, 150, .45);
  color: var(--cream);
  background: rgba(215, 189, 150, .07);
  font-size: .72rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .22s ease, border-color .22s ease;
}

.header-action:hover,
.header-action:focus-visible {
  border-color: rgba(215, 189, 150, .9);
  background: rgba(215, 189, 150, .13);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(241, 234, 223, .18);
  border-radius: 0;
  background: rgba(241, 234, 223, .04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--cream);
  transition: transform .26s ease, opacity .26s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-dark,
.section-brown,
.section-cream {
  position: relative;
  padding: clamp(76px, 9vw, 140px) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-brown {
  background: linear-gradient(135deg, var(--brown), #21130e);
  color: var(--cream);
}

.section-cream {
  background: var(--paper);
  color: var(--text-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 42px) clamp(20px, 5vw, 76px) 44px;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 11, 9, .96) 0%, rgba(12, 11, 9, .8) 35%, rgba(12, 11, 9, .18) 76%, rgba(12, 11, 9, .76) 100%),
    linear-gradient(180deg, rgba(12, 11, 9, .38), rgba(12, 11, 9, .9)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&q=85&w=1600");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: url("assets/noise.svg");
  background-size: 220px;
  mix-blend-mode: overlay;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(12, 11, 9, .98), rgba(12, 11, 9, 0));
}

.hero-frame {
  position: absolute;
  inset: 106px clamp(20px, 5vw, 76px) 42px;
  border: 1px solid rgba(215, 189, 150, .18);
  pointer-events: none;
}

.hero-frame::before {
  content: "";
  position: absolute;
  left: 42%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(215, 189, 150, .12);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  padding: 0 0 clamp(70px, 8vh, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brown-2);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 8.6vw, 8.8rem);
  line-height: .86;
  text-wrap: balance;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(241, 234, 223, .76);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
}

.button-ghost {
  color: var(--cream);
  background: rgba(241, 234, 223, .04);
  border-color: rgba(241, 234, 223, .2);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(241, 234, 223, .55);
  background: rgba(241, 234, 223, .08);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: #fff;
  background: var(--brown);
  border-color: var(--brown);
}

.button-outline-dark {
  color: var(--text-dark);
  border-color: rgba(23, 18, 13, .22);
  background: transparent;
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: rgba(23, 18, 13, .56);
  background: rgba(23, 18, 13, .05);
}

.hero-tags {
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  right: clamp(20px, 5vw, 76px);
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(215, 189, 150, .2);
  border-bottom: 1px solid rgba(215, 189, 150, .2);
}

.hero-tags span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border-right: 1px solid rgba(215, 189, 150, .16);
  color: rgba(241, 234, 223, .78);
  font-size: .74rem;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-tags span:last-child {
  border-right: 0;
}

.section-kicker,
.section-head {
  width: var(--container);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 28px;
  color: var(--sand);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifest-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.manifest h2,
.section-head h2,
.contact-copy h2,
.app-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5.8vw, 6rem);
  line-height: .94;
  text-wrap: balance;
}

.manifest-copy p,
.app-copy p,
.contact-copy p {
  color: var(--muted-light);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.75;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 16px;
  color: var(--sand);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.text-link.light {
  color: var(--sand);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 76px);
}

.section-head .eyebrow {
  align-self: start;
}

.service-menu {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3.4vw, 42px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-copy h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -.035em;
}

.service-copy p {
  max-width: 620px;
  margin-bottom: 10px;
  color: var(--muted-dark);
  line-height: 1.65;
}

.service-copy small {
  display: block;
  color: rgba(23, 18, 13, .52);
  font-size: .9rem;
  line-height: 1.5;
}

.service-meta {
  justify-self: end;
  display: grid;
  gap: 8px;
  text-align: right;
}

.service-meta span {
  color: rgba(23, 18, 13, .52);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-meta strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.service-note {
  width: var(--container);
  margin: clamp(34px, 5vw, 72px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.service-note p {
  margin: 0;
  color: var(--muted-dark);
}

.app-layout,
.contact-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.app-copy,
.contact-copy {
  position: sticky;
  top: 112px;
}

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

.qr-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(241, 234, 223, .14);
  background:
    linear-gradient(135deg, rgba(215, 189, 150, .1), rgba(215, 189, 150, 0)),
    rgba(241, 234, 223, .045);
}

.qr-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  padding: 14px;
  background: #fff;
}

.qr-card h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.qr-card p {
  margin-bottom: 14px;
  color: var(--muted-light);
  line-height: 1.55;
}

.qr-card a {
  color: var(--sand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-list {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.process-step {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-step span {
  color: var(--brown-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.process-step h3 {
  margin: 28px 0 10px;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.65;
}

.gallery-head {
  display: block;
}

.gallery-head h2 {
  max-width: 980px;
}

.gallery-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .75fr .85fr;
  grid-template-rows: 300px 280px;
  gap: 16px;
}

.photo {
  position: relative;
  margin: 0;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(241, 234, 223, .1);
  background-color: #201711;
  background-size: cover;
  background-position: center;
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0), rgba(12, 11, 9, .38));
}

.photo-one {
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(180deg, rgba(12,11,9,.08), rgba(12,11,9,.42)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&q=85&w=1200");
}

.photo-two {
  grid-column: 2;
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(180deg, rgba(12,11,9,.12), rgba(12,11,9,.5)),
    url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&q=85&w=800");
}

.photo-three {
  background-image:
    linear-gradient(180deg, rgba(12,11,9,.05), rgba(12,11,9,.42)),
    url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&q=85&w=900");
}

.photo-four {
  background-image:
    linear-gradient(180deg, rgba(12,11,9,.05), rgba(12,11,9,.42)),
    url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&q=85&w=800");
}

.differential-list {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(241, 234, 223, .16);
}

.differential-list article {
  display: grid;
  grid-template-columns: minmax(220px, .62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px);
  padding: clamp(24px, 3.6vw, 44px) 0;
  border-bottom: 1px solid rgba(241, 234, 223, .14);
}

.differential-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 400;
}

.differential-list p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.65;
}

.contact-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(93, 56, 35, .12), rgba(93, 56, 35, 0)),
    rgba(255,255,255,.22);
}

.contact-copy p {
  color: var(--muted-dark);
}

.contact-card dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.contact-card div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.contact-card dt {
  margin-bottom: 6px;
  color: rgba(23, 18, 13, .5);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.contact-card > p {
  margin: 24px 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

.faq-list {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(241, 234, 223, .16);
}

.faq-list details {
  border-bottom: 1px solid rgba(241, 234, 223, .14);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.3vw, 2rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--sand);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "—";
}

.faq-list p {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted-light);
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(20px, 4.6vw, 72px);
  color: rgba(241, 234, 223, .7);
  background: #070604;
  border-top: 1px solid rgba(241, 234, 223, .1);
}

.site-footer span {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.site-footer small,
.site-footer a {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--sand);
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 95;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--sand);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 260px 260px;
  }

  .photo-one {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .photo-two {
    grid-column: 2;
    grid-row: 1 / span 1;
  }

  .photo-three {
    grid-column: 2;
    grid-row: 2 / span 1;
  }

  .photo-four {
    grid-column: 1 / span 2;
    grid-row: 3;
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 40px, 1180px);
    --header: 68px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 20px;
  }

  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    background: rgba(12, 11, 9, .96);
    border-top: 1px solid rgba(241, 234, 223, .08);
    border-bottom: 1px solid rgba(241, 234, 223, .1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s var(--ease-out), opacity .32s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(241, 234, 223, .08);
  }

  .site-nav a::after {
    display: none;
  }

  .brand-name {
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 94svh;
    padding: calc(var(--header) + 36px) 20px 124px;
  }

  .hero-frame {
    inset: 92px 20px 92px;
  }

  .hero-frame::before {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.3rem);
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .hero-tags {
    left: 20px;
    right: 20px;
    bottom: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-tags span:nth-child(2) {
    border-right: 0;
  }

  .hero-tags span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(215, 189, 150, .16);
  }

  .section-head,
  .manifest-grid,
  .app-layout,
  .contact-layout {
    display: block;
  }

  .section-head .eyebrow,
  .manifest .section-kicker {
    margin-bottom: 18px;
  }

  .manifest-copy,
  .app-copy,
  .contact-copy {
    margin-top: 28px;
  }

  .app-copy,
  .contact-copy {
    position: relative;
    top: auto;
  }

  .qr-panel {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .qr-card {
    grid-template-columns: 138px 1fr;
    align-items: center;
  }

  .qr-card img {
    max-width: 138px;
  }

  .service-note {
    display: grid;
    align-items: start;
  }

  .differential-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 620px) {
  .section-dark,
  .section-brown,
  .section-cream {
    padding: 72px 0;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-tags span {
    min-height: 48px;
    font-size: .62rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-meta {
    justify-self: start;
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 250px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 300px);
  }

  .photo-one,
  .photo-two,
  .photo-three,
  .photo-four {
    grid-column: auto;
    grid-row: auto;
  }

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

  .qr-card img {
    max-width: 200px;
  }

  .faq-list summary {
    min-height: 70px;
  }
}

@media (max-height: 720px) and (min-width: 881px) {
  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(3rem, 7vw, 6.7rem);
  }

  .hero-content {
    padding-bottom: 90px;
  }
}
