/* SIGNATURE Building Contracting LLC — static site styles */

:root {
  --charcoal: #262e39;
  --charcoal-soft: #3a4452;
  --gold: #fbab18;
  --gold-dark: #e09510;
  --gold-soft: #fff6e5;
  --white: #ffffff;
  --bg: #f4f6f8;
  --bg-warm: #faf8f5;
  --muted: #5c6673;
  --line: rgba(38, 46, 57, 0.12);
  --shadow: 0 12px 40px rgba(38, 46, 57, 0.12);
  --shadow-soft: 0 4px 20px rgba(38, 46, 57, 0.08);
  --radius: 14px;
  --header-h: 104px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(251, 171, 24, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(38, 46, 57, 0.04), transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 40%, var(--white) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Split-rail header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
  padding: 0.9rem 1.5rem 0.9rem 1.75rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.brand__text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

.header-actions {
  display: contents;
}

.header-rail {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.45rem 1.75rem;
  background: var(--charcoal);
  border-bottom-left-radius: 22px;
}

.header-rail .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.header-rail .btn--outline:hover {
  background: #fff;
  color: var(--charcoal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  grid-column: 2;
  grid-row: 2;
  padding: 0.35rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 0.9rem;
  border-radius: 0;
  color: var(--charcoal-soft);
  position: relative;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--charcoal);
  background: transparent;
}

.nav a.is-active {
  color: var(--gold-dark);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--gold);
}

.site-header.is-scrolled .nav {
  border-bottom-color: transparent;
  box-shadow: 0 8px 24px rgba(38, 46, 57, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--gold:hover {
  background: var(--gold-dark);
}

.btn--outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-out forwards;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(38, 46, 57, 0.88) 0%, rgba(38, 46, 57, 0.55) 48%, rgba(38, 46, 57, 0.35) 100%),
    linear-gradient(0deg, rgba(38, 46, 57, 0.65) 0%, transparent 45%);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 38rem;
  animation: fadeUp 0.9s ease 0.15s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero__brand em {
  font-style: italic;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3.5rem 0;
}

.section__head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease both;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero {
  padding: calc(var(--header-h) + 4.5rem) 0 3rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 36rem;
}

/* —— Home service preview —— */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.service-block ul {
  display: grid;
  gap: 0.55rem;
}

.service-block li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  color: var(--charcoal-soft);
  font-size: 0.98rem;
}

.service-block li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.section-cta {
  margin-top: 2rem;
}

/* —— Clients strip —— */
.clients-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 2.5rem 0;
  overflow: hidden;
}

.clients-strip__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.logo-marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-marquee img,
.client-grid img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.25s ease;
}

.logo-marquee img:hover,
.client-grid li:hover img {
  transform: scale(1.04);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}

.client-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.client-grid li:hover {
  border-color: rgba(251, 171, 24, 0.45);
  box-shadow: var(--shadow-soft);
}

/* —— Service detail list —— */
.service-groups {
  display: grid;
  gap: 3.5rem;
}

.service-group h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-group > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

.service-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— About —— */
.about-layout {
  max-width: 42rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
}

.about-copy strong {
  color: var(--charcoal);
}

.about-gallery-section {
  padding-top: 0.5rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.about-gallery__item--wide {
  grid-row: 1 / 3;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.about-gallery__item:hover img {
  transform: scale(1.03);
}

.about-gallery__item--wide img {
  min-height: 100%;
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.contact-detail {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-detail dd {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--gold-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.contact-map {
  margin-top: 3.5rem;
}

.contact-map__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--bg);
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 171, 24, 0.2);
  background: var(--white);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--gold-soft);
  border-radius: 10px;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* —— CTA band —— */
.cta-band {
  margin: 0 0 0;
  padding: 4rem 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 171, 24, 0.25), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 22rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  max-width: 28rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Footer —— */
.site-footer {
  background: #1c2229;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 22rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
}

.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact .footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* —— Floating WhatsApp —— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Tablet (keep desktop rail, tighten so LLC fits) —— */
@media (max-width: 1100px) and (min-width: 1025px) {
  .brand {
    padding: 0.75rem 1rem 0.75rem 1.15rem;
  }

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 1.05rem;
  }

  .brand__text span {
    font-size: 0.55rem;
    letter-spacing: 0.02em;
  }

  .header-rail {
    padding: 0.4rem 1rem;
    gap: 0.4rem;
  }

  .nav {
    padding: 0.3rem 0.65rem;
  }

  .nav a {
    padding: 0.55rem 0.55rem;
    font-size: 0.82rem;
  }

  .nav a.is-active::after {
    left: 0.55rem;
    right: 0.55rem;
  }
}

/* —— Mobile & tablet portrait —— */
@media (max-width: 1024px) {
  :root {
    --header-h: 76px;
  }

  .service-split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-gallery__item--wide {
    grid-row: auto;
  }

  .about-gallery__item img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    flex: 1 1 0;
    min-width: 0;
    border: none;
    padding: 0.7rem 0.65rem 0.7rem 1rem;
    gap: 0.55rem;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .brand__text {
    font-size: 1.05rem;
    min-width: 0;
    line-height: 1.2;
  }

  .brand__text span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.03em;
    white-space: normal;
    line-height: 1.35;
  }

  .header-rail {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-right: 0.5rem;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.75rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(38, 46, 57, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav a.is-active::after {
    left: 1rem;
    right: auto;
    width: 24px;
    bottom: 0.55rem;
  }

  .site-header.is-scrolled .nav {
    box-shadow: 0 12px 28px rgba(38, 46, 57, 0.12);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 3.5rem;
  }

  .hero__brand {
    font-size: clamp(1.85rem, 7.5vw, 2.75rem);
    line-height: 1.12;
  }

  .footer-brand strong {
    font-size: 1.1rem;
    line-height: 1.25;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .brand {
    padding: 0.6rem 0.4rem 0.6rem 0.85rem;
    gap: 0.45rem;
  }

  .brand__logo {
    width: 36px;
    height: 36px;
  }

  .brand__text {
    font-size: 0.95rem;
  }

  .brand__text span {
    font-size: 0.5rem;
    letter-spacing: 0.015em;
  }

  .hero__brand {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .hero__ctas .btn,
  .cta-band__actions .btn {
    flex: 1 1 auto;
  }

  .logo-marquee img {
    height: 36px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.65rem;
  }
}
