@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #0d1415;
  --bg-strong: #111b1d;
  --surface: rgba(17, 27, 29, 0.84);
  --surface-strong: rgba(22, 34, 36, 0.96);
  --surface-soft: rgba(238, 245, 243, 0.06);
  --ink: #eff5f1;
  --muted: #a4b7b2;
  --line: rgba(233, 242, 239, 0.12);
  --brand: #2d6752;
  --brand-strong: #1f4638;
  --brand-soft: rgba(45, 103, 82, 0.18);
  --accent: #d0a05b;
  --ice: #8cb7c7;
  --ice-soft: rgba(140, 183, 199, 0.16);
  --shadow: 0 24px 70px rgba(5, 10, 10, 0.24);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: #0b1213;
}

body {
  margin: 0;
  min-width: 100%;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(208, 160, 91, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(140, 183, 199, 0.14), transparent 20%),
    linear-gradient(180deg, #0b1213 0%, #0e1718 34%, #132022 100%);
  overflow-x: clip;
}

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

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

p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px) saturate(130%);
  background:
    linear-gradient(180deg, rgba(237, 244, 241, 0.12), rgba(77, 98, 103, 0.08)),
    rgba(11, 17, 18, 0.52);
  border-bottom: 1px solid rgba(237, 244, 241, 0.14);
  box-shadow: 0 10px 28px rgba(5, 10, 10, 0.1);
}

.nav-shell,
.section-shell,
.footer-shell,
.band-shell,
.rhythm-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  min-height: var(--header-height);
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img,
.brand-mark {
  width: 58px;
  height: 58px;
}

.brand img {
  width: 112px;
  height: 74px;
  object-fit: contain;
  filter: brightness(1.26) saturate(1.14) drop-shadow(0 10px 24px rgba(8, 14, 15, 0.2));
}

.brand-mark {
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #f7faf8;
  background:
    linear-gradient(135deg, rgba(208, 160, 91, 0.95), rgba(45, 103, 82, 0.98)),
    var(--brand);
  box-shadow: 0 18px 40px rgba(8, 14, 15, 0.24);
}

.brand-copy span {
  display: block;
}

.brand-copy span:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(239, 245, 241, 0.76);
}

.brand-copy span:last-child {
  font-size: 0.96rem;
  line-height: 1.15;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.96rem;
  color: rgba(239, 245, 241, 0.88);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
}

.menu-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.menu-toggle__bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #eef5f1;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 18px 36px rgba(31, 70, 56, 0.24);
}

.button-secondary {
  color: #eff5f1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-ghost {
  color: #eff5f1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.eyebrow,
.service-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff5f1;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero {
  width: 100%;
  padding: 0 0 3rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-home {
  padding-bottom: 2rem;
}

.hero-subpage {
  padding-bottom: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #233537;
  box-shadow: 0 40px 72px rgba(10, 16, 17, 0.22);
}

.hero-panel-full {
  min-height: calc(100svh - var(--header-height) + 8rem);
  border-radius: 0;
  box-shadow: none;
}

.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(10, 18, 18, 0.14), rgba(10, 18, 18, 0.74));
}

.hero-overlay-centered {
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: calc(var(--header-height) + 2.4rem) 1.5rem 3rem;
}

.winter-overlay {
  background: linear-gradient(180deg, rgba(8, 18, 22, 0.18), rgba(8, 18, 22, 0.76));
}

.hero-glass-card {
  width: min(1040px, calc(100% - 2rem));
  padding: 2.2rem 2rem;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(12, 20, 21, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 28px 80px rgba(10, 18, 18, 0.24);
  backdrop-filter: blur(22px);
}

.page-intro-card {
  max-width: 820px;
}

.hero-glass-card h1,
.section-heading h2,
.detail-card h2,
.band-shell h2,
.rhythm-copy h2 {
  line-height: 0.98;
}

.hero-glass-card h1 {
  margin: 0.8rem auto 1rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 14ch;
  font-weight: 700;
}

.hero-home .hero-glass-card h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  max-width: 13ch;
}

