@charset "utf-8";
/* CSS Document */

/* =========================================================
   SITE TEMPLATE PACK
   Shared stylesheet for:
   1. index.html (page-home)
   2. blog-listicle.html (page-blog-listicle)
   3. gallery-standard.html (page-gallery-standard)
   4. gallery-featured.html (page-gallery-featured)
   5. gallery-centered.html (page-gallery-centered)
   ========================================================= */

/* -------------------- TOKENS -------------------- */

:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #efe9df;
  --surface-muted: #f5efe6;
  --ink: #1f2430;
  --ink-soft: #5a6472;
  --line: rgba(31, 36, 48, 0.1);
  --line-strong: rgba(31, 36, 48, 0.16);
  --brand: #173852;
  --brand-deep: #102433;
  --accent: #c76b2a;
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(20, 28, 38, 0.08);
  --shadow-md: 0 18px 50px rgba(20, 28, 38, 0.12);
  --radius: 0.45rem;
  --radius-sm: 0.35rem;
  --radius-btn: 0.45rem;
  --container: 1180px;
  --hero-gutter: clamp(1.25rem, 4vw, 4rem);
  --hero-gutter-mobile: 1.25rem;
  --text-base: 1rem;
  --text-sm: 0.95rem;
  --text-lg: 1.08rem;
  --text-xl: clamp(2rem, 3vw, 3rem);
  --text-hero: clamp(2.45rem, 5.5vw, 4.8rem);
}

/* -------------------- BASE -------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

p, h1, h2, h3, h4, strong, dl, dt, dd { margin: 0; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

/* -------------------- HEADER -------------------- */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
}

.header-link--contact {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.header-link--contact:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.78);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.35rem;
  background: rgba(16,36,51,0.0);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 18, 28, 0.18);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(16,36,51,0.20);
}

.menu-toggle__bar {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu[hidden] {
  display: none;
}

/* -------------------- BUTTONS -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn-light {
  background: var(--white);
  color: var(--brand);
}

.btn-light:hover { background: #f0ede6; }

.btn-outline {
  border-color: rgba(255,255,255,0.34);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

/* -------------------- LABELS -------------------- */

.eyebrow,
.section-label,
.feature-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255,255,255,0.82);
}

.section-label,
.feature-card__eyebrow {
  color: var(--accent);
}

/* -------------------- HERO -------------------- */

.hero {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--brand-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,18,28,0.2) 0%, rgba(9,18,28,0.24) 24%, rgba(9,18,28,0.64) 74%, rgba(9,18,28,0.82) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7.5rem 0 4rem;
}

.hero__content {
  color: var(--white);
  max-width: 46rem;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
}

.hero__title {
  font-family: 'Google Sans Flex', 'DM Sans', Arial, sans-serif;
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  max-width: 11ch;
  font-weight: 700;
}

