:root {
  --black: #080909;
  --black-soft: #111313;
  --charcoal: #171918;
  --charcoal-2: #202423;
  --cream: #f5f0e7;
  --paper: #fbf8f1;
  --paper-deep: #ece4d7;
  --ink: #101111;
  --muted: #6c6a63;
  --line: rgba(255, 255, 255, 0.12);
  --line-light: #dfd5c5;
  --teal: #008e96;
  --teal-bright: #22b6bd;
  --teal-soft: #dff2f1;
  --wood: #b48655;
  --max: 1420px;
  --radius: 7px;
  color-scheme: dark light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

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

button,
input {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.feature-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  flex: 0 0 auto;
}

.feature-icon {
  width: 38px;
  height: 38px;
}

.section-shell {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  min-height: 106px;
  padding: 18px 70px 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(8, 9, 9, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 3.2vw, 58px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a:nth-child(1)::after,
.site-nav a:nth-child(2)::after {
  content: "⌄";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.site-nav a::before {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 142, 150, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #06777e;
}

.btn-dark-outline {
  background: rgba(0, 0, 0, 0.14);
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.btn-dark-outline:hover,
.btn-dark-outline:focus-visible {
  background: #fff;
  color: var(--ink);
}

.header-phone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 48px;
  border-radius: 4px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 142, 150, 0.24);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-phone-cta:hover,
.header-phone-cta:focus-visible {
  background: #06777e;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(390px, 0.62fr) minmax(520px, 1.1fr);
  min-height: 620px;
  padding: 72px 70px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.92) 34%, rgba(8, 9, 9, 0.26) 68%, rgba(8, 9, 9, 0.08) 100%),
    radial-gradient(circle at 42% 28%, rgba(181, 142, 91, 0.12), transparent 42%),
    var(--black);
}

.service-rail {
  z-index: 2;
  align-self: center;
  width: 180px;
  background: rgba(9, 10, 10, 0.72);
  border-left: 6px solid var(--teal);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.service-rail a {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-rail a.active {
  color: var(--teal-bright);
}

.service-rail a:hover,
.service-rail a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.service-rail .icon {
  width: 25px;
  height: 25px;
}

.service-rail .all-services {
  min-height: 58px;
  color: var(--teal-bright);
  font-size: 0.66rem;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 28px 18px 74px 10px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1,
.story-band h2,
.work h2,
.process h2,
.contact-panel h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 360px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.8rem, 4.9vw, 5.8rem);
  line-height: 1.02;
}

.hero-copy p:not(.eyebrow) {
  max-width: 360px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  line-height: 1.45;
}

.teal-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 24px 0;
  background: var(--teal-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.hero-stage {
  position: relative;
  min-height: 548px;
  margin-top: -4px;
  overflow: hidden;
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.62), transparent 22%, transparent 78%, rgba(8, 9, 9, 0.28)),
    linear-gradient(0deg, rgba(8, 9, 9, 0.18), transparent 45%);
  content: "";
}

.hero-stage img {
  object-position: center center;
  filter: saturate(0.86) contrast(1.08) brightness(0.68);
  transform: scale(1.07);
}

.story-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(330px, 1fr) minmax(330px, 0.92fr);
  gap: 58px;
  align-items: center;
  padding: 64px max(70px, calc((100vw - var(--max)) / 2 + 70px)) 36px;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.74), transparent 32%),
    var(--cream);
  color: var(--ink);
}

.origin-card {
  min-height: 236px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(20, 14, 9, 0.16);
}

.origin-card img {
  filter: sepia(0.16) contrast(1.05);
}

.origin-copy h2,
.quote-card h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.72rem, 2.8vw, 2.75rem);
  line-height: 1.16;
}

.origin-copy p:last-child,
.quote-card p {
  max-width: 560px;
  margin: 0;
  color: #242423;
  font-size: 0.96rem;
  line-height: 1.75;
}

.origin-copy .teal-rule {
  width: 58px;
  height: 3px;
  margin: 20px 0 22px;
}

.quote-card {
  position: relative;
  min-height: 242px;
  padding: 20px 0 20px 70px;
  border-left: 1px solid var(--line-light);
}

.quote-mark {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.5;
}

.signature {
  margin-top: 16px !important;
  color: var(--teal) !important;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem !important;
  line-height: 1 !important;
}

.signature::before {
  content: "— ";
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
}

.value-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 28px;
}

.value-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 82px;
  padding: 0 28px;
  border-right: 1px solid var(--line-light);
}

.value-row article:first-child {
  padding-left: 0;
}

.value-row article:last-child {
  border-right: 0;
  padding-right: 0;
}