.hero-glass-card p {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-actions-centered {
  justify-content: center;
}

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

.hero-highlights-overlay {
  width: min(980px, 100%);
}

.mini-stat,
.service-card,
.spotlight-card,
.proof-card,
.faq-item,
.contact-card,
.area-card,
.detail-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.mini-stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.mini-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.45rem;
  color: #fff;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 2rem 0 4rem;
}

.section-shell {
  display: grid;
  gap: 1.6rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 16ch;
}

.section-heading p {
  max-width: 54rem;
}

.spotlight-grid,
.service-grid,
.proof-grid,
.areas-grid,
.detail-grid {
  display: grid;
  gap: 1.2rem;
}

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

.spotlight-card,
.proof-card,
.detail-card,
.contact-card {
  padding: 1.4rem;
}

.spotlight-card h3,
.proof-card h3,
.area-card h3,
.detail-card h2 {
  margin: 0.7rem 0 0.8rem;
  color: #f5faf7;
}

.spotlight-card-accent {
  background:
    radial-gradient(circle at top right, rgba(140, 183, 199, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(25, 39, 42, 0.96), rgba(14, 25, 27, 0.98));
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 31, 33, 0.96), rgba(11, 19, 20, 0.98));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand), var(--ice));
}

.featured {
  transform: translateY(-18px);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 22, 0.06), rgba(14, 20, 22, 0.5));
}

.card-body,
.area-body {
  padding: 1.35rem;
  display: grid;
  gap: 0.7rem;
}

.card-body h3,
.area-body h3 {
  color: #f5faf7;
}

.service-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.service-list li,
.check-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.single-feature {
  display: grid;
}

.horizontal-service {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
}

.horizontal-service .card-media {
  aspect-ratio: auto;
  min-height: 100%;
}

.rhythm-band {
  padding: 0 0 4rem;
}

.rhythm-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
}

.rhythm-copy,
.rhythm-metrics {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.rhythm-copy {
  padding: 1.9rem;
  background:
    radial-gradient(circle at top left, rgba(208, 160, 91, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(17, 29, 31, 0.96), rgba(10, 17, 18, 0.98));
}

.rhythm-copy h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  max-width: 12ch;
}

.rhythm-metrics {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(31, 70, 56, 0.98), rgba(17, 33, 35, 0.98));
}

.metric-card {
  min-height: 160px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.8rem;
  color: #fff;
}

.metric-card p {
  color: rgba(247, 251, 249, 0.84);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 18, 0.04), rgba(11, 17, 18, 0.68));
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  color: #fff;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.88);
}

.band,
.cta-band {
  padding: 0 0 4rem;
}

.band-shell {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(31, 70, 56, 0.98), rgba(13, 22, 24, 0.98)),
    #162324;
  color: #f7fbf9;
  box-shadow: 0 36px 70px rgba(8, 14, 15, 0.24);
}

.band-shell h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  max-width: 14ch;
}

.band-shell p,
.band-shell li {
  color: rgba(247, 251, 249, 0.84);
}

.cta-actions {
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}

.areas-grid,
.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-card,
.proof-card {
  overflow: hidden;
}

.proof-card {
  background:
    linear-gradient(180deg, rgba(18, 29, 31, 0.94), rgba(11, 19, 20, 0.98));
}

.proof-card .quote {
  color: #dbe6e2;
}

.faq-wrap,
.contact-grid,
.detail-grid {
  display: grid;
  gap: 1.2rem;
}

