@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap");

:root {
  --radius: 0.5rem;
  --cream: oklch(0.975 0.012 80);
  --sand: oklch(0.945 0.022 75);
  --ink: oklch(0.18 0.012 50);
  --chalk-red: oklch(0.55 0.19 27);
  --chalk-red-foreground: oklch(0.98 0.01 80);
  --background: var(--cream);
  --foreground: var(--ink);
  --card: oklch(1 0 0);
  --secondary: var(--sand);
  --muted-foreground: oklch(0.45 0.015 50);
  --accent: var(--chalk-red);
  --accent-foreground: var(--chalk-red-foreground);
  --border: oklch(0.88 0.018 70);
  --input: oklch(0.9 0.015 70);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: 3.25rem;
  line-height: 1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.05;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  background: color-mix(in oklch, var(--background) 85%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--background);
  font-family: var(--font-display);
  font-weight: 600;
}

.brand-copy {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.15rem;
}

.brand-line {
  color: var(--muted-foreground);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a,
.mobile-nav a:not(.button) {
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--foreground);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: none;
}

.mobile-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.mobile-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-panel {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-block: 1rem;
}

.mobile-nav a:not(.button) {
  padding-block: 0.65rem;
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button-dark {
  background: var(--foreground);
  color: var(--background);
}

.button-dark:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.button-outline {
  border-color: color-mix(in oklch, var(--foreground) 20%, transparent);
  color: var(--foreground);
}

.button-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.button-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.button-accent:hover {
  opacity: 0.9;
}

.button-invert-outline {
  border-color: color-mix(in oklch, var(--background) 30%, transparent);
  color: var(--background);
}

.button-invert-outline:hover {
  background: color-mix(in oklch, var(--background) 10%, transparent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page[hidden] {
  display: none;
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 2.5rem 5rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.eyebrow span {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: color-mix(in oklch, var(--foreground) 40%, transparent);
}

.hero h1 {
  margin-top: 1.5rem;
}

.lead,
.page-hero p,
.detail-blurb {
  max-width: 39rem;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero .lead {
  margin-top: 2rem;
}

.hero .button-row {
  margin-top: 2.5rem;
}

.underline-chalk {
  background-image: linear-gradient(transparent 65%, oklch(0.55 0.19 27 / 0.35) 65%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-inline: 0.1em;
}

.italic {
  font-style: italic;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.proof-strip-left {
  margin-top: 3.5rem;
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--secondary);
}

.hero-image-frame img,
.gallery-tile img,
.row-image img,
.detail-image img,
.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  right: -1px;
  bottom: -1px;
  border-top-left-radius: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-display);
  line-height: 1.1;
}

.stat-float {
  display: none;
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  max-width: 12rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--background);
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 30px oklch(0 0 0 / 0.06);
}

.stat-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.stat-float span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.reference-band {
  border-block: 1px solid var(--border);
  background: color-mix(in oklch, var(--secondary) 40%, transparent);
}

.reference-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding-block: 2rem;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
}

.reference-inner p {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  text-transform: none;
}

.section {
  padding-block: 6rem;
}

.section-tight {
  padding-top: 0;
}

.section-muted {
  background: color-mix(in oklch, var(--secondary) 30%, transparent);
}

.split-grid,
.detail-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 3rem;
}

.sticky-copy h2,
.section-heading-row h2,
.narrow-copy h2,
.split-grid h2 {
  margin-top: 1rem;
}

.value-grid {
  display: grid;
  gap: 1.5rem;
}

.soft-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1.75rem;
}

.soft-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-heading-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-heading-row h2 {
  max-width: 37rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--accent);
}

.service-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 35px oklch(0 0 0 / 0.08);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--secondary);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card:hover .service-image img,
.masonry figure:hover img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--background) 90%, transparent);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.icon-chip {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklch, var(--accent) 10%, transparent);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-copy {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
}

.read-more {
  margin-top: auto;
  padding-top: 1.25rem;
  color: color-mix(in oklch, var(--foreground) 60%, transparent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card:hover .read-more,
.service-row:hover .read-more,
.next-link:hover strong {
  color: var(--accent);
}

.narrow-copy {
  max-width: 42rem;
}

.process-grid {
  display: grid;
  gap: 2rem;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
}

.process-grid strong {
  display: block;
  color: color-mix(in oklch, var(--accent) 40%, transparent);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}

.process-grid h3 {
  margin-top: 0.75rem;
}

.process-grid p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
}

.gallery-preview {
  padding-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
}

.gallery-tile {
  min-height: 14rem;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--secondary);
}

.gallery-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.testimonial {
  text-align: center;
}

.testimonial-inner {
  max-width: 58rem;
}

.testimonial blockquote {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.15;
}