.value-row .feature-icon {
  color: var(--teal);
}

.value-row h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.value-row p {
  margin: 0;
  color: #45433d;
  font-size: 0.78rem;
  line-height: 1.42;
}

.work {
  padding-block: 92px;
  background: var(--black);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(480px, 1fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.process h2,
.contact-panel h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  line-height: 1.12;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.category-card img {
  filter: saturate(0.88) contrast(1.06) brightness(0.72);
  transition: transform 240ms ease;
}

.category-card::after {
  position: absolute;
  inset: 22% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  content: "";
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.035);
}

.category-card:focus-visible {
  border-color: var(--teal-bright);
  outline: 3px solid rgba(34, 182, 189, 0.28);
  outline-offset: 3px;
}

.category-card div {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  z-index: 1;
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  max-width: 620px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.02;
}

.category-card p {
  max-width: 580px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.category-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-card li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(8, 9, 9, 0.52);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-cue .icon {
  width: 18px;
  height: 18px;
}

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

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 34px;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  width: min(1080px, 100%);
  max-height: min(860px, calc(100vh - 68px));
  padding: 24px;
  background: #101111;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.gallery-header h2 {
  margin: 0;
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  line-height: 1.06;
}

.gallery-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.gallery-stage {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050606;
}

.gallery-stage img {
  max-height: 560px;
  object-fit: contain;
  background: #050606;
}

.gallery-stage figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  background: rgba(8, 9, 9, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.gallery-controls button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible,
.gallery-close:hover,
.gallery-close:focus-visible {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
}

.gallery-controls span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 900;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumb {
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #050606;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--teal-bright);
}

.gallery-thumb img {
  filter: brightness(0.78);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(560px, 1fr);
  gap: 64px;
  align-items: start;
  padding-block: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  overflow: hidden;
}

.process li {
  min-height: 250px;
  padding: 34px;
  background: var(--charcoal);
}

.process-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--teal-bright);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.process .step-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--teal-bright);
  font-weight: 900;
}

.process h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.process p,
.contact-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.review-band {
  background: var(--cream);
  color: var(--ink);
}

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(560px, 1fr);
  gap: 56px;
  align-items: start;
  padding-block: 74px;
}

.reviews-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.12;
}

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

.review-card {
  min-height: 310px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(20, 14, 9, 0.08);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 700;
  line-height: 1.52;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.review-card cite {
  color: var(--ink);
  font-size: 1rem;
}

.stars {
  color: var(--teal);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(560px, 1fr);
  gap: 58px;
  align-items: center;
  padding-block: 88px;
}

.contact-panel form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 10px;
  padding: 24px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
}

input:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(34, 182, 189, 0.2);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.site-footer {
  background: #050606;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto auto;
  gap: 34px;
  align-items: center;
  min-height: 118px;
}

.footer-brand {
  width: 126px;
  opacity: 0.9;
}

.footer-inner p,
.footer-inner a,
.footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-inner a,
.footer-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: #fff;
}

@media (max-width: 1240px) {
  .site-header {
    padding-inline: 32px;
  }

  .hero {
    grid-template-columns: 190px minmax(350px, 0.7fr) minmax(480px, 1fr);
    padding-inline: 32px;
  }

  .story-band {
    padding-inline: 32px;
    grid-template-columns: 0.9fr 1fr;
  }

  .quote-card {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .value-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .value-row article:nth-child(3) {
    border-right: 0;
  }

  .section-heading,
  .process,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-panel button {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 26px;
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: calc(100% - 40px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 86px;
    padding: 13px 20px;
  }

  .header-phone-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #101111;
    border: 1px solid var(--line);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  }

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

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 0;
  }

  .service-rail {
    order: 2;
    align-self: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
    border-top: 5px solid var(--teal);
  }

  .service-rail a {
    min-height: 58px;
  }

  .service-rail .all-services {
    grid-column: 1 / -1;
  }

  .hero-copy {
    order: 1;
    padding: 18px 0 0;
  }

  .hero-stage {
    order: 3;
    min-height: 420px;
  }

  .story-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .value-row article,
  .value-row article:first-child,
  .value-row article:last-child {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

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

  .reviews-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand {
    width: 118px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-panel .btn {
    width: 100%;
  }

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

  .story-band {
    padding-inline: 20px;
  }

  .category-grid,
  .contact-panel form {
    grid-template-columns: 1fr;
  }

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

  .gallery-modal {
    padding: 14px;
  }

  .gallery-dialog {
    max-height: calc(100vh - 28px);
    padding: 16px;
  }

  .gallery-stage {
    min-height: 260px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