.faq-wrap {
  grid-template-columns: 0.92fr 1.08fr;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-lines {
  display: grid;
  gap: 1rem;
}

.contact-label {
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5faf7;
}

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

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  color: #eff5f1;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.95rem 1rem;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

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

.detail-card {
  background:
    linear-gradient(180deg, rgba(17, 28, 30, 0.96), rgba(10, 18, 20, 0.98));
}

.blog-shell,
.article-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.blog-hero,
.article-hero {
  padding: 3rem 0 1.5rem;
}

.blog-shell,
.article-shell {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 4rem;
}

.blog-hero h1,
.article-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 14ch;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(18, 29, 31, 0.94), rgba(11, 19, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.blog-body {
  padding: 1.35rem;
  display: grid;
  gap: 0.75rem;
  height: 100%;
}

.blog-card h3,
.article-section h2,
.article-section h3,
.aside-card h3 {
  color: #f5faf7;
}

.blog-card p,
.article-section p,
.aside-card p,
.article-list li {
  color: #dbe6e2;
}

.meta,
.article-hero .meta {
  color: #98d3ad;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.2rem;
}

.article-main {
  display: grid;
  gap: 1rem;
}

.article-section,
.aside-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 29, 31, 0.94), rgba(11, 19, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.article-section h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
}

.article-section h3,
.aside-card h3 {
  margin-bottom: 0.5rem;
}

.article-section p + p,
.aside-card p + p {
  margin-top: 1rem;
}

.article-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

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

.article-list li {
  position: relative;
  padding-left: 1.1rem;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #d9f1e2;
  font-size: 0.84rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 1080px) {
  .spotlight-grid,
  .service-grid,
  .proof-grid,
  .areas-grid,
  .gallery-grid,
  .rhythm-metrics,
  .blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .horizontal-service,
  .rhythm-shell,
  .band-shell,
  .faq-wrap,
  .contact-grid,
  .detail-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .nav-shell,
  .section-shell,
  .footer-shell,
  .band-shell,
  .rhythm-shell,
  .blog-shell,
  .article-shell {
    width: calc(100% - 1rem);
  }

  .nav-shell {
    min-height: var(--header-height);
    padding: 0.55rem 0;
    gap: 0.55rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img,
  .brand-mark {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
  }

  .brand img {
    width: 90px;
    height: 60px;
  }

  .brand-mark {
    border-radius: 15px;
  }

  .brand-copy {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 8.8rem);
    min-width: 0;
    pointer-events: none;
  }

  .brand-copy span:first-child {
    display: none;
  }

  .brand-copy span:last-child {
    font-size: 0.67rem;
    line-height: 1.12;
    text-align: center;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #eef5f1;
    padding: 0;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(10, 17, 18, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links {
    top: calc(100% + 0.5rem);
    gap: 0.85rem;
  }

  .nav-actions {
    top: calc(100% + 16.5rem);
    gap: 0.75rem;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.is-open .menu-toggle__bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle__bars span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle__bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-panel {
    min-height: 460px;
  }

  .hero-panel-full {
    min-height: max(calc(100svh - var(--header-height) + 4rem), 980px);
  }

  .hero-overlay-centered {
    justify-content: flex-start;
    padding: calc(var(--header-height) + 0.2rem) 1rem 1.2rem;
    gap: 0.8rem;
  }

  .hero-glass-card {
    width: 100%;
    padding: 1.15rem 1rem 1.2rem;
    border-radius: 28px;
  }

  .hero-glass-card h1 {
    width: min(100%, 13ch);
    margin: 0.55rem auto 0.7rem;
    font-size: clamp(2.05rem, 8.8vw, 3.45rem);
    line-height: 1.02;
  }

  .hero-home .hero-glass-card h1 {
    width: min(100%, 12ch);
    font-size: clamp(1.85rem, 7.2vw, 3rem);
  }

  .hero-glass-card p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-highlights,
  .spotlight-grid,
  .service-grid,
  .proof-grid,
  .areas-grid,
  .gallery-grid,
  .contact-form,
  .rhythm-metrics,
  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .section {
    padding: 1.5rem 0 3rem;
  }

  .section-heading {
    align-items: flex-start;
    text-align: left;
  }

  .section-heading h2,
  .band-shell h2,
  .rhythm-copy h2,
  .detail-card h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .button,
  .button-secondary,
  .button-ghost {
    min-height: 42px;
    padding: 0 0.95rem;
    font-size: 0.9rem;
  }

  .mini-stat {
    padding: 0.9rem 0.85rem;
  }

  .mini-stat strong {
    font-size: 1.2rem;
  }

  .spotlight-card,
  .proof-card,
  .detail-card,
  .contact-card,
  .card-body,
  .area-body,
  .blog-body,
  .article-section,
  .aside-card {
    padding: 1.1rem;
  }

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