:root {
  --bg: #f2ede3;
  --surface: #fffaf2;
  --surface-2: #f6eee3;
  --surface-cool: #f7fbff;
  --surface-cool-2: #ebf2f8;
  --ink: #231d17;
  --muted: #6f6255;
  --brand: #8b6a36;
  --brand-2: #b38a4b;
  --accent: #1f4f6c;
  --accent-soft: #5e8ba5;
  --line: #dbcab2;
  --dark: #2f2418;
  --radius: 18px;
  --max: 1120px;
  --shadow: 0 20px 50px rgba(48, 33, 18, 0.14);
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-brand: "Spectral", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% -10%, rgba(179, 138, 75, 0.2), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(31, 79, 108, 0.12), transparent 36%),
    linear-gradient(180deg, #f4eee5 0%, #efe8dc 45%, #f3ece1 100%);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(48px);
  opacity: 0.26;
  animation: ambientShift 18s ease-in-out infinite alternate;
}

body::before {
  top: -12vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(198, 150, 82, 0.45), transparent 62%);
}

body::after {
  right: -8vw;
  bottom: -14vw;
  background: radial-gradient(circle, rgba(40, 86, 112, 0.35), transparent 62%);
  animation-delay: 1.8s;
}

body.intro-active {
  overflow: hidden;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.intro-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b1118;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 27, 36, 0.1) 0%,
    rgba(17, 27, 36, 0.32) 100%
  );
}

.intro-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -145px);
  z-index: 1;
  display: grid;
  place-items: center;
  color: #f2f7fc;
  pointer-events: none;
}

.intro-btn {
  font-size: 1.15rem;
  padding: 0.9rem 2.1rem;
  min-width: 190px;
  border-radius: 999px;
  pointer-events: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 16px 34px rgba(8, 42, 62, 0.42);
}

.intro-btn.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.intro-gate.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(176, 139, 78, 0.14), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(116, 90, 50, 0.1), transparent 30%);
  pointer-events: none;
  transition: transform 0.45s ease-out;
  will-change: transform;
}

.site-header,
main,
footer {
  width: 100%;
  margin: 0;
  padding-inline: clamp(1rem, 4vw, 4rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(246, 238, 227, 0.88) 0%,
    rgba(246, 238, 227, 0.55) 100%
  );
  border-bottom: 1px solid rgba(163, 134, 92, 0.24);
  transition: padding 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

body.scrolled .site-header {
  padding: 0.8rem 0;
  background: linear-gradient(
    180deg,
    rgba(246, 238, 227, 0.94) 0%,
    rgba(246, 238, 227, 0.74) 100%
  );
  border-bottom-color: rgba(116, 145, 166, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 64vw;
}

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  padding: 0.26rem;
  border-radius: 10px;
  border: 1px solid rgba(139, 106, 54, 0.24);
  background: #fff;
  box-shadow: 0 10px 20px rgba(48, 33, 18, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 22px rgba(48, 33, 18, 0.19);
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 2.9vw, 2.7rem);
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  background: linear-gradient(135deg, var(--ink), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(126, 98, 56, 0.24);
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.72);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.2rem 0.38rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--accent-soft));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a.active {
  color: #1f3446;
  background: rgba(210, 224, 236, 0.58);
}

