@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("fonts/fraunces-700.ttf") format("truetype");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url("fonts/fraunces-800.ttf") format("truetype");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("fonts/fraunces-900.ttf") format("truetype");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/source-serif-4-400.ttf") format("truetype");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("fonts/source-serif-4-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #17231f;
  --muted: #60706a;
  --paper: #f6f0e4;
  --paper-deep: #eee3d1;
  --panel: #fff9ed;
  --line: #d7cab6;
  --emerald: #07563f;
  --emerald-mid: #167257;
  --emerald-soft: #dcebe2;
  --rust: #a34a2d;
  --gold: #c9932e;
  --shadow: 0 18px 50px rgba(23, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.fonts-loading .hero-copy {
  opacity: 0;
  transform: translateY(10px);
}

.fonts-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(7, 86, 63, 0.18), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(195, 147, 46, 0.14), transparent 30%),
    linear-gradient(120deg, rgba(7, 86, 63, 0.08), transparent 42%),
    var(--paper);
  line-height: 1.5;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  opacity: 0.36;
  background-image:
    linear-gradient(90deg, rgba(7, 86, 63, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(7, 86, 63, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  opacity: 0.23;
  background-image:
    repeating-linear-gradient(9deg, rgba(23, 35, 31, 0.055) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(91deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(7, 86, 63, 0.18);
  background: rgba(246, 240, 228, 0.88);
  backdrop-filter: blur(14px);
}

.brand,
nav,
.eyebrow,
.button,
.text-cta,
.quick-email,
.background-cta,
.process-cta,
.card-label,
.price,
.process-step span,
footer {
  font-family: "Fraunces", Georgia, serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  text-decoration: none;
  color: var(--emerald);
}

.brand img,
.footer-brand img {
  display: block;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--emerald);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--rust);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--emerald);
  line-height: 1;
}

nav .nav-cta:hover {
  color: #fff;
  background: var(--emerald-mid);
}

.menu-toggle,
.menu-button {
  display: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(7, 86, 63, 0.22);
  border-radius: 8px;
  color: var(--emerald);
  background: rgba(255, 249, 237, 0.58);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-contact-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: var(--emerald);
  box-shadow: 0 14px 34px rgba(23, 35, 31, 0.22);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-contact-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px) 56px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 820px;
  transition: opacity 420ms ease, transform 420ms ease;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-mid);
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(3.15rem, 7.8vw, 6.7rem);
  line-height: 0.88;
  font-weight: 900;
  color: var(--emerald);
}

.shimmer-word {
  position: relative;
  display: inline-block;
  color: var(--emerald);
}

.shimmer-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 38%,
      #f4ead8 47%,
      #6fb196 50%,
      #f4ead8 53%,
      transparent 62%,
      transparent 100%
    );
  background-size: 360% 100%;
  background-position: 180% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  pointer-events: none;
}

.fonts-ready .shimmer-word::after {
  animation: word-shimmer 8.5s ease-in-out 1.2s infinite;
}

@keyframes word-shimmer {
  0%,
  42% {
    opacity: 0;
    background-position: 180% 0;
  }

  48% {
    opacity: 1;
  }

  72% {
    opacity: 1;
    background-position: -180% 0;
  }

  100% {
    opacity: 0;
    background-position: -180% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shimmer-word::after {
    animation: none;
    opacity: 0;
  }
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  font-weight: 800;
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--emerald);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button svg,
.text-cta svg,
.quick-email svg,
.background-cta svg,
.process-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-cta:hover svg,
.quick-email:hover svg,
.background-cta:hover svg,
.process-cta:hover svg {
  transform: translateX(4px);
}

.button.primary {
  color: #fff;
  background: var(--emerald);
}

.button.secondary {
  color: var(--emerald);
  background: rgba(255, 249, 237, 0.42);
}

.comparison-card,
.service-card,
.process-step,
.portfolio-card {
  border: 1px solid rgba(7, 86, 63, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(238, 227, 209, 0.42)),
    var(--panel);
  box-shadow: var(--shadow);
}

.card-label,
.price {
  font-weight: 800;
  color: var(--emerald-mid);
}

.comparison-card {
  display: block;
  padding: 28px;
  overflow: hidden;
  border-top: 5px solid var(--emerald-mid);
}

.comparison-panel {
  display: grid;
  gap: 12px;
}

.comparison-logo {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--emerald);
}

