:root {
  color-scheme: light;
  --ink: #1e262a;
  --ink-2: #344044;
  --muted: #667476;
  --surface: #f7f8f4;
  --surface-2: #edf2ef;
  --white: #ffffff;
  --teal: #1b9a88;
  --teal-2: #2ed0b3;
  --amber: #f3ad36;
  --coral: #e26d5c;
  --line: rgba(30, 38, 42, 0.13);
  --shadow: 0 22px 70px rgba(21, 29, 30, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

::selection {
  color: var(--ink);
  background: rgba(46, 208, 179, 0.35);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 244, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(25, 33, 35, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--white);
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(18, 24, 27, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.site-header.is-scrolled .brand small {
  color: var(--muted);
}

.site-header.is-scrolled .brand-mark {
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(25, 33, 35, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.site-header.is-scrolled .nav-links {
  color: var(--ink-2);
}

.nav-links a {
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(27, 154, 136, 0.12);
}

.nav-links .nav-cta {
  margin-left: 0.35rem;
  color: var(--ink);
  background: var(--teal-2);
}

.site-header.is-scrolled .nav-links .nav-cta {
  color: var(--ink);
  background: rgba(27, 154, 136, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: currentColor;
  color: var(--white);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle span {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.95) contrast(1.04);
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 24%, rgba(46, 208, 179, 0.2), transparent 28rem),
    linear-gradient(90deg, rgba(12, 18, 20, 0.95), rgba(12, 18, 20, 0.78) 48%, rgba(12, 18, 20, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 124px 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-brand-card {
  width: min(320px, 82vw);
  margin-bottom: 1.4rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.hero-brand-card img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-family: "Bahnschrift", "Segoe UI Variable Display", "Aptos Display", "Segoe UI", system-ui, sans-serif;
  font-size: 5rem;
  font-weight: 800;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.hero h1 {
  background: linear-gradient(90deg, #ffffff 0%, #ecfffb 64%, #9bf0e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-showcase {
  position: absolute;
  right: 0;
  bottom: 142px;
  width: 330px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-showcase-card {
  position: relative;
  min-height: 118px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-showcase-card:first-child {
  grid-column: 1 / -1;
  min-height: 154px;
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease, filter 180ms ease;
}

.hero-showcase-card span {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  padding: 0.32rem 0.52rem;
  color: var(--white);
  background: rgba(18, 24, 27, 0.76);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hero-showcase-card:hover,
.hero-showcase-card:focus-visible {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(46, 208, 179, 0.62);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  outline: none;
}

.hero-showcase-card:hover img,
.hero-showcase-card:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.hero-showcase-card:hover::after,
.hero-showcase-card:focus-visible::after {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(46, 208, 179, 0.38);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--teal-2);
  box-shadow: 0 16px 35px rgba(46, 208, 179, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  width: min(100%, 880px);
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-height: 108px;
  padding: 1.1rem;
  background: rgba(19, 25, 27, 0.45);
}

.hero-facts dt {
  margin-bottom: 0.35rem;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.quick-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.strip-track {
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 750;
}

.strip-track span {
  position: relative;
  white-space: nowrap;
}

.strip-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.6rem;
  display: inline-block;
  vertical-align: middle;
  background: var(--amber);
  border-radius: 999px;
}

.section {
  padding: 96px 0;
}

.section-heading,
.contact-heading {
  width: min(100% - 2rem, 780px);
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p,
.contact-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.step,
.contact-form,
.contact-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(25, 33, 35, 0.08);
}

.service-card {
  min-height: 260px;
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 154, 136, 0.35);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(27, 154, 136, 0.11);
  border-radius: var(--radius);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.step p {
  color: var(--muted);
}

.diagnostic {
  background: var(--surface-2);
}

.split {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 3rem;
  align-items: center;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0.2rem;
  width: 0.95rem;
  height: 0.5rem;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.diagnostic-photo {
  position: relative;
  border: 1px solid rgba(27, 154, 136, 0.16);
}

.diagnostic-photo img {
  aspect-ratio: 1.34;
}

.diagnostic-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(18, 24, 27, 0.76);
  backdrop-filter: blur(12px);
}

.diagnostic-photo strong,
.diagnostic-photo span {
  display: block;
}

.diagnostic-photo strong {
  margin-bottom: 0.22rem;
  font-size: 1.05rem;
}

.diagnostic-photo span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.process {
  background: var(--white);
}

.work-gallery {
  background: var(--surface);
}

.gallery-grid {
  width: min(100% - 2rem, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(25, 33, 35, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
  scroll-margin-top: 96px;
}

.gallery-card.large {
  grid-row: auto;
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-card:target {
  border-color: rgba(27, 154, 136, 0.55);
  box-shadow: 0 0 0 4px rgba(46, 208, 179, 0.13), var(--shadow);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card figcaption {
  padding: 1.05rem;
  color: var(--ink);
  background: var(--white);
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  margin-bottom: 0.38rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.gallery-card span {
  color: var(--ink-2);
  font-weight: 650;
}

.process-steps {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  min-height: 250px;
  padding: 1.35rem;
}

.step span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
}

.detail-band {
  position: relative;
  min-height: 560px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(0, 500px) minmax(0, 660px) minmax(1rem, 1fr);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 52%, rgba(46, 208, 179, 0.16), transparent 25rem),
    linear-gradient(135deg, #1e262a 0%, #11191c 54%, #183833 100%);
}

.detail-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 27, 0.94), rgba(18, 24, 27, 0.5) 58%, rgba(18, 24, 27, 0.1));
}

.detail-content {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 4rem 0;
}

.detail-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.detail-photo {
  grid-column: 3 / 5;
  position: relative;
  height: 560px;
  margin: 0;
  overflow: hidden;
}

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 27, 0.48), transparent 42%);
}

.detail-photo figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.detail-photo span {
  padding: 0.48rem 0.7rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.contact {
  background: var(--surface);
}

.contact-layout {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1rem;
  align-items: start;
}

.contact-form {
  padding: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--ink-2);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  padding: 0.9rem 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 156px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(27, 154, 136, 0.65);
  box-shadow: 0 0 0 4px rgba(27, 154, 136, 0.12);
  outline: none;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.privacy-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-note a {
  color: var(--teal);
  font-weight: 800;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-weight: 650;
}

.contact-aside {
  padding: 1.35rem;
  background: var(--ink);
  color: var(--white);
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-link {
  width: fit-content;
  max-width: 100%;
  display: flex;
  margin: 0.35rem 0;
  color: var(--teal-2);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-link + .contact-link {
  margin-top: 1rem;
}

.mini-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.mini-list span {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  width: 100%;
  min-height: 150px;
  margin: 0;
  padding: 2.25rem max(1rem, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 20%, rgba(46, 208, 179, 0.18), transparent 20rem),
    linear-gradient(135deg, #172326, #0f1719 62%, #1b3b36);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-meta {
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 750;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal-2);
  outline: none;
}

.legal-body {
  background: var(--surface-2);
}

.legal-body .site-header {
  position: sticky;
}

.legal-main {
  width: min(100% - 2rem, 980px);
  margin: 0 auto;
  padding: 72px 0 56px;
}

.legal-document,
.thank-you {
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-document h1,
.thank-you h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.legal-document h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}

.legal-document p,
.legal-document li,
.thank-you p {
  color: var(--ink-2);
}

.legal-document a {
  color: var(--teal);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-updated {
  color: var(--muted);
}

.thank-you {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.thank-you p {
  max-width: 620px;
  font-size: 1.1rem;
}

.static-links {
  display: flex;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

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

@media (max-width: 1120px) {
  .hero-showcase {
    display: none;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .gallery-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .detail-band {
    grid-template-columns: 1rem 1fr 1rem;
    padding-top: 4rem;
  }

  .detail-content,
  .detail-photo {
    grid-column: 2;
  }

  .detail-photo {
    height: auto;
    margin-bottom: 4rem;
    border-radius: var(--radius);
  }

  .detail-photo img {
    height: auto;
    aspect-ratio: 1.48;
  }

  .strip-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .nav-links .nav-cta {
    color: var(--ink);
    background: transparent;
  }

  .nav-links .nav-cta {
    background: rgba(27, 154, 136, 0.13);
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    min-height: 660px;
    padding-top: 106px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 360px;
  }

  .hero-facts,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 84px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .process-steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step {
    min-height: auto;
  }

  .site-footer {
    padding: 2rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .brand strong {
    max-width: 190px;
  }

  .brand small {
    max-width: 190px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

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

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

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