/* ==============================
   Swings for Service — Stylesheet
   Palette: Navy / Fairway Green / Crimson / Cream
============================== */

:root {
  --navy: #0a2463;
  --navy-deep: #061539;
  --navy-soft: #1d3a8a;
  --green: #2d6a3e;
  --green-deep: #1f4d2c;
  --green-soft: #6ba87a;
  --red: #c8201d;
  --red-soft: #e63946;
  --cream: #faf6ee;
  --cream-warm: #f3ecdd;
  --paper: #fffdf8;
  --ink: #0e1a2b;
  --ink-soft: #4a5568;
  --line: #e2dccc;
  --shadow-sm: 0 2px 8px rgba(10, 36, 99, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 36, 99, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 36, 99, 0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
}

h2 em, h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--green);
}

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

/* ==============================
   Header
============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}

.site-nav a:hover { color: var(--navy); background: var(--cream-warm); }
.site-nav a.active { color: var(--navy); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}

.site-nav .nav-cta {
  background: var(--navy);
  color: var(--paper);
  padding: 10px 20px;
  margin-left: 8px;
}
.site-nav .nav-cta:hover { background: var(--navy-deep); color: var(--paper); }

/* ==============================
   Buttons
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 1px 0 var(--navy-deep), var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--paper); }

.btn-full { width: 100%; }

.text-link {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.text-link:hover { color: var(--green); }

/* ==============================
   Hero
============================== */
.hero {
  position: relative;
  padding: 100px 32px 120px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(45, 106, 62, 0.08), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(10, 36, 99, 0.06), transparent 60%),
    var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars .star {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: var(--red);
  opacity: 0.32;
}
.hero-stars .s1 { top: 12%; left: 8%; transform: rotate(-12deg); }
.hero-stars .s2 { top: 22%; right: 12%; width: 32px; height: 32px; transform: rotate(8deg); opacity: 0.26; }
.hero-stars .s3 { bottom: 18%; left: 15%; width: 18px; height: 18px; transform: rotate(20deg); }
.hero-stars .s4 { bottom: 26%; right: 8%; transform: rotate(-6deg); opacity: 0.28; }

.hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-brand {
  font-family: var(--font-display);
  margin: 8px 0 12px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  animation: rise 0.8s ease 0.05s forwards;
}

.brand-line-rule {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0.6em;
  margin-bottom: 12px;
  padding-left: 0.6em;
}

.brand-line-rule::before { content: '★ ★ '; }

.brand-word {
  display: block;
  font-weight: 900;
  font-size: clamp(64px, 12vw, 156px);
}

.brand-swings { color: var(--navy); }
.brand-service { color: var(--navy); }

.brand-for {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 76px);
  color: var(--green);
  margin: -0.05em 0;
  letter-spacing: 0;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 16px 0 32px;
  opacity: 0;
  animation: rise 0.8s ease 0.15s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--navy);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.3;
  opacity: 0;
  animation: rise 0.8s ease 0.25s forwards;
}

.hero-tagline em {
  font-style: italic;
  color: var(--green);
  font-weight: 600;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 106, 62, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45, 106, 62, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(45, 106, 62, 0.05); }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  font-size: clamp(17px, 2vw, 20px);
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  line-height: 1.5;
  opacity: 0;
  animation: rise 0.8s ease 0.55s forwards;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: rise 0.8s ease 0.7s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  animation: rise 0.8s ease 0.85s forwards;
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-num .plus, .stat-num .pct {
  color: var(--red);
  font-weight: 800;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ==============================
   Gallery Strip
============================== */
.gallery-strip {
  background: var(--cream);
  padding: 80px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.gallery-item {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(45, 106, 62, 0.05), transparent 60%);
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.gallery-item.gallery-tall {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-12px);
}

.gallery-item.gallery-tall:hover {
  transform: translateY(-16px);
}

.gallery-item.gallery-tall::before {
  background: radial-gradient(circle at 50% 0%, rgba(45, 106, 62, 0.4), transparent 70%);
}

.gallery-item.gallery-tall .gallery-label {
  color: var(--cream);
}

.gallery-label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .gallery-strip { padding: 56px 24px; }
  .gallery-inner { grid-template-columns: 1fr; gap: 20px; }
  .gallery-item.gallery-tall { transform: none; }
  .gallery-item.gallery-tall:hover { transform: translateY(-4px); }
}