.comparison-logo svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.comparison-kicker {
  margin-bottom: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 850;
  color: var(--emerald-mid);
}

.comparison-kicker-bad {
  color: var(--rust);
}

.comparison-kicker-good {
  margin-top: 0;
}

.comparison-divider {
  position: relative;
  display: grid;
  margin: 14px 0 2px;
  place-items: center;
}

.comparison-divider::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 86, 63, 0.24), transparent);
}

.comparison-divider span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(7, 86, 63, 0.18);
  border-radius: 50%;
  color: var(--emerald);
  background: var(--panel);
}

.comparison-divider svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.comparison-list {
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.comparison-list li + li {
  margin-top: 10px;
}

.comparison-list li {
  position: relative;
  padding-left: 28px;
}

.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.comparison-list-bad li::before {
  content: "×";
  color: #fff;
  background: var(--rust);
}

.comparison-list-good li::before {
  content: "✓";
  color: #fff;
  background: var(--emerald-mid);
}

.quick-email,
.text-cta,
.background-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald);
  font-weight: 800;
  text-decoration: none;
}

.comparison-panel .quick-email {
  justify-self: end;
  margin-top: 22px;
  padding: 11px 14px;
  border: 1px solid var(--emerald);
  border-radius: 6px;
  background: rgba(255, 249, 237, 0.42);
}

.section,
.portfolio {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  padding: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--emerald-mid);
}

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

.price {
  margin: 18px 0 14px;
  font-size: 1.1rem;
  color: var(--rust);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.feature-list span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  color: #fff;
  background: var(--emerald-mid);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-card .text-cta {
  margin-top: auto;
}

.portfolio {
  border-top: 1px solid rgba(7, 86, 63, 0.14);
}

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

.portfolio-card {
  overflow: hidden;
}

.image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-trigger:focus-visible {
  outline: 3px solid var(--emerald-mid);
  outline-offset: -3px;
}

.portfolio-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
}

.portfolio-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: var(--emerald-soft);
}

.portfolio-card.wide img {
  height: 390px;
}

.portfolio-card div {
  padding: 24px;
}

.portfolio-card.text-left {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
}

.portfolio-card.text-right {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
}

.portfolio-card.text-left > :last-child {
  order: -1;
}

.background-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 72px);
  border-top: 1px solid rgba(7, 86, 63, 0.14);
  border-bottom: 1px solid rgba(7, 86, 63, 0.14);
}

.background-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(7, 86, 63, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(238, 227, 209, 0.42)),
    var(--panel);
  box-shadow: var(--shadow);
}

.background-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(7, 86, 63, 0.14);
  background: rgba(255, 249, 237, 0.42);
}

.background-grid article > svg,
.process-step .step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.background-grid article > svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--emerald-mid);
}

.background-grid h3,
.background-grid p {
  margin-bottom: 0;
}

.background-grid h3 {
  text-transform: uppercase;
  color: var(--emerald);
  font-size: 0.95rem;
}

.background-cta {
  justify-self: start;
  margin: 18px 20px 20px;
  padding: 12px 16px;
  border: 1px solid var(--emerald);
  border-radius: 6px;
  background: rgba(255, 249, 237, 0.48);
}

.about-card {
  display: grid;
  grid-template-columns: 204px minmax(0, 1fr) 204px;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - clamp(36px, 10vw, 96px)), 1240px);
  min-height: 204px;
  margin: clamp(58px, 8vw, 92px) auto clamp(56px, 7vw, 96px);
  padding: 0;
  border: 1px solid rgba(7, 86, 63, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(238, 227, 209, 0.42)),
    var(--panel);
  box-shadow: var(--shadow);
}

.portrait-wrap {
  position: relative;
  width: 204px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(238, 227, 209, 0.5)),
    var(--panel);
  box-shadow: var(--shadow);
}

.portrait-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--emerald);
}

