:root {
  color-scheme: dark;

  --bg: #1E291B;
  --surface: #23361F;
  --surface-alt: #23361F;
  --ink: #F0DEC5;
  --ink-soft: #D6C4A8;
  --ink-faint: rgba(240, 222, 197, 0.72);
  --line: rgba(255, 255, 255, 0.1);

  --navy: #23361F;
  --navy-deep: #1E291B;
  --amber: #F29018;
  --amber-deep: #c9640e;
  --green: #614729;
  --green-deep: #3d270f;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;

  font-size: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Georgia", "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; margin-bottom: 0.4em; }

.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.heading-with-icon img {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

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

section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 1240px;
  margin: 0 auto;
}

.section-band {
  background: var(--surface-alt);
  box-shadow: 0 0 0 100vmax var(--surface-alt);
  clip-path: inset(0 -100vmax);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber-deep);
  margin: 0 0 0.9em;
}

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Page loader ---------- */
html.is-loading { overflow: hidden; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-track {
  width: min(70vw, 360px);
  position: relative;
}

.loader-gif {
  display: block;
  width: 100%;
  height: auto;
}

.loader-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 700;
}

.loader-status {
  margin: -0.75rem 0 0;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .loader-gif {
    display: none;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(247, 246, 243, 0.72);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(30, 41, 27, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .header-phone {
  color: var(--ink);
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

.header-inner {
  position: relative;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: height 0.35s var(--ease);
}

.site-header.scrolled .header-inner {
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

/* The header bar itself is light by default and turns dark on scroll
   (see .site-header.scrolled), so the wordmark swaps to match. */
.brand-logo-dark { display: none; }
.site-header.scrolled .brand-logo-light { display: none; }
.site-header.scrolled .brand-logo-dark { display: block; }

.main-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
}

.main-nav a:hover { color: var(--amber); }
.main-nav a:hover::after { width: 100%; }

/* Inline desktop nav sits directly on the frosted (light) header bar when
   not scrolled — needs dark text there. Once scrolled (or on the mobile
   dropdown, which always has a dark panel) the default light text applies. */
@media (min-width: 901px) {
  .site-header:not(.scrolled) .main-nav a { color: var(--navy-deep); }
  .site-header:not(.scrolled) .main-nav a:hover { color: var(--amber-deep); }
}

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

.header-phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-deep);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
}

.btn-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(240, 222, 197, 0.22);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-lg { padding: 0.9rem 1.9rem; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
  max-width: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 144, 24, 0.18), transparent 35%),
    radial-gradient(circle at 82% 78%, rgba(97, 71, 41, 0.12), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 41, 27, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 27, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
  z-index: -1;
}

.hero-inner { max-width: 780px; }

.hero-sub {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-faint);
}

.scroll-cue span {
  width: 22px;
  height: 36px;
  border: 2px solid var(--ink-faint);
  border-radius: 12px;
  position: relative;
}

.scroll-cue span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--ink-faint);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.scroll-cue p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 6px; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
}

.trust-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  font-family: "Georgia", serif;
  font-size: 2.1rem;
  color: var(--ink);
}

.trust-item .stat-text {
  font-size: 1.15rem;
  line-height: 1.25;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Section heading ---------- */
.section-heading {
  max-width: 620px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading .eyebrow { display: block; }

.section-sub { font-size: 1.02rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 134, 31, 0.4);
}

.service-card:nth-child(even):hover {
  border-color: rgba(63, 141, 91, 0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease);
}

.process-step:hover {
  background: var(--surface);
}

.step-number {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  color: var(--amber);
  flex-shrink: 0;
  width: 56px;
}

.process-step p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(20,33,61,0.05) 0 10px, transparent 10px 20px),
    var(--surface-alt);
  border: 1.5px dashed var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  color: var(--ink);
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    min-height: 72px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 27, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 0;
    width: 100%;
    border-top: 1px solid transparent;
  }

  .main-nav a + a {
    border-top-color: var(--line);
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-phone,
  .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .btn {
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .hero {
    padding-top: calc(var(--header-h) + 1.5rem);
    min-height: 70vh;
  }

  .hero-inner {
    padding: 0 1rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .about,
  .contact {
    gap: 1rem;
  }

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

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

  .form-row-split {
    grid-template-columns: 1fr;
  }

  section {
    padding: clamp(2.5rem, 8vw, 4rem) 1.25rem;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0 1rem;
  }

  .brand-logo {
    height: 26px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1rem);
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .about-media,
  .gallery-item,
  .testimonial-card,
  .service-card,
  .contact-form {
    border-radius: 1rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.about-list { margin-top: 1.5rem; display: grid; gap: 0.6rem; }

.about-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--ink-soft);
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  max-width: none;
  text-align: center;
  background: linear-gradient(135deg, var(--bg), var(--surface));
  border-radius: 0;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
}

.cta-banner h2 {
  color: white;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-details a {
  color: var(--amber);
  font-weight: 700;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

.form-row { display: grid; gap: 0.4rem; }

.form-row-split {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 1.1rem;
}

label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

input, select, textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--surface-alt);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(242, 144, 24, 0.18);
}

.form-submit { margin-top: 0.25rem; }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-weight: 700;
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: white; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--navy-deep);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 800;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { background: var(--amber-deep); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

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

.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span::before { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }

  .header-phone { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  .brand-logo {
    max-width: 46vw;
    width: auto;
    height: 34px;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .form-row-split { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .trust-bar { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}