.hero {
  padding: 2.4rem 0 2.6rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy {
  padding: 1.35rem 1.35rem 1.2rem;
  border: 1px solid rgba(117, 142, 159, 0.24);
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(165deg, #fffdf8 0%, #f6f0e7 100%);
  box-shadow: 0 16px 30px rgba(50, 36, 20, 0.1);
}

.hero-kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-subtitle {
  margin: -0.2rem 0 0.8rem;
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
  color: #384b5c;
  max-width: 44ch;
  font-weight: 500;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0 0 0.8rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  max-width: 11ch;
}

.hero-title {
  font-size: clamp(2.6rem, 6.8vw, 5.4rem);
  max-width: 9.5ch;
  text-wrap: balance;
  margin-bottom: 0.55rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.5rem;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.1rem;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-signals span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #35546c;
  background: #edf4fa;
  border: 1px solid #c8dae7;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(102, 72, 32, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -30%;
  width: 36%;
  height: 280%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-260%) rotate(18deg);
  transition: transform 0.6s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(102, 72, 32, 0.34);
}

.btn:hover::before {
  transform: translateX(430%) rotate(18deg);
}

.btn.small {
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.ghost::before {
  display: none;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 79, 108, 0.35);
}

.inline-link:hover {
  border-bottom-color: rgba(31, 79, 108, 0.75);
}

.hero-aside {
  background: linear-gradient(158deg, #3b2d1f 0%, #2a2016 100%);
  color: #f5ecdf;
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background-size: 140% 140%;
  animation: asideFlow 9s ease-in-out infinite alternate;
  display: grid;
  gap: 0.65rem;
  align-content: start;
  position: relative;
}

.hero-logo-tile {
  width: min(100%, 240px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.hero-logo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.hero-aside-art {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: min(38%, 180px);
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.hero-aside-art-video {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  opacity: 0.36;
  filter: grayscale(100%) contrast(0.92) brightness(1.08) blur(0.4px);
  transform: scale(1.06);
}

.hero-aside-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 25%, rgba(225, 188, 120, 0.18), transparent 48%),
    radial-gradient(circle at 76% 70%, rgba(138, 177, 201, 0.14), transparent 52%);
}

.hero-aside-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.aside-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c17d;
}

.aside-kicker {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8db8d2;
  font-weight: 700;
}

.hero-aside h3 {
  margin-top: 0.3rem;
  font-size: 1.55rem;
  color: #fff;
}

.hero-aside ul {
  margin: 0.7rem 0;
  padding-left: 1.1rem;
  color: #eadfce;
}

.hero-aside li {
  margin: 0.45rem 0;
}

.pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.2rem 0 0;
  color: #f0e2cb;
  font-size: 0.92rem;
}

.pulse span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e6c178;
  box-shadow: 0 0 0 rgba(230, 193, 120, 0.6);
  animation: ping 1.8s infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.stats article {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f2e9 100%);
  border: 1px solid var(--line);
  border-radius: 18px 24px 18px 14px;
  padding: 0.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stats article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(51, 35, 18, 0.16);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.93rem;
}

.panel {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: 22px 28px 20px 16px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent-soft), transparent);
  opacity: 0.7;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.65s ease;
}

.panel.visible::before {
  transform: scaleX(1);
}

.panel.is-cool {
  background: linear-gradient(180deg, var(--surface-cool) 0%, var(--surface-cool-2) 100%);
  border-color: #cad8e3;
}

.panel.is-cool h2,
.panel.is-cool h3 {
  color: #233646;
}

.panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(48, 33, 18, 0.16);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.9rem;
}

.card {
  background: linear-gradient(165deg, #fffcf7 0%, #f8f3ea 100%);
  border: 1px solid var(--line);
  border-radius: 14px 18px 14px 12px;
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #bcb1a0;
}

.card p,
.results-grid p,
.timeline,
.panel p {
  color: var(--muted);
}

.dark {
  background: var(--dark);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.dark::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 138, 70, 0.22), transparent 65%);
  pointer-events: none;
}

.dark h2,
.dark h3,
.dark p,
.dark span {
  color: #f6ede2;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.9rem;
}

.results-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.results-grid span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.market-bands {
  margin: 0.2rem 0 2.2rem;
}

.market-bands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 0.8rem;
}

.market-bands-grid article {
  background: linear-gradient(160deg, #f6fbff 0%, #ebf2f8 100%);
  border: 1px solid #cad8e3;
  border-radius: 14px 18px 14px 12px;
  padding: 0.9rem 0.85rem;
  box-shadow: 0 10px 18px rgba(34, 53, 68, 0.08);
}

.market-bands-grid h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.25rem;
  color: #284156;
}

.market-bands-grid p {
  margin: 0;
  font-size: 0.86rem;
  color: #5a6f80;
}

.market-bands-grid a {
  display: inline-flex;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2e4f68;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 79, 104, 0.35);
}