.hero__lead {
  max-width: 44rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.page-home .hero {
  min-height: 100svh;
}

.page-home .hero::before {
  background:
    linear-gradient(180deg, rgba(8,17,26,0.26) 0%, rgba(8,17,26,0.2) 20%, rgba(8,17,26,0.62) 72%, rgba(8,17,26,0.78) 100%),
    url('../img/greenhouse-hero-2.webp') center/cover no-repeat;
  transform: scale(1.02);
}

.page-home .hero__inner {
  padding: 8.5rem var(--hero-gutter) 6.5rem;
}

.page-home .hero__content {
  padding-inline: 0;
}

/* -------------------- SECTIONS -------------------- */

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-family: 'Google Sans Flex', 'DM Sans', Arial, sans-serif;
  font-size: var(--text-xl);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.section-heading p,
.feature-copy p,
.feature-meta,
.feature-card__body p,
.closing-band p {
  color: var(--ink-soft);
}

/* -------------------- SHARED FEATURE + GALLERY CARDS -------------------- */

.feature-panel,
.feature-copy,
.feature-card,
.closing-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.gallery-feature {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

/* unified image behavior for feature and cards */
.feature-panel img,
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-copy {
  padding: 1.5rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.feature-copy h3 {
  font-family: 'Google Sans Flex', 'DM Sans', Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.feature-meta {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.feature-card {
  height: 100%;
}

.feature-card__body {
  padding: 1rem 1rem 1.05rem;
  text-align: left;
}

.feature-card__eyebrow {
  margin-bottom: 0.45rem;
}

.feature-card__body strong,
.feature-card__body h3 {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'Google Sans Flex', 'DM Sans', Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
  font-weight: 700;
}

.feature-card__body p {
  font-size: 1rem;
}

.closing-band {
  margin-top: 1.25rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #f7f2e8 100%);
}

.closing-band strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

/* -------------------- HOME -------------------- */

.page-home .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.page-home .feature-card,
.page-home .proof-card,
.page-home .review-card,
.page-home .faq-item,
.page-home .band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.page-home .feature-card { overflow: hidden; }

/* page-home cards also inherit the shared img rule above */

.page-home .feature-card__body {
  padding: 1.4rem;
}

.page-home .feature-card h3 {
  margin-bottom: 0.6rem;
}

.page-home .feature-card p {
  color: var(--ink-soft);
}

.page-home .proof {
  background: linear-gradient(180deg, #173852 0%, #1d4667 100%);
  color: var(--white);
}

.page-home .proof .section-label {
  color: rgba(255,255,255,0.74);
}

.page-home .proof .section-heading p {
  color: rgba(255,255,255,0.78);
}

.page-home .proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.page-home .proof-card {
  padding: 1.8rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.page-home .proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}

.page-home .proof-stat strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.page-home .proof-stat span {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
}

.page-home .proof-intro-title {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.page-home .proof-intro-text {
  color: rgba(255,255,255,0.8);
}

.page-home .bands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.page-home .band {
  padding: 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8f4ee 100%);
}

.page-home .band h3 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}

.page-home .band p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.page-home .band a {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.page-home .reviews-grid,
.page-home .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}

.page-home .review-card,
.page-home .faq-item {
  padding: 1.35rem;
}

.page-home .review-card p,
.page-home .faq-item p {
  color: var(--ink-soft);
}

.page-home .review-card strong,
.page-home .faq-item h3 {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
}

/* -------------------- CONTACT / PREMIUM -------------------- */

.page-home .contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #15344d 0%, #1c4767 100%);
  color: var(--white);
}

.page-home .contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  pointer-events: none;
}

.page-home .contact .container {
  position: relative;
  z-index: 1;
}

.page-home .contact .section-label {
  color: rgba(255,255,255,0.74);
}

.page-home .contact .section-heading {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.page-home .contact .section-heading p {
  color: rgba(255,255,255,0.82);
  max-width: 38rem;
}

.page-home .contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.35rem;
  align-items: stretch;
}

.page-home .contact-copy,
.page-home .contact-side {
  min-width: 0;
}

.page-home .contact-card,
.page-home .contact-side {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 50px rgba(7, 15, 24, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-home .contact-card {
  background: rgba(255,255,255,0.10);
  padding: clamp(1.35rem, 2vw, 2rem);
}

.page-home .contact-card__intro {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.page-home .contact-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .contact-card__intro h3 {
  font-family: 'Google Sans Flex', 'DM Sans', Arial, sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.02;
  color: var(--white);
  font-weight: 700;
}

.page-home .contact-card__intro p {
  color: rgba(255,255,255,0.78);
  max-width: 38rem;
}

.page-home .contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.page-home .contact-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
  font-size: 0.86rem;
  font-weight: 500;
}

.page-home .contact-trust li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #d9b086;
  box-shadow: 0 0 0 4px rgba(217,176,134,0.14);
  flex: 0 0 auto;
}

.page-home .contact-form {
  display: grid;
  gap: 1rem;
}

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

.page-home .field {
  display: grid;
  gap: 0.45rem;
}

.page-home .field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

.page-home .field input,
.page-home .field textarea,
.page-home .field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(12, 24, 36, 0.34);
  color: var(--white);
  border-radius: 0.7rem;
  padding: 0.95rem 1rem;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.page-home .field input::placeholder,
.page-home .field textarea::placeholder {
  color: rgba(255,255,255,0.60);
}

.page-home .field select {
  color: rgba(255,255,255,0.72);
  appearance: none;
}

.page-home .field input:focus-visible,
.page-home .field textarea:focus-visible,
.page-home .field select:focus-visible {
  outline: none;
  border-color: rgba(255,255,255,0.55);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.10),
    0 0 0 1px rgba(255,255,255,0.36) inset;
}

.page-home .field textarea {
  min-height: 11rem;
  resize: vertical;
}

.page-home .field-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
}

.page-home .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.page-home .contact .btn-light {
  background: var(--white);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(10, 18, 28, 0.18);
}

.page-home .contact .btn-light:hover {
  background: #f3ede3;
  transform: translateY(-1px);
}

.page-home .contact .btn-outline {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.page-home .contact .btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.page-home .contact-side {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: clamp(1.25rem, 2vw, 1.7rem);
  background: rgba(10,20,31,0.30);
}

.page-home .contact-side-intro {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.page-home .contact-side-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}

.page-home .contact-side h3 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--white);
  font-family: 'Google Sans Flex', 'DM Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.04;
}

.page-home .contact-side-intro p {
  color: rgba(255,255,255,0.78);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin: 0 0 1.6rem;
  padding: 0;
}

.contact-details__item {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-details__item dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.contact-details__item dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
  line-height: 1.45;
}

.contact-details__item dd + dd {
  margin-top: -0.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}

.contact-details__item a {
  color: inherit;
  text-decoration: none;
}

.contact-details__item a:hover,
.contact-details__item a:focus-visible {
  color: #f5efe6;
}

.page-home .contact-side-block {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.page-home .contact-side-block strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

.page-home .contact-side-block p {
  color: rgba(255,255,255,0.82);
}

.page-home .contact-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
}

/* -------------------- PAGE VARIANTS -------------------- */

.page-blog-listicle .feature-card__eyebrow {
  display: inline-block;
}

.page-blog-listicle .gallery-feature {
  display: grid;
}

.page-gallery-standard .feature-card__eyebrow,
.page-gallery-featured .feature-card__eyebrow,
.page-gallery-centered .feature-card__eyebrow {
  display: none;
}

.page-gallery-featured .gallery-feature {
  display: grid;
}

.page-gallery-centered .feature-card__body {
  text-align: center;
}

/* -------------------- FOOTER -------------------- */

.site-footer {
  padding: 2.5rem 0 2.5rem;
  background: #111927;
  color: rgba(255,255,255,0.72);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
}

.footer-social img {
  display: block;
  width: 1.95rem;
  height: 1.95rem;
}

.footer-bottom {
  text-align: center;
}

.footer-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 0.85rem;
  border: 0;
  background: rgba(248, 249, 250, 0.14);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 1rem;
  margin-bottom: 0.65rem;
  text-align: center;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--white);
}