/* ==============================
   Section base
============================== */
section { padding: 100px 32px; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.label-line {
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-label.light { color: var(--cream); }
.section-label.light .label-line { background: var(--cream); }

/* ==============================
   Mission
============================== */
.mission { background: var(--paper); }

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-text h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 28px;
}

.mission-text .lede {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 400;
}

.mission-cards {
  display: grid;
  gap: 16px;
}

.m-card {
  position: relative;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.m-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

.m-card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.m-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.m-card p {
  font-size: 14px;
  margin: 0;
}

/* ==============================
   Founder
============================== */
.founder {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.founder-image { position: relative; }

.image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-1deg);
}

.frame-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(10, 36, 99, 0.03) 12px, rgba(10, 36, 99, 0.03) 13px);
}

.image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--navy);
  opacity: 0.3;
  margin-bottom: 16px;
}

.image-placeholder span {
  font-size: 13px;
  font-style: italic;
}

.image-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--red);
  color: var(--paper);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
}

.founder-text h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 8px;
}

.founder-role {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 15px;
}

/* ==============================
   Drives
============================== */
.drives {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.drives::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 106, 62, 0.3), transparent 70%);
  pointer-events: none;
}

.drives h2, .drives h3 { color: var(--cream); }
.drives p { color: rgba(250, 246, 238, 0.75); }
.drives em { color: var(--green-soft); }

.drives-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 56px;
  max-width: 700px;
}

.drives-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  max-width: 980px;
}

.drive-card {
  padding: 32px;
  background: rgba(255, 253, 248, 0.04);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.drive-card.featured {
  background: var(--cream);
  border-color: var(--cream);
}

.drive-card.featured h3,
.drive-card.featured .drive-meta { color: var(--navy); }
.drive-card.featured p { color: var(--ink-soft); }

.drive-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--red);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 20px;
}

.drive-status.quiet {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 253, 248, 0.3);
}

.drive-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.drive-meta {
  font-size: 13px;
  color: var(--green-soft);
  margin-bottom: 16px;
  font-weight: 500;
}

.drive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.drive-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
  font-size: 14px;
  color: var(--ink-soft);
}

.drive-list li:last-child { border-bottom: none; }

.drive-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.drive-card .btn { margin-top: auto; }

.dropoff-block {
  margin-bottom: 16px;
  padding: 18px 20px;
  background: rgba(45, 106, 62, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
}

.dropoff-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.dropoff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.dropoff-list li {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(10, 36, 99, 0.12);
  font-size: 13px;
  line-height: 1.4;
}
.dropoff-list li:last-child { border-bottom: none; }

.dropoff-list strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.dropoff-list span {
  color: var(--ink-soft);
  font-size: 12px;
}

.drive-note {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(10, 36, 99, 0.04);
  border-left: 2px solid var(--red);
  border-radius: 4px;
}

/* ==============================
   Contact
============================== */
.contact { background: var(--paper); }

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

.contact-text h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  margin-bottom: 24px;
}

.contact-direct {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.contact-direct a {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid var(--green);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.contact-direct a:hover { color: var(--green); }

.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.form-success {
  padding: 14px;
  background: var(--green);
  color: var(--paper);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  display: none;
}
.form-success.show { display: block; }

/* ==============================
   Footer
============================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 64px 32px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
}

.footer-brand .brand-name {
  color: var(--cream);
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(250, 246, 238, 0.65);
  font-size: 14px;
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-links h4 {
  color: var(--red-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: rgba(250, 246, 238, 0.75);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 246, 238, 0.5);
}

.footer-flag {
  color: var(--red-soft);
  letter-spacing: 0.3em;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 900px) {
  .site-nav { display: none; }
  section { padding: 64px 24px; }
  .hero { padding: 64px 24px 80px; }
  .header-inner { padding: 14px 20px; }

  .mission-grid,
  .founder-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .drives-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 540px) {
  .brand-sub { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .brand-line-rule { font-size: 14px; letter-spacing: 0.4em; }
}
