:root {
  --ink: #062f43;
  --muted: #61737c;
  --line: #e6e2d9;
  --paper: #ffffff;
  --soft: #f8f5ef;
  --sage: #7f9e91;
  --clay: #b9895c;
  --blue: #174f6a;
  --charcoal: #032b3d;
  --gold: #b98b5a;
  --cream: #fcfaf6;
  --shadow: 0 26px 80px rgba(6, 47, 67, 0.14);
  --radius: 7px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  z-index: 10;
  clip: auto;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 226, 217, 0.9);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #f8fbf7;
  background: var(--charcoal);
}

.topbar a {
  font-weight: 700;
}

.nav {
  width: var(--container);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(3, 43, 61, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-weight: 620;
}

.brand strong {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  color: #29424e;
}

.nav-links a:not(.button):hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  font-weight: 560;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(3, 43, 61, 0.28);
}

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

.button-ghost {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.82);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: clamp(680px, 86vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 43, 61, 0.9), rgba(3, 43, 61, 0.58) 46%, rgba(3, 43, 61, 0.08)),
    linear-gradient(0deg, rgba(3, 43, 61, 0.28), rgba(3, 43, 61, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.58fr);
  gap: 42px;
  align-items: center;
  padding: 78px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-family: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Iowan Old Style", Georgia, serif;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 400;
}

.hero-subhead {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.trust-panel {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.trust-panel div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-panel strong,
.trust-panel span {
  display: block;
}

.trust-panel strong {
  font-size: 1.02rem;
}

.trust-panel span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 132px;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 58px;
  align-items: center;
}

h2 {
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--ink);
}

.section-copy p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.owner-note {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 680px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0%, #fbfaf7 100%);
  box-shadow: 0 18px 46px rgba(6, 47, 67, 0.1);
}

.owner-note img {
  aspect-ratio: 4 / 3;
  height: 94px;
  object-fit: cover;
  border-radius: var(--radius);
}

.owner-note strong,
.owner-note span {
  display: block;
}

.owner-note strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.owner-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.owner-section {
  background:
    linear-gradient(90deg, rgba(185, 139, 90, 0.08), transparent 42%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.owner-portrait {
  position: relative;
}

.owner-portrait::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px -18px;
  border: 1px solid rgba(185, 139, 90, 0.36);
  border-radius: var(--radius);
}

.owner-portrait img {
  position: relative;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-weight: 650;
}

.about-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.about-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.metric-row div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.metric-row div:last-child {
  border-right: 0;
}

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

.metric-row strong {
  font-size: 1.25rem;
  color: var(--ink);
}

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

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

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

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

.service-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 47, 67, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(6, 47, 67, 0.15);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #f5ede4;
  color: #8a633d;
  font-weight: 700;
  font-size: 0.8rem;
}

h3 {
  margin: 0 0 8px;
  line-height: 1.22;
  font-size: 1.1rem;
  font-weight: 500;
}

.service-card p,
.feature p,
.step p,
.review p,
.footer p,
.project span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid,
.review-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature,
.review,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(6, 47, 67, 0.06);
}

.feature {
  border-left: 4px solid var(--gold);
}

.audience-section {
  background: var(--paper);
}

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

.audience-card {
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfaf7);
  box-shadow: 0 18px 54px rgba(6, 47, 67, 0.08);
}

.audience-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 18px;
  color: #253f4b;
  line-height: 1.45;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.designer-feature {
  background:
    linear-gradient(90deg, rgba(3, 43, 61, 0.035), transparent 38%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.designer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.designer-image {
  position: relative;
}

.designer-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(185, 139, 90, 0.35);
  border-radius: var(--radius);
  z-index: 0;
}

.designer-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(6, 47, 67, 0.18);
}

.designer-copy {
  max-width: 680px;
}

.designer-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.designer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.designer-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 620;
  box-shadow: 0 10px 28px rgba(6, 47, 67, 0.05);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.filter {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 650;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.filter.active,
.filter:hover {
  border-color: var(--gold);
  background: var(--charcoal);
  color: #fff;
}

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

.project {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 226, 217, 0.9);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 47, 67, 0.06);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(6, 47, 67, 0.11);
}

.project.is-hidden {
  display: none;
}

.project img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.project figcaption {
  padding: 14px 15px 16px;
}

.project strong,
.project span {
  display: block;
}

.project strong {
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.15;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review p {
  margin-bottom: 18px;
  color: #253f4b;
  font-size: 1.08rem;
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--blue));
  color: #fff;
  font-weight: 700;
}

.contact {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.contact-copy a {
  font-weight: 700;
  color: var(--ink);
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(6, 47, 67, 0.06);
}

.service-areas {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 18px 54px rgba(6, 47, 67, 0.08);
}

.area-list span {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid #d8c9b8;
  border-radius: var(--radius);
  background: #fff8ef;
  color: #6f4a23;
  font-weight: 600;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: #d7a4a4;
  background: #fff5f5;
  color: #7a2e2e;
}

.form-status.is-success {
  border-color: rgba(127, 158, 145, 0.5);
  background: #f4faf7;
  color: #244f3f;
}

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

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

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

.seo-page {
  min-height: calc(100vh - 120px);
  background: linear-gradient(180deg, var(--soft), var(--paper));
}

.seo-page h1,
.thank-you h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
}

.seo-page .section-copy {
  max-width: 850px;
}

.seo-page .section-copy p {
  max-width: 760px;
}

.seo-page .button {
  margin-top: 14px;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 16px;
  background: linear-gradient(135deg, var(--soft), var(--paper));
}

.thank-you .section-copy {
  max-width: 720px;
  padding: clamp(30px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.thank-you p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 4px;
  row-gap: 8px;
  color: #253f4b;
  font-weight: 650;
  font-size: 0.92rem;
}

label span[aria-hidden="true"] {
  color: #526872;
  font-size: 0.82em;
  line-height: 1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ddd7cc;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

label input,
label select,
label textarea {
  flex: 0 0 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 139, 90, 0.2);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.file-input {
  padding: 14px;
  border: 1px dashed #d8c9b8;
  border-radius: var(--radius);
  background: var(--cream);
}

.file-input input {
  background: #fff;
}

.footer {
  color: #dfe5df;
  background: linear-gradient(180deg, var(--charcoal), #021f2d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 62px 0;
}

.footer .brand strong {
  color: #fff;
}

.footer .brand small,
.footer p {
  color: #aeb8ae;
}

.footer h3 {
  color: #fff;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: #aeb8ae;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .button,
  .service-card {
    transition: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--charcoal);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .split,
  .owner-grid,
  .audience-grid,
  .designer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 86px;
  }

  .trust-panel {
    max-width: 520px;
  }

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

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

  .feature-grid,
  .review-grid,
  .process-grid,
  .footer-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .designer-image {
    max-width: 560px;
  }

  .owner-portrait {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }

  .nav {
    min-height: 66px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 50, 72, 0.88), rgba(4, 50, 72, 0.6));
  }

  .hero-grid {
    padding: 74px 0 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .trust-panel,
  .metric-row,
  .estimate-form,
  .owner-note {
    grid-template-columns: 1fr;
  }

  .owner-note img {
    width: 100%;
    height: auto;
  }

  .metric-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .designer-grid {
    gap: 34px;
  }

  .designer-image::before {
    inset: 12px -10px -10px 10px;
  }

  .service-grid,
  .service-grid-five,
  .feature-grid,
  .audience-grid,
  .review-grid,
  .process-grid,
  .footer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project figcaption {
    padding: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}
