/* ================================================================
   GUTTER BROTHERS NV — GLOBAL STYLESHEET
   Built by YelloPost · AI-Forward Ad Agency · yellopost.com
   ================================================================
   This file powers every page. Don't edit individual page styles
   unless absolutely necessary — change it here instead.
   ================================================================ */

/* -------- BRAND COLORS (pulled from live site) -------- */
:root {
  --navy:         #13254a;
  --navy-deep:    #0c1a38;
  --navy-soft:    #1a2d52;
  --navy-hover:   #1e3464;

  --orange:       #f77430;
  --orange-bright:#ff6b1a;
  --orange-deep:  #d95a1a;
  --orange-soft:  #fff7ef;

  --ink:          #111827;
  --body:         #333d4f;
  --muted:        #667085;
  --line:         #e5e7eb;
  --line-soft:    #f2f4f7;
  --bg:           #ffffff;
  --bg-soft:      #f6f7f9;
  --bg-navy:      #13254a;

  --green-ok:     #22c55e;
  --star:         #ffb627;

  /* Typography scale */
  --font-display: 'Rubik', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-cond:    'Barlow Condensed', 'Oswald', sans-serif;
  --font-mono:    'Roboto Mono', ui-monospace, monospace;

  /* Spacing / layout */
  --max-w:        1280px;
  --pad-x:        clamp(20px, 4vw, 48px);
  --radius:       0px;  /* keeping industrial / squared */

  /* Motion */
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --t:            .25s;
}

/* -------- RESET -------- */
*, *::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);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* -------- TYPOGRAPHY BASE -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: 18px; }
p  { font-size: 16px; line-height: 1.65; color: var(--body); }

.o     { color: var(--orange); }  /* orange accent for text */
.outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  font-style: italic;
  font-weight: 900;
}

