:root {
  --bg-page: #efe7dd;
  --bg-light: #f7f1ea;
  --bg-ivory: #fbf7f2;
  --bg-card: #f8f3ed;
  --bg-dark: #111111;
  --bg-dark-2: #161514;
  --ink: #151413;
  --muted: #726963;
  --line: rgba(123, 97, 66, 0.18);
  --line-strong: rgba(193, 151, 91, 0.38);
  --gold: #b88542;
  --gold-bright: #f0d39c;
  --gold-soft: #d4af72;
  --shadow-soft: 0 20px 50px rgba(39, 26, 10, 0.12);
  --shadow-card: 0 16px 40px rgba(45, 28, 8, 0.1);
  --shadow-dark: 0 22px 60px rgba(0, 0, 0, 0.3);
  --radius-lg: 8px;
  --radius-md: 7px;
  --radius-sm: 5px;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --font-sans: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Phudu", "Outfit", system-ui, sans-serif;
  --font-serif: "Glora", "Gloock", Georgia, serif;
  --font-luxury: "Bodoni Moda", "Gloock", "Didot", "Bodoni 72", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 223, 174, 0.35), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(199, 215, 255, 0.45), transparent 18%),
    linear-gradient(180deg, #eadfd3 0%, #efe7dd 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

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

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

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

.browser-shell {
  max-width: 1880px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 1px solid rgba(30, 23, 15, 0.16);
  box-shadow: 0 26px 90px rgba(58, 40, 18, 0.18);
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.68rem 1rem;
  background: #1b1a19;
  color: rgba(255, 255, 255, 0.86);
}

.browser-left,
.browser-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.browser-title {
  justify-self: center;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.traffic {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
}

.red { background: #ff6057; }
.amber { background: #ffbd2f; }
.green { background: #28c93f; }

.browser-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.browser-nav svg,
.browser-actions svg {
  width: 0.85rem;
  height: 0.85rem;
}

.browser-nav.forward {
  transform: scaleX(-1);
}

.browser-actions {
  justify-self: end;
}

.site {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.site::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 8%, rgba(250, 202, 112, 0.11), transparent 18%),
    radial-gradient(circle at 72% 0%, rgba(176, 220, 255, 0.16), transparent 14%),
    radial-gradient(circle at 50% 36%, rgba(227, 154, 208, 0.08), transparent 22%);
}

.section-pad {
  padding-inline: var(--pad);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 73% 28%, rgba(177, 240, 255, 0.18), transparent 16%),
    radial-gradient(circle at 65% 84%, rgba(245, 176, 226, 0.13), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 241, 234, 0.78));
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.7rem);
  min-height: 5.3rem;
  padding: 0.95rem var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-image {
  display: block;
  flex: 0 0 auto;
  width: 7.75rem;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.brand-service {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(184, 134, 66, 0.34);
  color: #322821;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-icon {
  width: 3.45rem;
  height: 3.45rem;
  flex: 0 0 auto;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.92;
  transform: translateY(0.1rem);
}

.brand-top,
.brand-bottom {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
}

.brand-top {
  color: var(--gold);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2.6rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 600;
}

.main-nav a {
  padding: 0.45rem 0;
  color: rgba(21, 20, 19, 0.92);
}

.large-nav-cta {
  justify-self: end;
}

.header-actions {
  position: relative;
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.7rem;
}

.private-access {
  position: relative;
  z-index: 20;
}

.private-toggle,
.private-row button {
  min-height: 2.55rem;
  border: 1px solid rgba(191, 148, 89, 0.36);
  border-radius: var(--radius-sm);
  color: #322821;
  background: rgba(255, 255, 255, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
}

.private-toggle {
  padding: 0 0.88rem;
}

.private-access.is-unlocked .private-toggle {
  color: #fff8ee;
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.92), rgba(5, 5, 5, 0.98));
}

.private-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(20rem, calc(100vw - 2.4rem));
  padding: 0.9rem;
  border: 1px solid rgba(191, 148, 89, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 247, 0.96);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.private-access.is-open .private-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.private-panel label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.64rem;
  font-weight: 700;
}

.private-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.private-row input {
  min-width: 0;
  min-height: 2.55rem;
  padding: 0 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.private-row button {
  padding: 0 0.82rem;
  color: #fff8ee;
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.92), rgba(5, 5, 5, 0.98));
}

