/* ============================================================
   Longhorn Bros Wash Co. — Shared Stylesheet
   ============================================================ */

:root {
  --cream:      #f5f0e8;
  --cream-dark: #ede6d6;
  --orange:     #bf5700;
  --blue:       #89b4d4;
  --black:      #1a1008;
  --border:     #ddd0b8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

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

/* SCROLL ANIMATIONS ----------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* NAV ------------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); font-weight: 700; }

.nav-phone-mobile {
  display: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.nav-phone-mobile a {
  font-size: 0.85rem;
  font-weight: 700;
  color: #8a7a60;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 12px;
  color: #8a7a60;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--black);
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--black);
  font-family: inherit;
}

/* MOBILE STICKY CALL BAR ------------------------------------ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--orange);
  color: #fff;
  text-align: center;
  line-height: 52px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  border-radius: 0;
}

/* BUTTONS ---------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  line-height: 1;
  font-family: inherit;
  letter-spacing: 0.1px;
}

.btn-sm  { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg  { padding: 16px 40px; font-size: 1rem; }

.btn-primary       { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: #a34800; border-color: #a34800; }

.btn-outline       { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--cream); }

.btn-outline-orange       { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

.btn-white       { background: #fff; color: var(--orange); border-color: #fff; }
.btn-white:hover { background: var(--cream); border-color: var(--cream); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

/* TYPOGRAPHY ------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900; line-height: 1.0;  letter-spacing: -2.5px; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.2px; }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.tag-pill-white {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
}

/* LAYOUT ----------------------------------------------------- */
.sec    { padding: 88px 40px; max-width: 1120px; margin: 0 auto; }
.sec-sm { padding: 60px 40px; max-width: 1120px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;        gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* HOMEPAGE HERO --------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-slash {
  position: absolute;
  top: -100%;
  right: -8%;
  width: 52%;
  height: 300%;
  background: var(--orange);
  transform: rotate(10deg);
  z-index: 1;
}

.hero-slash-2 {
  position: absolute;
  top: -80%;
  right: -4%;
  width: 48%;
  height: 280%;
  background: #cf6800;
  opacity: 0.32;
  transform: rotate(10deg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 40px;
  max-width: 640px;
}

.hero h1 { margin-bottom: 18px; }
.hero p  { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.8; max-width: 480px; }

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(26,16,8,0.15);
}

.hero-stat-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.7;
}

.hero-stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
  opacity: 1;
  margin-bottom: 1px;
}

/* INNER PAGE HERO (orange bg) ------------------------------- */
.page-hero { background: var(--orange); padding: 80px 40px; }
.page-hero-inner { max-width: 1120px; margin: 0 auto; }

.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin-top: 12px; }
.page-hero .eyebrow { color: rgba(255,255,255,0.6); }

/* TICKER ---------------------------------------------------- */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-inner span {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 4px;
}

.ticker-inner span::after {
  content: ' · ';
  padding: 0 18px;
  opacity: 0.5;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* TRUST BADGES ---------------------------------------------- */
.trust-section {
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  padding: 32px 40px;
}

.trust-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

.trust-badge svg { color: var(--blue); flex-shrink: 0; }

/* BEFORE/AFTER SLIDER --------------------------------------- */
.ba-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  touch-action: none;
  margin-bottom: 8px;
}

.ba-base-img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.ba-before-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

#ba-before-img {
  display: block;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 10;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  cursor: col-resize;
  flex-shrink: 0;
}

.ba-handle svg { color: var(--orange); }

.ba-label {
  position: absolute;
  bottom: 14px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
}