/* -------- CONTAINER -------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* =================================================================
   TOP UTILITY BAR — slim single-line strip
   ================================================================= */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-items { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.topbar-item  { display: flex; align-items: center; gap: 8px; }
.topbar-ic {
  width: 26px; height: 26px;
  border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--t);
}
.topbar-ic:hover { background: var(--orange); color: #fff; }
.topbar-ic svg { width: 13px; height: 13px; }
.topbar-tx .lbl { display: none; }
.topbar-tx .val {
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
}
.topbar-tx .val a { color: var(--orange); }
.topbar-tx .val a:hover { color: var(--orange-deep); }
.topbar-social { display: flex; gap: 8px; align-items: center; }
.topbar-social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.topbar-social a:hover { background: var(--orange); }
.topbar-social svg { width: 12px; height: 12px; }

/* =================================================================
   MAIN NAVIGATION (logo left, menu center, CTA right — standard pro)
   Constrained to max-width so elements don't float to screen edges
   ================================================================= */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(19,37,74,0.04);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-left {
  display: flex;
  gap: 24px;
  justify-self: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-left a {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--t);
  position: relative;
  padding: 6px 0;
}
.nav-left a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.nav-left a:hover::after,
.nav-left a.on::after { transform: scaleX(1); }
.nav-left a.on,
.nav-left a:hover { color: var(--orange); }

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  justify-self: end;
}
.nav-phone {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.5px;
  transition: var(--t);
}
.nav-phone:hover { color: var(--orange); }
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247,116,48,0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247,116,48,0.35);
}
.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost-dark:hover {
  background: var(--navy);
  color: #fff;
}
.btn-ghost-light {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost-light:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-lg { padding: 22px 40px; font-size: 17px; }
.btn-sm { padding: 12px 20px; font-size: 12px; }
.btn svg { width: 18px; height: 18px; }

/* =================================================================
   SECTIONS / LAYOUT HELPERS
   ================================================================= */
.section { padding: clamp(60px, 8vw, 100px) var(--pad-x); }
.section-sm { padding: clamp(40px, 5vw, 64px) var(--pad-x); }
.section-dark { background: var(--navy); color: #fff; }
.section-soft { background: var(--bg-soft); }

.section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-head.center { text-align: center; }
.section-head.split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.kicker {
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.section-dark .kicker { color: var(--orange); }
.underline {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 20px 0 0;
}
.section-head.center .underline { margin-left: auto; margin-right: auto; }

/* =================================================================
   FOOTER — Professional 4-column layout
   ================================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px var(--pad-x) 32px;
}

/* Top CTA strip inside footer */
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer-top-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-top-brand img { height: 64px; width: auto; }
.footer-top-brand .tx h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.footer-top-brand .tx p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}
.footer-top-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-top-cta .phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 12px 20px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--t);
}
.footer-top-cta .phone:hover { border-color: var(--orange); }
.footer-top-cta .phone svg { width: 18px; height: 18px; color: var(--orange); }
.footer-top-cta .phone .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.footer-top-cta .phone .lbl {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: -2px;
}
.footer-top-cta .quote-btn {
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-top-cta .quote-btn:hover { background: var(--orange-deep); transform: translateY(-2px); }

/* Main columns grid */
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.footer-col p,
.footer-col li {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover {
  color: var(--orange);
  padding-left: 6px;
}
.footer-col ul a::before {
  content: '→';
  color: var(--orange);
  opacity: 0;
  transition: var(--t);
  font-size: 12px;
}
.footer-col ul a:hover::before {
  opacity: 1;
}

/* About col (first one, wider) */
.footer-about p {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
}
.footer-about-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-about-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.footer-about-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.footer-about-social svg { width: 16px; height: 16px; }

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(247,116,48,0.1);
  border: 1px solid rgba(247,116,48,0.3);
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-weight: 500;
}
.footer-license svg { width: 14px; height: 14px; }

/* Contact col */
.footer-contact-list { list-style: none !important; }
.footer-contact-list li {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px !important;
}
.footer-contact-list li svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list li a,
.footer-contact-list li .text {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.4;
}
.footer-contact-list li a:hover { color: var(--orange); }
.footer-contact-list li .lbl {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Review cards in footer (compact) */
.footer-reviews-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-review-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--t);
  text-decoration: none;
}
.footer-review-compact:hover {
  background: rgba(247,116,48,0.1);
  border-color: var(--orange);
  transform: translateX(4px);
}
.footer-review-compact .stars {
  color: var(--star);
  font-size: 13px;
  letter-spacing: 1.5px;
}
.footer-review-compact .tx {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.footer-review-compact .tx small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  font-size: 10px;
  margin-top: 1px;
  letter-spacing: 0.5px;
}

/* Footer bottom */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom-links a:hover { color: var(--orange); }
.footer-yellopost {
  text-align: right;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1px;
}
.footer-yellopost a { color: var(--orange); font-weight: 500; }

/* =================================================================
   STICKY CTA BUBBLE (bottom right — like current site)
   ================================================================= */
/* =================================================================
   RAINEY — AI Chatbot (floating bottom-right)
   Replaces the simple phone bubble with a full Claude-powered chat
   ================================================================= */
.rainey {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 95;
  font-family: var(--font-body);
}

/* Collapsed launcher button */
.rainey-launcher {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(247,116,48,0.45);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: var(--t);
  animation: raineyIn 0.5s var(--ease) 0.8s both;
}
@keyframes raineyIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.rainey-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(247,116,48,0.55);
}
.rainey-launcher-avatar {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.rainey-launcher-avatar svg {
  width: 22px; height: 22px;
  color: var(--orange);
}
.rainey-launcher-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: #22c55e;
  border: 2px solid var(--orange);
  border-radius: 50%;
}
.rainey-launcher-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.rainey-launcher-text .name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.rainey-launcher-text .sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rainey-launcher.is-open { display: none; }

/* Chat panel */
.rainey-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 580px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(19,37,74,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.rainey-panel.is-open {
  display: flex;
  animation: raineyPanelIn 0.3s var(--ease);
}
@keyframes raineyPanelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Panel header */
.rainey-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 18px 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  border-bottom: 3px solid var(--orange);
}
.rainey-head-avatar {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}
.rainey-head-avatar svg {
  width: 26px; height: 26px;
  color: #fff;
}
.rainey-head-avatar::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border: 3px solid var(--navy);
  border-radius: 50%;
}
.rainey-head-info {
  flex: 1;
  min-width: 0;
}
.rainey-head-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.2px;
}
.rainey-head-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rainey-head-sub::before {
  content: '';
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}
.rainey-close {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
}
.rainey-close:hover { background: rgba(255,255,255,0.2); }
.rainey-close svg { width: 16px; height: 16px; }