.private-error {
  min-height: 1rem;
  margin: 0.45rem 0 0;
  color: #9c351d;
  font-size: 0.74rem;
}

.private-links {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.private-access.is-unlocked .private-links {
  display: grid;
}

.private-links a,
.private-link-button {
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(184, 134, 66, 0.16);
  border-radius: var(--radius-sm);
  color: #2d251e;
  background: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  font-weight: 700;
}

.private-link-button {
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
}

.site-header > *,
.hero-grid > *,
.services-grid > *,
.results-grid > *,
.testimonial-grid > *,
.process-grid > *,
.cta-grid > *,
.footer-main > *,
.philosophy-grid > *,
.data-system-grid > *,
.local-market-grid > * {
  min-width: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(33rem, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  min-height: 23.8rem;
  gap: clamp(1.5rem, 3vw, 4.25rem);
  padding-top: 1.15rem;
  padding-bottom: 0.75rem;
}

.hero-copy {
  max-width: 38rem;
  padding-block: 1.25rem;
}

.eyebrow {
  position: relative;
  margin: 0 0 0.9rem;
  color: #3f3732;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.12rem;
  margin-left: 0.65rem;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(90deg, rgba(201, 154, 77, 0), rgba(201, 154, 77, 0.95));
}

.gold-tone {
  color: var(--gold-soft);
}

.hero-copy h1,
.section-lead h2,
.cta-grid h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy h1 {
  position: relative;
  max-width: 38rem;
  color: #15110f;
  font-family: var(--font-luxury);
  font-size: 5.35rem;
  font-weight: 600;
  line-height: 0.91;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 45px rgba(68, 45, 17, 0.12);
}

.hero-copy h1::after {
  content: "";
  position: absolute;
  inset: -10% -4%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.58) 44%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: translateX(-86%) skewX(-12deg);
  animation: hero-title-shine 8.2s ease-in-out infinite;
}

.hero-line {
  display: block;
}

.luxury-line {
  color: #12100f;
}

.highlight {
  display: inline-block;
  color: #a36b24;
  font-family: var(--font-luxury);
  font-weight: 600;
  background: linear-gradient(96deg, #5f3811 0%, #a06a25 28%, #d8aa5e 48%, #9a6424 72%, #4f2f0e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 9px 16px rgba(154, 101, 32, 0.16));
}

@keyframes hero-title-shine {
  0%, 48% {
    transform: translateX(-86%) skewX(-12deg);
  }
  68%, 100% {
    transform: translateX(86%) skewX(-12deg);
  }
}

.hero-text,
.section-lead p,
.service-card p,
.metric-card p,
.quote-card p,
.process-card p,
.cta-grid p,
.footer-column p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 30rem;
  margin: 1.1rem 0 1.6rem;
  font-size: 0.97rem;
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  min-height: 3rem;
  padding: 0.58rem 1rem 0.58rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(191, 148, 89, 0.4);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 700;
}

.button.primary {
  color: #fff8ee;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.92), rgba(5, 5, 5, 0.98)),
    linear-gradient(135deg, rgba(240, 211, 156, 0.38), rgba(201, 154, 77, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 201, 0.16),
    0 10px 24px rgba(33, 23, 10, 0.34);
}

.button.secondary {
  color: #332820;
  background: rgba(255, 255, 255, 0.46);
}

.button.iridescent {
  position: relative;
  overflow: hidden;
  color: #171312;
  border-color: rgba(203, 156, 88, 0.54);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.92), rgba(255, 234, 188, 0.82) 28%, rgba(204, 239, 255, 0.82) 52%, rgba(252, 214, 243, 0.82) 74%, rgba(255, 246, 223, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 32px rgba(165, 109, 31, 0.18);
}

.button.iridescent::before {
  content: "";
  position: absolute;
  inset: -140% -36%;
  background: linear-gradient(100deg, transparent 38%, rgba(255, 255, 255, 0.78) 48%, transparent 58%);
  transform: translateX(-34%) rotate(8deg);
  transition: transform 0.65s ease;
}

.button.iridescent:hover::before {
  transform: translateX(34%) rotate(8deg);
}

.button.iridescent > * {
  position: relative;
  z-index: 1;
}

.button.iridescent .button-arrow.plain {
  color: #8a642f;
}

.button.secondary.inverse {
  color: #f4ece1;
  background: rgba(255, 255, 255, 0.03);
}

.button.compact {
  margin-top: 1.5rem;
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #3d3b39, #111111 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-arrow.plain {
  color: var(--gold);
  background: transparent;
  box-shadow: none;
}

.button-arrow svg,
.icon {
  width: 1rem;
  height: 1rem;
}

.hero-art {
  position: relative;
  min-height: 24.6rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 26%, rgba(220, 243, 255, 0.72), transparent 24%),
    radial-gradient(circle at 58% 68%, rgba(240, 206, 255, 0.3), transparent 22%),
    radial-gradient(circle at 38% 78%, rgba(255, 226, 181, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 0 3% 6%;
  border: 1px solid rgba(191, 148, 89, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.hero-lines,
.hero-grid-glow {
  position: absolute;
  inset: 0;
}

.hero-lines {
  background:
    radial-gradient(circle at 80% 25%, rgba(207, 236, 255, 0.85), transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(247, 199, 233, 0.7), transparent 18%),
    radial-gradient(circle at 42% 64%, rgba(255, 233, 187, 0.55), transparent 14%);
}

.hero-lines::before {
  content: "";
  position: absolute;
  inset: 9% 10%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='760' viewBox='0 0 900 760'%3E%3Cg fill='none' stroke='%23d4b17b' stroke-opacity='.32' stroke-width='1.2'%3E%3Cpath d='M90 365c140-170 350-160 460-5s250 160 305 40'/%3E%3Cpath d='M44 245c170-100 350-80 510 60s270 150 318 20'/%3E%3Cpath d='M120 535c140-110 325-125 470-35s220 90 260 10'/%3E%3Cpath d='M310 55v650' stroke-opacity='.1'/%3E%3Cpath d='M605 75v620' stroke-opacity='.1'/%3E%3C/g%3E%3Cg fill='%23c6994d' fill-opacity='.48'%3E%3Ccircle cx='163' cy='190' r='4'/%3E%3Ccircle cx='604' cy='140' r='4'/%3E%3Ccircle cx='700' cy='345' r='3.5'/%3E%3Ccircle cx='276' cy='410' r='3.5'/%3E%3Ccircle cx='766' cy='532' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.78;
}

.hero-lines::after {
  content: "";
  position: absolute;
  inset: 4% 2% 2%;
  background:
    radial-gradient(circle at 58% 55%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 84% 34%, rgba(193, 236, 255, 0.55), transparent 16%),
    radial-gradient(circle at 40% 74%, rgba(255, 219, 246, 0.42), transparent 16%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-grid-glow::before,
.hero-grid-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.hero-grid-glow::before {
  right: 7%;
  bottom: 20%;
  width: 1rem;
  height: 1rem;
}

.hero-grid-glow::after {
  left: 44%;
  top: 22%;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-emblem {
  position: absolute;
  top: 0.8rem;
  right: clamp(0.8rem, 3vw, 2rem);
  width: auto;
  height: calc(100% - 2.4rem);
  max-width: min(92%, 34rem);
  object-fit: contain;
  filter:
    drop-shadow(0 20px 32px rgba(78, 55, 23, 0.16))
    drop-shadow(0 0 40px rgba(255, 245, 220, 0.42));
}

.hero-stat {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(191, 148, 89, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 251, 247, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-stat .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold);
}

.hero-stat strong,
.footer-card h3 {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-stat span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.client-strip {
  display: grid;
  grid-template-columns: minmax(12rem, 1.05fr) repeat(4, minmax(8.5rem, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.74);
}

.client-strip > * {
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 0.8rem 0.7rem;
}

.client-strip > *:not(:first-child) {
  border-left: 1px solid var(--line);
}

.client-heading {
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.client-logo {
  justify-content: center;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #22201f;
  font-size: 0.78rem;
  overflow: hidden;
}

.client-logo img {
  width: auto;
  max-width: 9.5rem;
  height: 2.2rem;
  max-height: 2.2rem;
  object-fit: contain;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.08);
}

.logo-gabby img {
  max-width: 10.75rem;
}

.section-dark {
  position: relative;
  color: #f3ede6;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04) 12%, transparent 12% 25%, rgba(255, 255, 255, 0.035) 25% 38%, transparent 38% 64%, rgba(255, 255, 255, 0.03) 64% 76%, transparent 76%),
    linear-gradient(180deg, #121212, #0e0e0e);
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: auto 2.2rem 1.2rem auto;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 233, 191, 0.85), rgba(192, 146, 74, 0.65) 22%, rgba(17, 17, 17, 0.08) 23%, rgba(17, 17, 17, 0) 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 72%);
  opacity: 0.9;
  pointer-events: none;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.section-lead {
  padding: 0.55rem 0;
}

.section-lead h2 {
  font-size: 3rem;
  line-height: 1.03;
  text-wrap: balance;
}

.results-grid .section-lead h2 {
  max-width: 18rem;
  font-size: 2.5rem;
}

.dark-lead h2,
.dark-lead p {
  color: #f0e9df;
}

.lead-accent {
  width: 9rem;
  height: 1.2rem;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(212, 177, 123, 0.32);
  position: relative;
}

.lead-accent::after {
  content: "";
  position: absolute;
  left: 1.45rem;
  bottom: -0.43rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid rgba(212, 177, 123, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(201, 154, 77, 0.4));
}

.metric-card {
  min-height: 11.1rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(212, 177, 123, 0.32);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.metric-card .icon {
  color: var(--gold-soft);
  width: 1.1rem;
  height: 1.1rem;
}

.metric-card strong {
  display: block;
  margin-top: 1.35rem;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 0.95;
  color: var(--gold-bright);
}

.metric-card h3,
.service-card h3,
.process-card h3,
.footer-column h3 {
  margin: 0.7rem 0 0.45rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.metric-card p,
.service-card p,
.process-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3.5vw, 4rem);
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

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

.service-card,
.quote-card {
  min-height: 7.55rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 28px rgba(45, 28, 8, 0.06);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 30rem;
  margin-top: 1.1rem;
}

.industry-tags span {
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(184, 134, 66, 0.2);
  border-radius: var(--radius-sm);
  color: #5f564f;
  background: rgba(255, 255, 255, 0.36);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  font-weight: 700;
}

.service-card .icon,
.process-card .icon {
  color: var(--gold);
  width: 1rem;
  height: 1rem;
}

.philosophy {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 241, 232, 0.96)),
    radial-gradient(circle at 12% 42%, rgba(240, 211, 156, 0.3), transparent 22%);
  border-top: 1px solid var(--line);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) minmax(18rem, 0.75fr) repeat(3, minmax(0, 0.78fr));
  gap: 0.85rem;
  align-items: stretch;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.philosophy-grid .section-lead h2 {
  max-width: 33rem;
}

.philosophy-copy {
  display: flex;
  align-items: end;
  padding: 0.7rem 0.4rem 0.9rem;
}

.philosophy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.principle-card {
  min-height: 11.2rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2)),
    rgba(255, 250, 244, 0.56);
}

.principle-card span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.principle-card h3 {
  margin: 1.4rem 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.data-system {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 50%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 78% 20%, rgba(195, 233, 255, 0.3), transparent 18%),
    radial-gradient(circle at 86% 72%, rgba(247, 210, 238, 0.26), transparent 20%),
    linear-gradient(180deg, #faf6f0, #eee5d9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-system-grid {
  display: grid;
  grid-template-columns: minmax(25rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.6rem;
}

.data-lead h2 {
  max-width: 35rem;
  color: #171311;
}

.data-lead > p {
  max-width: 34rem;
  margin: 1rem 0 1.3rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.system-list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(184, 134, 66, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 28px rgba(42, 28, 11, 0.045);
}

.system-list .icon {
  width: 2rem;
  height: 2rem;
  padding: 0.45rem;
  color: var(--gold);
  border-radius: 50%;
  background: rgba(184, 134, 66, 0.13);
}

.system-list strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #1b1815;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
}

.system-list span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.48;
}

.analytics-board {
  position: relative;
  min-height: 24rem;
  padding: 1.18rem;
  color: #f7efe4;
  border: 1px solid rgba(212, 177, 123, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 18%, rgba(229, 246, 255, 0.16), transparent 20%),
    radial-gradient(circle at 16% 82%, rgba(255, 220, 174, 0.13), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #181715, #0c0b0a);
  box-shadow:
    0 26px 70px rgba(37, 25, 10, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.analytics-board::before {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1.1rem 1.2rem;
  height: 7rem;
  background: linear-gradient(180deg, rgba(184, 134, 66, 0.18), rgba(184, 134, 66, 0));
  filter: blur(16px);
  pointer-events: none;
}

.board-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 177, 123, 0.22);
}

.board-head span,
.board-head em,
.board-metrics span,
.board-foot span {
  color: rgba(247, 239, 228, 0.62);
  font-size: 0.72rem;
  font-style: normal;
}

.board-head strong {
  display: block;
  margin-top: 0.18rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.1rem 0;
}

.board-metrics div {
  padding: 0.85rem;
  border: 1px solid rgba(212, 177, 123, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.board-metrics strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
}

.board-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 0.75rem;
  height: 9.4rem;
  padding: 1rem 1rem 0.85rem;
  border: 1px solid rgba(212, 177, 123, 0.16);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(5, 5, 5, 0.25);
}

.board-chart span {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0.75rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #f4d8a2, #b88642);
  box-shadow: 0 0 18px rgba(184, 134, 66, 0.22);
}

.board-foot {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 238, 0.92);
  color: #1a1714;
}

.board-foot strong {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

.board-foot span {
  color: #6b625b;
}

.about-showcase {
  background: #111111;
  color: #f5eee5;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(27rem, 0.96fr) repeat(3, minmax(0, 1fr));
  grid-template-rows: 31rem 13.5rem;
  border-top: 1px solid rgba(212, 177, 123, 0.2);
  border-bottom: 1px solid rgba(212, 177, 123, 0.18);
}

.about-panel {
  grid-column: 1;
  grid-row: 1;
  padding: 1.55rem clamp(1.65rem, 2vw, 2.35rem);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 42%),
    linear-gradient(180deg, #111111, #0d0d0d);
}

.about-panel h2 {
  max-width: 25rem;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.about-panel p {
  max-width: 24rem;
  margin: 0.85rem 0 0.95rem;
  color: rgba(245, 238, 229, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.about-list {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: rgba(245, 238, 229, 0.72);
  font-size: 0.72rem;
  line-height: 1.28;
}

.about-list .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold-soft);
}

.about-list strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.about-panel .button.compact {
  margin-top: 1rem;
}

.about-gallery {
  display: contents;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  background: #171717;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.about-photo.hero-photo {
  grid-column: 2 / -1;
  grid-row: 1;
}

.about-gallery .about-photo:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2;
}

.about-gallery .about-photo:nth-child(3) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.about-gallery .about-photo:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 2;
}

.testimonials {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 241, 234, 0.92));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.quote-card {
  min-height: 7.4rem;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.quote-card p {
  margin: 0.7rem 0 0.95rem;
  font-size: 0.82rem;
  color: #5c534d;
  line-height: 1.55;
}

.quote-card footer {
  font-size: 0.76rem;
  font-weight: 600;
}

.quote-card footer span {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.74rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.process-lead {
  padding-right: 1.2rem;
}

.process-card {
  position: relative;
  min-height: 7.6rem;
  padding: 0.95rem 0.8rem 0.8rem;
}

.process-card::after {
  content: "›";
  position: absolute;
  right: -0.38rem;
  top: 3rem;
  color: var(--gold-soft);
  font-size: 1.6rem;
}

.process-grid > :last-child::after {
  display: none;
}

.process-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.step-number {
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.local-market {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(184, 134, 66, 0.13), transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 241, 234, 0.96));
}

.local-market-grid {
  display: grid;
  grid-template-columns: minmax(26rem, 1fr) minmax(20rem, 0.88fr) repeat(3, minmax(0, 0.82fr));
  gap: 0.85rem;
  align-items: stretch;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.local-market .section-lead h2 {
  max-width: 42rem;
}

.local-copy {
  display: flex;
  align-items: end;
  padding: 0.6rem 0.4rem 0.9rem;
}

.local-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.local-card {
  min-height: 10.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 10px 28px rgba(45, 28, 8, 0.06);
}

.local-card h3 {
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
}

.local-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cta-ribbon {
  position: relative;
  background:
    radial-gradient(circle at 36% 50%, rgba(255, 222, 171, 0.35), transparent 16%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 238, 230, 0.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.6rem;
}

.cta-grid h2 {
  font-size: 2.6rem;
}

.site-footer {
  background: #f9f5ef;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.7fr 0.88fr 1.25fr;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.7rem;
}

.footer-brand {
  align-self: start;
}

.footer-column {
  padding-left: 0.9rem;
  border-left: 1px solid var(--line);
}

.footer-column h3 {
  margin-top: 0.35rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0.24rem 0;
  color: #5b524b;
  font-size: 0.78rem;
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.55rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #3d332b;
}

.socials svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-card {
  position: relative;
  padding: 1rem 1.1rem;
  border-radius: 0;
  overflow: hidden;
  color: #f4ece0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(180deg, #111111, #171717);
}

.footer-card .eyebrow {
  margin-bottom: 0.6rem;
}

.orb {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 236, 201, 0.9), rgba(199, 153, 76, 0.65) 24%, rgba(255, 255, 255, 0.12) 25%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 60%);
}

.orb::before {
  content: "";
  position: absolute;
  inset: 2.1rem auto auto -7rem;
  width: 7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 177, 123, 0.18), rgba(212, 177, 123, 0.82));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand cta"
      "nav nav";
    row-gap: 1rem;
  }

  .brand { grid-area: brand; }
  .main-nav { grid-area: nav; justify-content: flex-start; flex-wrap: wrap; }
  .header-actions { grid-area: cta; }

  .hero-grid,
  .services-grid,
  .philosophy-grid,
  .data-system-grid,
  .local-market-grid,
  .cta-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .philosophy-copy,
  .local-copy {
    align-items: start;
    padding: 0;
  }

  .hero-art {
    min-height: 31rem;
    border-top: 1px solid rgba(191, 148, 89, 0.12);
  }

  .about-grid {
    display: block;
  }

  .about-panel {
    padding: 2rem var(--pad);
  }

  .about-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 15rem;
  }

  .about-photo.hero-photo,
  .about-gallery .about-photo:nth-child(2),
  .about-gallery .about-photo:nth-child(3),
  .about-gallery .about-photo:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-photo.hero-photo {
    grid-column: 1 / -1;
    min-height: 24rem;
  }

  .results-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .results-grid .section-lead,
  .testimonial-grid .section-lead,
  .process-grid .section-lead {
    grid-column: 1 / -1;
  }

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

  .footer-column {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .browser-shell {
    width: 100%;
    max-width: 100%;
  }

  .section-pad,
  .site-header {
    padding-left: var(--pad);
    padding-right: var(--pad);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .browser-bar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "left actions"
      "title title";
  }

  .browser-left { grid-area: left; }
  .browser-actions { grid-area: actions; }
  .browser-title { grid-area: title; }

  .hero-grid {
    display: block;
    min-height: auto;
  }

  .results-grid,
  .testimonial-grid,
  .process-grid,
  .client-strip,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-heading {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .cta-grid {
    min-height: auto;
    padding-block: 2rem;
  }
  :root {
    --pad: 1.15rem;
  }

  .browser-bar {
    padding-inline: 0.8rem;
  }

  .traffic,
  .browser-actions,
  .browser-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "cta";
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
    gap: 0.85rem 1.2rem;
    font-size: 0.68rem;
    max-width: 100%;
  }

  .large-nav-cta {
    justify-self: stretch;
  }

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

  .brand-service {
    min-height: auto;
    padding: 0.55rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(184, 134, 66, 0.34);
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    width: 100%;
  }

  .private-access,
  .private-toggle {
    width: 100%;
  }

  .private-panel {
    position: static;
    display: none;
    width: 100%;
    margin-top: 0.6rem;
  }

  .private-access.is-open .private-panel {
    display: block;
  }

  .button {
    width: 100%;
  }

  .results-grid,
  .testimonial-grid,
  .process-grid,
  .client-strip,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .services-grid,
  .philosophy-grid,
  .data-system-grid,
  .local-market-grid,
  .testimonial-grid,
  .process-grid,
  .results-grid,
  .cta-grid,
  .card-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-grid > *,
  .services-grid > *,
  .philosophy-grid > *,
  .data-system-grid > *,
  .local-market-grid > *,
  .testimonial-grid > *,
  .process-grid > *,
  .results-grid > *,
  .cta-grid > *,
  .card-grid > * {
    width: 100%;
    max-width: calc(100vw - 2.3rem) !important;
  }

  .client-strip > *:not(:first-child) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 3.08rem;
    line-height: 0.94;
  }

  .hero-copy,
  .hero-text,
  .button-row,
  .hero-art,
  .section-lead,
  .section-lead p,
  .philosophy-copy,
  .philosophy-copy p,
  .data-lead,
  .data-lead > p,
  .local-copy,
  .local-copy p,
  .industry-tags {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1,
  .section-lead h2,
  .cta-grid h2 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    padding-right: 0;
  }

  .button-row {
    display: grid;
  }

  .hero-text {
    max-width: 20rem;
  }

  .button,
  .metric-card,
  .service-card,
  .quote-card,
  .principle-card,
  .local-card,
  .analytics-board,
  .hero-art {
    max-width: 21.75rem;
  }

  .luxury-line span {
    display: block;
  }

  .section-lead h2,
  .philosophy-grid .section-lead h2,
  .data-lead h2,
  .local-market .section-lead h2,
  .cta-grid h2 {
    max-width: 19.5rem !important;
    font-size: 2.25rem;
  }

  .section-lead,
  .section-lead p,
  .data-lead,
  .data-lead > p,
  .philosophy-copy,
  .philosophy-copy p,
  .local-copy,
  .local-copy p,
  .industry-tags,
  .metric-card,
  .service-card,
  .quote-card,
  .principle-card,
  .local-card,
  .analytics-board {
    max-width: 19.5rem !important;
  }

  .data-system-grid {
    gap: 1.2rem;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }

  .analytics-board {
    min-height: auto;
    padding: 1rem;
  }

  .board-metrics {
    grid-template-columns: 1fr;
  }

  .board-chart {
    height: 7.6rem;
    gap: 0.45rem;
  }

  .philosophy-grid {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .local-market-grid {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .hero-art {
    min-height: 25rem;
  }

  .hero-emblem {
    width: auto;
    height: 20rem;
    max-width: 92%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 1.2rem;
  }

  .hero-stat {
    position: static;
    margin: 18rem 0 0;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 13rem;
  }

  .about-photo.hero-photo {
    min-height: 20rem;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .footer-brand,
  .footer-column,
  .footer-card {
    width: 100%;
  }

  .footer-card {
    min-height: 8.8rem;
  }

  .socials,
  .footer-bottom div {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding-block: 0.8rem;
  }
}