.ba-label-before { left: 14px; background: rgba(0,0,0,0.5); color: #fff; }
.ba-label-after  { right: 14px; background: rgba(255,255,255,0.9); color: var(--orange); }

/* BEFORE/AFTER GRID ----------------------------------------- */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.ba-panel { background: var(--cream-dark); }
.ba-panel:first-child { border-right: 1.5px solid var(--border); }

.ba-img-placeholder {
  height: 260px;
  background: #d4cbb5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8e79;
  font-size: 0.82rem;
  font-style: italic;
}

.ba-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.ba-caption {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.ba-chip {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-chip-before { background: var(--black); color: var(--cream); }
.ba-chip-after  { background: var(--orange); color: #fff; }
.ba-service { font-size: 0.8rem; font-weight: 600; opacity: 0.65; }

/* GALLERY --------------------------------------------------- */
.gallery-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
}

.gallery-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.gallery-caption {
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.7;
  border-top: 1px solid var(--border);
}

.gallery-placeholder {
  height: 280px;
  background: #d4cbb5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8e79;
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

/* GALLERY BEFORE/AFTER PAIR GRID ---------------------------- */
.gallery-ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.gallery-ba-row .gallery-card {
  border: none;
  border-radius: 0;
}

.gallery-ba-row .gallery-card:first-child {
  border-right: 1.5px solid var(--border);
}

/* PRICE ROWS ------------------------------------------------ */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.price-row:last-child { border-bottom: none; }
.price-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.price-desc { font-size: 0.875rem; opacity: 0.7; line-height: 1.55; }

.price-tag {
  font-weight: 800;
  color: var(--orange);
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* CARDS ----------------------------------------------------- */
.card {
  background: var(--cream-dark);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-outlined {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-outlined:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.card-black-border {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-black-border:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.card-orange {
  background: var(--orange);
  border-radius: 14px;
  padding: 44px;
  color: #fff;
}

.card-blue {
  background: #e8f0f8;
  border: 1.5px solid var(--blue);
  border-radius: 14px;
  padding: 32px;
}

.card-icon { font-size: 1.5rem; margin-bottom: 14px; }

/* SERVICE CARDS --------------------------------------------- */
.service-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.service-price {
  font-weight: 800;
  color: var(--orange);
  font-size: 1.1rem;
  margin: 8px 0 6px;
}

.service-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--black);
  opacity: 0.6;
  margin-top: auto;
  align-self: flex-start;
}

/* PROCESS STEPS --------------------------------------------- */
.process-step {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* REVIEW CARDS ---------------------------------------------- */
.review-card {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.review-stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; }
.review-text  { font-size: 0.9rem; line-height: 1.7; opacity: 0.82; flex: 1; }
.review-author { font-size: 0.78rem; font-weight: 700; opacity: 0.5; }

/* AREA PILLS ------------------------------------------------ */
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.area-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--black);
  background: var(--cream);
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

/* CALLOUTS -------------------------------------------------- */
.callout-blue {
  background: #e8f0f8;
  border: 1.5px solid var(--blue);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.callout-blue svg { flex-shrink: 0; margin-top: 3px; }

.callout-orange {
  background: var(--orange);
  border-radius: 14px;
  padding: 28px 32px;
  color: #fff;
}

.callout-note {
  background: #e8f0f8;
  border: 1.5px solid var(--blue);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--black);
}

/* ECO STRIP ------------------------------------------------- */
.eco-strip {
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.eco-strip svg { color: var(--blue); flex-shrink: 0; }

/* CTA STRIP ------------------------------------------------- */
.cta-strip {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  border-top: 0.5px solid var(--border);
  padding: 88px 40px;
  text-align: center;
}

.cta-content { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 14px; }
.cta-strip p  { margin-bottom: 32px; opacity: 0.72; max-width: 480px; margin-left: auto; margin-right: auto; }

.bubble-pill {
  position: absolute;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.15;
  pointer-events: none;
}

/* FOOTER ---------------------------------------------------- */
.footer {
  background: var(--cream-dark);
  border-top: 0.5px solid var(--border);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: none;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-right { font-size: 0.85rem; font-weight: 600; }

/* FAQ ------------------------------------------------------- */
.faq-list { max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  gap: 16px;
  transition: color 0.15s;
}

.faq-btn:hover { color: var(--orange); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 400;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body p { padding-bottom: 22px; opacity: 0.78; line-height: 1.75; }

.faq-section-head {
  padding-top: 48px;
  padding-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
}

/* FORM ------------------------------------------------------ */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(191,87,0,0.15);
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* CONTACT INFO CARDS ---------------------------------------- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.info-icon    { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-label   { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.info-value   { font-weight: 600; font-size: 0.95rem; }

/* STEPS (contact page) --------------------------------------- */
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.step-row:last-child { border-bottom: none; }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* OWNER CARDS ----------------------------------------------- */
.owner-card {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 14px;
  padding: 36px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.owner-card:hover {
  transform: scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(191,87,0,0.12);
}

.owner-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border: 2px solid var(--border);
}

.owner-title {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

/* VALUE ICON (about page) ----------------------------------- */
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f0f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.value-icon svg { color: var(--blue); }

/* CHIPS AND PILLS ------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--cream);
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.pill-blue {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  background: #e8f0f8;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* HIRING ROLE CARDS ----------------------------------------- */
.role-card {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 14px;
  padding: 36px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.role-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(191,87,0,0.12);
}

.role-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* BG UTILITY ------------------------------------------------ */
.bg-cream      { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }

/* UTILITIES ------------------------------------------------- */
.mt-8   { margin-top: 8px; }
.mt-12  { margin-top: 12px; }
.mt-16  { margin-top: 16px; }
.mt-20  { margin-top: 20px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-12  { margin-bottom: 12px; }
.mb-16  { margin-bottom: 16px; }
.mb-20  { margin-bottom: 20px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-40  { margin-bottom: 40px; }
.mb-48  { margin-bottom: 48px; }
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.text-white   { color: #fff; }

.pullquote {
  border-left: 3px solid var(--orange);
  padding: 12px 0 12px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  margin: 24px 0;
  line-height: 1.6;
  max-width: 640px;
}

.divider {
  text-align: center;
  padding: 32px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.5;
  letter-spacing: 1px;
}

/* SHARED SCRIPT HELPER -------------------------------------- */
.btn-full { width: 100%; display: block; text-align: center; }

/* RESPONSIVE ------------------------------------------------ */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 52px; }

  .mobile-call-bar { display: block; }

  .nav { padding: 0 20px; height: 64px; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    z-index: 199;
  }

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

  .nav-phone-mobile { display: block; }

  .hero-inner { padding: 80px 20px 100px; }
  .hero-slash  { right: -30%; width: 75%; }
  .hero-slash-2 { right: -20%; width: 70%; }

  .sec, .sec-sm { padding: 60px 20px; }
  .page-hero { padding: 60px 20px; }
  .trust-section { padding: 28px 20px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .ba-pair { grid-template-columns: 1fr; }
  .ba-panel:first-child { border-right: none; border-bottom: 1.5px solid var(--border); }

  .gallery-ba-row { grid-template-columns: 1fr; }
  .gallery-ba-row .gallery-card:first-child { border-right: none; border-bottom: 1.5px solid var(--border); }

  .ba-base-img { height: 300px; }

  .footer { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
  .footer-right { text-align: center; }

  .cta-strip { padding: 60px 20px; }
  .eco-strip { padding: 24px 20px; }

  h1 { letter-spacing: -1.5px; }
  h2 { letter-spacing: -1px; }

  .hero-stats { gap: 20px; }
  .chip-row { gap: 8px; }

  .card-orange { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .trust-row  { flex-direction: column; align-items: flex-start; }
  .trust-badge { width: 100%; }
}
