@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,900;1,9..144,500&family=Instrument+Sans:wght@400;500;600&display=swap");

/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  --forest:       #2F3E46;
  --forest-mid:   #354F52;
  --sage:         #52796F;
  --mint:         #8AA98C;
  --cream:        #F5F7F6;
  --cream-dark:   #E2E8E6;
  --amber:        #CAD2C5;
  --amber-light:  #D8DDD9;
  --text:         #2F3E46;
  --text-mid:     #52796F;
  --text-light:   #8AA98C;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;

  --section-pad: clamp(4rem, 8vw, 7rem);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  --shadow-sm:   0 2px 8px  rgba(26, 43, 20, 0.06);
  --shadow-md:   0 6px 24px rgba(26, 43, 20, 0.10);
  --shadow-lg:   0 16px 48px rgba(26, 43, 20, 0.15);
  --shadow-card: 0 4px 16px rgba(26, 43, 20, 0.08);

  --t-fast:   0.2s ease;
  --t-mid:    0.35s ease;
  --t-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, button { font-family: var(--font-body); font-size: inherit; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem,   4vw,   3rem);   }
h3 { font-size: clamp(1.2rem, 2vw,   1.4rem); }

p { line-height: 1.75; color: var(--text-mid); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover    { transform: translateY(-2px); }
.btn:active   { transform: translateY(0);    }

.btn-primary {
  background: var(--amber);
  color: var(--forest);
  box-shadow: 0 4px 16px rgba(202,210,197,0.35);
}
.btn-primary:hover { background: var(--amber-light); box-shadow: 0 8px 24px rgba(202,210,197,0.5); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,239,0.35);
}
.btn-outline:hover { background: rgba(250,246,239,0.08); border-color: rgba(250,246,239,0.7); }

.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--forest-mid); box-shadow: var(--shadow-md); }

.btn-white { background: var(--amber); color: var(--forest); font-weight: 700; }
.btn-white:hover { background: var(--amber-light); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-arrow svg { transition: transform var(--t-fast); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ===========================
   NAVIGATION
   =========================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--t-mid), box-shadow var(--t-mid), padding var(--t-mid);
}
.site-nav.scrolled {
  background: rgba(250,246,239,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(26,43,20,0.08);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  transition: opacity var(--t-fast);
}
.site-nav.scrolled .nav-logo { color: var(--text); }
.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links > li > a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250,246,239,0.9);
  transition: color var(--t-fast);
  position: relative;
}
.site-nav.scrolled .nav-links > li > a { color: var(--text); }

.nav-links > li > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--t-fast);
}
.nav-links > li > a:not(.btn):hover::after { width: 100%; }

.nav-links .btn { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.nav-links a.btn-primary,
.site-nav.scrolled .nav-links a.btn-primary { color: var(--forest); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.site-nav.scrolled .nav-toggle span { background: var(--forest); }

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

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 99;
  padding: 5.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250,246,239,0.1);
  transition: color var(--t-fast);
}
.nav-drawer a:hover { color: var(--amber-light); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(78,117,66,0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 18%, rgba(45,82,36,0.4)  0%, transparent 50%);
  pointer-events: none;
}

.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero-circle.c1 { width: 130px; height: 130px; top:  5%; left:  2%; border: 1.5px solid rgba(138,169,140,0.22); }
.hero-circle.c2 { width:  48px; height:  48px; top: 13%; right: 6%; border: 1.5px solid rgba(202,210,197,0.28); }
.hero-circle.c3 { width:  26px; height:  26px; top: 44%; left:  4%; background: rgba(138,169,140,0.14); }
.hero-circle.c4 { width:  85px; height:  85px; top: 38%; right: 2%; border: 1px solid rgba(138,169,140,0.18); }
.hero-circle.c5 { width:  72px; height:  72px; bottom: 10%; left:  5%; border: 1.5px solid rgba(202,210,197,0.22); }
.hero-circle.c6 { width:  38px; height:  38px; bottom: 16%; right: 5%; background: rgba(202,210,197,0.08); border: 1px solid rgba(202,210,197,0.2); }
.hero-circle.c7 { width:  18px; height:  18px; top: 68%; left: 28%; background: rgba(138,169,140,0.18); }
.hero-circle.c8 { width:  55px; height:  55px; top: 20%; left: 16%; border: 1px solid rgba(202,210,197,0.14); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
  max-width: 820px;
}

.hero-logo {
  width: clamp(140px, 26vw, 240px);
  margin: 0 auto 2.5rem;
  animation: heroLogoIn 1s cubic-bezier(0.34,1.2,0.64,1) both;
}