.testimonial p:last-child {
  margin-top: 2rem;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.cta-section {
  padding-inline: 0;
}

.cta-panel {
  margin-block: 6rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 2rem;
}

.cta-panel p {
  color: color-mix(in oklch, var(--background) 60%, transparent);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.cta-panel h2 {
  max-width: 48rem;
  margin-top: 1rem;
}

.cta-panel > span {
  display: block;
  max-width: 38rem;
  margin-top: 1.5rem;
  color: color-mix(in oklch, var(--background) 75%, transparent);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-panel .button-row {
  margin-top: 2.5rem;
}

.page-hero {
  padding-block: 4rem 3rem;
}

.page-hero h1 {
  max-width: 56rem;
  margin-top: 1rem;
}

.page-hero p {
  margin-top: 2rem;
}

.service-list {
  display: grid;
  gap: 1.5rem;
}

.service-row {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  transition: box-shadow 220ms ease;
}

.service-row:hover {
  box-shadow: 0 24px 45px oklch(0 0 0 / 0.08);
}

.row-image {
  min-height: 16rem;
  background: var(--secondary);
}

.row-copy {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.row-copy strong {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

.row-copy > span:not(.section-kicker):not(.row-meta):not(.read-more) {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  line-height: 1.7;
}

.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.row-meta b {
  color: color-mix(in oklch, var(--foreground) 60%, transparent);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.back-section {
  padding-top: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--foreground);
}

.detail-hero {
  padding-block: 2.5rem 4rem;
}

.detail-hero h1 {
  margin-top: 1rem;
}

.detail-blurb {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.detail-facts {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
  margin-top: 2.5rem;
}

.detail-facts article {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.detail-facts span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
}

.detail-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--secondary);
}

.detail-outcome {
  margin-top: 1.5rem;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
  line-height: 1.7;
}

.bullet-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-grid li {
  display: flex;
  gap: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--background);
  padding: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bullet-grid li::before {
  content: "✓";
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklch, var(--accent) 15%, transparent);
  color: var(--accent);
  font-weight: 600;
}

.next-section {
  padding-block: 5rem;
}

.next-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.next-link span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.next-link strong {
  display: inline-flex;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.masonry-section {
  padding-bottom: 3rem;
}

.masonry {
  columns: 1;
  column-gap: 1rem;
}

.masonry figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--secondary);
}

.masonry img {
  width: 100%;
  height: auto;
  transition: transform 700ms ease;
}

.masonry figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, oklch(0.18 0.012 50 / 0.8), transparent);
  color: var(--background);
  font-size: 0.75rem;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.masonry figure:hover figcaption {
  opacity: 1;
}

.about-section,
.contact-section {
  padding-block: 4rem 3rem;
}

.about-copy {
  order: 2;
}

.about-images {
  display: grid;
  gap: 1rem;
  order: 1;
}

.about-images div {
  overflow: hidden;
  border-radius: 1.5rem;
}

.about-images div:first-child {
  aspect-ratio: 4 / 5;
}

.about-images div:last-child {
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
}

.about-copy h1,
.contact-section h1 {
  margin-top: 1rem;
}

.rich-text {
  display: grid;
  gap: 1.5rem;
  max-width: 44rem;
  margin-top: 2.5rem;
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
  font-size: 1.05rem;
  line-height: 1.75;
}

.metrics {
  display: grid;
  gap: 1.5rem;
  margin-block: 2.5rem;
}

.metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.contact-section .lead {
  margin-top: 2rem;
}

.contact-links {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-links span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-links a:hover span {
  background: var(--accent);
  color: var(--accent-foreground);
}

.contact-note {
  margin-top: 3rem;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-fields {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form label span {
  color: var(--accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: 0.8rem;
  background: var(--background);
  color: var(--foreground);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid color-mix(in oklch, var(--accent) 20%, transparent);
}

.submit-button {
  width: 100%;
}

.form-disclaimer {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
}

.form-success {
  padding-block: 3rem;
  text-align: center;
}

.form-success div {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-inline: auto;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 1.5rem;
}

.form-success h2 {
  margin-top: 1.5rem;
  font-size: 2rem;
}

.form-success p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.site-footer {
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  background: color-mix(in oklch, var(--secondary) 40%, transparent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-brand {
  display: grid;
  gap: 1.5rem;
}

.footer-brand p {
  max-width: 32rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  list-style: none;
}

.site-footer a:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-align: center;
}

.footer-bottom p:last-child {
  font-family: var(--font-display);
  font-style: italic;
}

@media (min-width: 40rem) {
  .brand-copy {
    display: flex;
  }

  .value-grid,
  .detail-facts,
  .bullet-grid,
  .form-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry {
    columns: 2;
  }
}

@media (min-width: 48rem) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-panel {
    display: none;
  }

  .section-heading-row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, 17rem);
  }

  .gallery-tile {
    min-height: 0;
  }

  .gallery-tall {
    grid-column: span 5;
    grid-row: span 2;
  }

  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(5) {
    grid-column: span 4;
  }

  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(4) {
    grid-column: span 3;
  }

  .testimonial blockquote {
    font-size: 3rem;
  }

  .cta-panel {
    padding: 5rem 4rem;
  }

  .service-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
  }

  .row-image {
    grid-column: span 5;
    height: 20rem;
  }

  .row-copy {
    grid-column: span 7;
    padding: 3rem;
  }

  .row-reverse .row-image {
    order: 2;
  }

  .next-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .masonry {
    columns: 3;
  }

  .footer-bottom .container {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 64rem) {
  h1 {
    font-size: 5.25rem;
  }

  .hero-grid {
    grid-template-columns: 7fr 5fr;
    padding-block: 5rem 8rem;
  }

  .stat-float {
    display: block;
  }

  .split-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }

  .sticky-copy {
    position: sticky;
    top: 7rem;
  }

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

  .detail-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .detail-grid > div:first-child,
  .about-copy {
    grid-column: span 7;
  }

  .detail-grid > div:last-child,
  .about-images {
    grid-column: span 5;
  }

  .about-copy {
    order: 1;
  }

  .about-images {
    order: 2;
  }

  .contact-grid > div:first-child {
    grid-column: span 5;
  }

  .contact-form {
    grid-column: span 7;
    padding: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 30rem) {
  .container {
    width: min(100% - 2rem, 80rem);
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .hero-grid,
  .section,
  .cta-panel,
  .footer-grid {
    padding-block: 3.5rem;
  }
}