.footer-copyright {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(248,249,250,0.82);
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 1023px) {
  .page-home .feature-grid,
  .page-home .reviews-grid,
  .page-home .faq-grid,
  .page-home .proof-grid,
  .page-home .contact-shell,
  .contact-details {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-feature,
  .closing-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-header__bar {
    align-items: center;
  }

  .site-nav {
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(24rem, calc(100vw - 2rem));
    z-index: 40;
    padding: 0.6rem;
    background: rgba(16, 36, 51, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .mobile-menu__link {
    display: block;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 600;
  }

  .mobile-menu__link + .mobile-menu__link {
    margin-top: 0.35rem;
  }

  .mobile-menu__link:hover,
  .mobile-menu__link:focus-visible {
    background: rgba(255,255,255,0.08);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 7rem var(--hero-gutter-mobile) 3.5rem;
  }

  .hero__content {
    padding-inline: 1rem;
  }

  .page-home .hero__content {
    padding-inline: 0;
  }

  .hero__title {
    max-width: 10ch;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 18rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .page-home .feature-grid,
  .page-home .bands,
  .page-home .reviews-grid,
  .page-home .faq-grid,
  .page-home .proof-stats {
    grid-template-columns: 1fr;
  }

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

  /* feature and card images already covered by global rule */
}