.about-card h2 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.about-card .eyebrow {
  margin-bottom: 6px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-cta {
  display: grid;
  width: 204px;
  height: 204px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--emerald);
  text-decoration: none;
}

.about-cta span {
  display: none;
}

.about-cta svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.about-cta:hover svg {
  transform: translateX(3px);
}

.process-flow {
  display: grid;
  gap: 28px;
  position: relative;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 620px);
  padding: 24px;
}

.process-step.step-right {
  justify-self: end;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--emerald-mid);
}

.process-step span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 850;
}

.process-step h3,
.process-step p {
  margin-bottom: 0;
}

.elbow-connector {
  position: absolute;
  top: 50%;
  width: 118px;
  height: 126px;
  fill: none;
  color: rgba(7, 86, 63, 0.58);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
  pointer-events: none;
}

.elbow-connector path:first-child {
  opacity: 1;
}

.elbow-connector path:last-child {
  color: rgba(7, 86, 63, 0.58);
  stroke-width: 5.5;
  opacity: 1;
}

.elbow-connector::after {
  content: "";
}

.connector-right {
  left: calc(100% + 14px);
  transform: translateY(-6px) rotate(1deg);
}

.connector-left {
  right: calc(100% + 14px);
  transform: translateY(-6px) rotate(-1deg);
}

.connector-final {
  top: 50%;
  left: calc(100% + 14px);
  height: 126px;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 72px;
  margin-top: 36px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--emerald);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 850;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.process-cta svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 18px clamp(18px, 5vw, 72px) 72px;
  padding: clamp(28px, 6vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%),
    var(--emerald);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.80);
}

.contact .button.primary {
  border-color: #fff;
  color: var(--emerald);
  background: #fff;
}

.contact .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(23, 35, 31, 0.78);
  backdrop-filter: blur(10px);
}

.image-modal[hidden] {
  display: none;
}

.image-modal img {
  display: block;
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #fff;
  background: rgba(7, 86, 63, 0.72);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(190px, 0.7fr);
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(7, 86, 63, 0.16);
  color: var(--muted);
  background: rgba(238, 227, 209, 0.45);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p,
.site-footer a + a,
.footer-brand + p {
  margin-top: 10px;
}

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

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-heading {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 850;
}

@media (max-width: 900px) {
  .hero,
  .background-section,
  .contact,
  .portfolio-card.wide,
  .about-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .comparison-card {
    padding: 22px;
  }

  .service-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }

  .portfolio-card.wide img,
  .portfolio-card img {
    height: auto;
    max-height: 420px;
  }

  .portrait-wrap {
    width: 132px;
    justify-self: center;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 18px;
    width: auto;
    min-height: 0;
    margin-inline: clamp(18px, 5vw, 48px);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
  }

  .portrait-wrap {
    width: 146px;
    height: 146px;
  }

  .about-cta {
    display: inline-flex;
    justify-self: center;
    width: auto;
    height: auto;
    min-height: 48px;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 6px;
  }

  .about-cta span {
    display: inline;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 850;
  }

  .about-cta svg {
    width: 18px;
    height: 18px;
  }

  .about-card > div {
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  .about-card p {
    display: block;
    max-width: 46ch;
    margin-inline: auto;
  }

  .portfolio-card.text-left,
  .portfolio-card.text-right {
    grid-template-columns: 1fr;
  }

  .portfolio-card.text-left > :last-child {
    order: 0;
  }

  .process-step,
  .process-step.step-right {
    justify-self: stretch;
    width: 100%;
  }

  .elbow-connector {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .menu-toggle:checked + .menu-button + nav {
    display: flex;
  }

  nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(7, 86, 63, 0.14);
  }

  .nav-cta {
    display: none;
  }

  .mobile-contact-cta {
    display: inline-flex;
  }

  h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }

  .comparison-list li {
    padding-left: 26px;
  }

  .contact {
    margin-inline: 18px;
  }

  .about-card {
    margin-inline: 18px;
    margin-bottom: 44px;
    padding: 22px 18px;
  }

  .portrait-wrap {
    width: 156px;
    height: 156px;
  }

  .about-card h2 {
    font-size: 1.25rem;
  }

  .about-card p {
    max-width: none;
  }
}