.hero-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--cream);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: heroFadeUp 0.9s 0.2s ease both;
}
.hero-heading em { font-style: italic; color: var(--amber-light); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(250,246,239,0.72);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  animation: heroFadeUp 0.9s 0.35s ease both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.5s ease both;
}

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar { background: var(--forest-mid); padding: 0.9rem 0; }

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3.5rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--amber-light); flex-shrink: 0; }

.trust-divider {
  width: 1px; height: 18px;
  background: rgba(250,246,239,0.2);
}

/* ===========================
   FEATURES
   =========================== */
.features-section { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 500px; margin: 0 auto; font-size: 1rem; }

.wavy-line { margin: 0.6rem auto 1rem; display: block; }

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

.feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--mint));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(78,117,66,0.1); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
  width: 50px; height: 50px;
  background: var(--forest);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p  { font-size: 0.93rem; }

/* ===========================
   REVIEWS
   =========================== */
.reviews-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.reviews-section .section-header h2 { color: var(--cream); }
.reviews-section .eyebrow { color: var(--mint); }
.reviews-section .eyebrow::before { background: var(--mint); }
.reviews-section .section-header p { color: rgba(250,246,239,0.65); }

.elfsight-wrap { margin-top: 2rem; }

.reviews-bg-mountain {
  position: absolute;
  right: -60px; bottom: -30px;
  opacity: 0.04;
  pointer-events: none;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  cursor: grab;
  margin-top: 2.5rem;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.grabbing { cursor: grabbing; }
.reviews-track.single { justify-content: center; overflow-x: visible; scroll-snap-type: none; cursor: default; }

.review-card {
  flex: 0 0 clamp(270px, 75vw, 360px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(250,246,239,0.1);
  border-radius: var(--r-lg);
  padding: 1.875rem;
  scroll-snap-align: start;
  backdrop-filter: blur(6px);
  transition: background var(--t-fast);
}
.review-card:hover { background: rgba(255,255,255,0.09); }

.review-quote { color: var(--sage); opacity: 0.85; margin-bottom: 1rem; }

.review-stars {
  display: flex; gap: 3px;
  color: var(--amber);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.review-text {
  color: rgba(250,246,239,0.82);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author { display: flex; align-items: center; gap: 0.75rem; }

.review-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.review-name     { font-weight: 600; color: var(--cream); font-size: 0.88rem; }
.review-location { font-size: 0.78rem; color: rgba(250,246,239,0.45); margin-top: 0.1rem; }

.review-nav {
  display: flex; gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.review-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,246,239,0.22);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.review-nav-btn:hover { background: rgba(250,246,239,0.1); border-color: rgba(250,246,239,0.5); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--forest-mid);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 500px;
}
.cta-banner h2 em {
  font-style: italic;
  text-decoration: underline wavy rgba(202,210,197,0.5);
  text-underline-offset: 6px;
}

/* ===========================
   CONTACT
   =========================== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2    { margin: 0.5rem 0 0.75rem; }
.contact-info > p   { margin-bottom: 2rem; font-size: 1rem; }

.contact-social { display: flex; gap: 0.75rem; margin-top: 2rem; }

.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all var(--t-fast);
}
.social-link:hover { background: var(--sage); transform: translateY(-2px); }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.2rem; margin-bottom: 1.75rem; }

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

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--text);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(78,117,66,0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: var(--r-full);
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.form-submit:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--forest);
  padding: 2.75rem 0 1.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250,246,239,0.1);
}

.footer-logo img { height: 50px; width: auto; }

.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(250,246,239,0.6); font-size: 0.875rem; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--cream); }

.footer-social { display: flex; gap: 0.65rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(250,246,239,0.38); }

/* ===========================
   PAGE HERO (About page)
   =========================== */
.page-hero {
  background: var(--forest);
  padding: 10rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(78,117,66,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(45,82,36,0.35) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--mint); }
.page-hero .eyebrow::before { background: var(--mint); }
.page-hero h1 { color: var(--cream); margin: 0.5rem 0 1rem; }
.page-hero h1 em { color: var(--amber-light); font-style: italic; }
.page-hero p { color: rgba(250,246,239,0.7); max-width: 480px; font-size: 1.05rem; }
.page-hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; }

/* ===========================
   ABOUT STORY
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-text .eyebrow { display: inline-flex; }
.about-text h2 { margin: 0.5rem 0 1.25rem; }
.about-text p  { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 1rem; }

.values-stack { display: flex; flex-direction: column; gap: 1.1rem; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(78,117,66,0.07);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.value-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--forest);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint);
  font-size: 1rem;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.value-item p { font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-in.visible    { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.82) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; text-align: center; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 500px) {
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 0.75rem 1.5rem; }
}