.micro-spotlight {
  margin: 1.2rem 0 1.8rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #c8d8e4;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(155deg, #f8fcff 0%, #eef4f9 100%);
  box-shadow: 0 12px 22px rgba(29, 49, 65, 0.1);
}

.micro-spotlight h2 {
  margin-bottom: 0.45rem;
  max-width: 28ch;
}

.micro-spotlight p {
  margin-top: 0;
  max-width: 70ch;
  color: #456075;
}

.service-preview {
  margin: 1.2rem 0 2.4rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  border: 1px solid #bfcfdb;
  border-radius: 22px;
  background: linear-gradient(155deg, #f9fcff 0%, #eef4f9 100%);
  box-shadow: 0 14px 28px rgba(28, 47, 62, 0.1);
}

.service-preview h2 {
  max-width: 22ch;
}

.service-preview p {
  color: #4a5e6f;
  max-width: 58ch;
}

.service-preview .btn {
  margin-top: 0.45rem;
}

.service-preview-points {
  display: grid;
  gap: 0.55rem;
  align-content: center;
}

.service-preview-points a {
  margin: 0;
  text-decoration: none;
  padding: 0.62rem 0.72rem;
  border: 1px solid #cedae4;
  border-radius: 12px 16px 12px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #355168;
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-preview-points a:hover {
  transform: translateY(-2px);
  border-color: #a9bfd1;
  background: rgba(255, 255, 255, 0.92);
}

.service-picker {
  max-width: 560px;
  margin: 0.8rem 0 1rem;
}

.service-picker label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.service-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.service-outcome {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brand);
}

form {
  display: grid;
  gap: 0.6rem;
}

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

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #e4cd9e;
  border-color: var(--brand);
  transform: translateY(-1px);
}

#formStatus {
  min-height: 1.2rem;
  margin: 0.1rem 0 0;
  color: var(--brand);
}

footer {
  padding: 1rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

footer > p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.988);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes ambientShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1.8vw, -1.2vw, 0) scale(1.08);
  }
}

@keyframes asideFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes glide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 193, 120, 0.6);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(230, 193, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 193, 120, 0);
  }
}

@media (max-width: 960px) {
  .intro-content {
    transform: translate(-50%, -120px);
  }

  .intro-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    min-width: 160px;
  }

  .site-header {
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  .brand {
    max-width: 100%;
    width: 100%;
  }

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

  .brand-text {
    font-size: clamp(1.35rem, 6.8vw, 1.9rem);
    white-space: normal;
    overflow: visible;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    border-radius: 14px;
    padding: 0.42rem;
  }

  .nav a {
    min-width: 0;
    padding: 0.3rem 0.5rem;
    font-size: 0.98rem;
  }

  .btn.small {
    align-self: flex-start;
  }

  .stats,
  .hero-layout,
  .market-bands-grid,
  .micro-spotlight,
  .service-preview,
  .cards,
  .results-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-copy {
    padding: 1.1rem;
  }

  .hero-title {
    font-size: clamp(2.05rem, 12vw, 3.15rem);
  }

  .panel {
    padding: 1.2rem;
  }

  .hero-aside {
    order: -1;
  }

  .hero-logo-tile {
    width: min(100%, 100%);
  }

  .hero-aside-art {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .site-header,
  main,
  footer {
    padding-inline: 0.7rem;
  }

  .brand-text {
    font-size: clamp(1.2rem, 9vw, 1.65rem);
  }

  .nav a {
    font-size: 0.92rem;
    padding: 0.24rem 0.4rem;
  }

  .hero-aside {
    padding: 0.85rem;
  }
}

@media (max-width: 1240px) and (min-width: 961px) {
  .site-header {
    gap: 0.7rem;
  }

  .brand {
    max-width: 50vw;
  }

  .brand-text {
    font-size: clamp(1.35rem, 2.05vw, 1.9rem);
  }

  .nav {
    gap: 0.55rem;
    padding: 0.4rem 0.52rem;
  }

  .nav a {
    min-width: 66px;
    padding: 0.18rem 0.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .mesh {
    transform: none !important;
  }
}