/* Messages area */
.rainey-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 8px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rainey-messages::-webkit-scrollbar { width: 6px; }
.rainey-messages::-webkit-scrollbar-thumb {
  background: rgba(19,37,74,0.2);
  border-radius: 3px;
}

.rainey-msg {
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
  word-wrap: break-word;
}
.rainey-msg.bot {
  background: #fff;
  color: var(--ink);
  border-radius: 14px 14px 14px 2px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-left: 3px solid var(--orange);
}
.rainey-msg.user {
  background: var(--navy);
  color: #fff;
  border-radius: 14px 14px 2px 14px;
  align-self: flex-end;
}
.rainey-msg b { color: inherit; font-weight: 700; }
.rainey-msg a { color: var(--orange); text-decoration: underline; }
.rainey-msg.user a { color: #ffa876; }

/* Typing indicator */
.rainey-msg.rainey-typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px;
  width: auto;
  max-width: 60px;
}
.rainey-typing .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: raineyTyping 1.4s infinite;
}
.rainey-typing .dot:nth-child(2) { animation-delay: 0.2s; }
.rainey-typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes raineyTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Quick reply chips */
.rainey-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 16px 10px;
}
.rainey-chip {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--navy);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font-body);
}
.rainey-chip:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

/* Input bar */
.rainey-input-bar {
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
}
.rainey-input-bar input {
  flex: 1;
  border: 1.5px solid var(--line);
  background: #f9fafb;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  border-radius: 999px;
  transition: var(--t);
  outline: none;
}
.rainey-input-bar input:focus {
  border-color: var(--orange);
  background: #fff;
}
.rainey-input-bar input:disabled { opacity: 0.5; }
.rainey-send {
  background: var(--orange);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
}
.rainey-send:hover:not(:disabled) { transform: scale(1.05); }
.rainey-send:disabled { opacity: 0.4; cursor: not-allowed; }
.rainey-send svg { width: 18px; height: 18px; }
.rainey-foot {
  padding: 0 14px 10px;
  background: #fff;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 500px) {
  .rainey { bottom: 16px; right: 16px; left: 16px; }
  .rainey-panel {
    width: 100%;
    height: calc(100vh - 100px);
    border-radius: 12px;
  }
  .rainey-launcher { padding: 12px 16px 12px 12px; }
  .rainey-launcher-text .sub { display: none; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-top-brand { justify-content: center; }
  .footer-top-cta { justify-content: center; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-yellopost { text-align: center; }
  .nav-left { display: none; }
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav-toggle { display: flex; }
  .section-head.split { grid-template-columns: 1fr; }
  .topbar-items { gap: 20px; }
  .topbar-tx .lbl { display: none; }
}
@media (max-width: 640px) {
  .nav-phone { display: none; }
  .topbar { display: none; }
  .sticky-bubble { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =================================================================
   UTILITIES
   ================================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s var(--ease) forwards;
}
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.25s; }
.fade-in-3 { animation-delay: 0.4s; }
.fade-in-4 { animation-delay: 0.55s; }
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Footer logo */
.footer-about-logo {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

/* ================================================================
   RAINEY FOOTER — attribution link styling
   ================================================================ */
.rainey-foot a { color: var(--orange); text-decoration: none; font-weight: 700; }
.rainey-foot a:hover { text-decoration: underline; }

/* ================================================================
   WIDGET SHIFT — bumps widgets above cookie banner when visible
   ================================================================ */
.rainey    { transition: bottom .35s var(--ease); }
#gb-ada-root { transition: bottom .35s var(--ease); }
body.gb-cookie-visible .rainey    { bottom: 82px; }
body.gb-cookie-visible #gb-ada-root { bottom: 82px; }
