/* ============================================================
   EAST COAST SUPPLY GROUP — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E45;
  --off-white:  #F7F5F1;
  --white:      #FFFFFF;
  --cream:      #EDE8DF;
  --charcoal:   #2C3E50;
  --slate:      #5A6A7A;
  --gold:       #B5892A;
  --gold-light: #C9A043;
  --border:     #E2DDD6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:   0.72rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  clamp(2.5rem, 4vw, 3.5rem);
  --text-hero: clamp(3rem, 6vw, 5rem);

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;

  --max-width:   1200px;
  --section-pad: clamp(80px, 10vw, 120px);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  padding: 8px 16px; background: var(--gold); color: #fff;
  font-size: var(--text-sm); border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--dark    { background: var(--navy);     color: #fff; }
.section--mid     { background: var(--navy-mid); color: #fff; }
.section--white   { background: var(--white); }
.section--cream   { background: var(--cream); }

/* ============================================================
   4. TYPOGRAPHY UTILITIES
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: var(--space-md);
}
.section-heading--white { color: #fff; }
.section-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
}
.section-sub--white { color: rgba(255,255,255,0.68); }
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header .section-sub { margin: 0 auto; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold); color: #fff; border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  border-color: #fff; background: rgba(255,255,255,0.08);
}
.btn--outline {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy); color: #fff; transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold); color: #fff;
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   6. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; gap: var(--space-lg);
  max-width: var(--max-width); margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 60px);
  transition: padding 0.3s ease;
}
.site-nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo-l1 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.08em; color: #fff;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: var(--text-sm); font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }

.nav-cta { margin-left: 8px; }

.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; padding: 6px; margin-left: auto;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-md);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn {
  margin-top: var(--space-sm);
  font-size: var(--text-sm); padding: 14px 40px;
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.50) 50%,
    rgba(13,27,42,0.25) 100%);
}
.hero-content {
  position: absolute;
  bottom: clamp(60px, 8vh, 100px);
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 60px);
}
.hero-inner { max-width: 680px; }
.hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) 0.55s forwards;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.8s forwards;
}
.hero-actions {
  display: flex; gap: var(--space-sm); flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; right: clamp(20px, 4vw, 60px);
  z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: fadeIn 0.7s ease 1.5s forwards;
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: rgba(181,137,42,0.6);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(181,137,42,0.2);
  border-bottom: 1px solid rgba(181,137,42,0.2);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 0; max-width: var(--max-width);
  margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 24px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider {
  width: 1px; height: 24px;
  background: rgba(181,137,42,0.25); flex-shrink: 0;
}

/* ============================================================
   10. ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-text .section-sub { margin-bottom: var(--space-lg); }
.about-text p + p { margin-top: var(--space-md); }
.about-visual { position: relative; }
.about-img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.about-stats {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex; gap: 0;
}
.about-stat {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 0 16px;
}
.about-stat + .about-stat {
  border-left: 1px solid rgba(255,255,255,0.12);
}
.about-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about-stat-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-align: center;
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 380px; }
}

/* ============================================================
   11. PRODUCT LINES OVERVIEW
   ============================================================ */
.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13,27,42,0.12);
}
.product-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.product-card:hover::after { transform: scaleX(1); }
.product-card-img {
  width: 100%; height: 240px;
  object-fit: cover; display: block;
}
.product-card-body {
  padding: 24px;
}
.product-card-label {
  font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.product-card-desc {
  font-size: var(--text-sm); font-weight: 300;
  color: var(--slate); line-height: 1.65;
  margin-bottom: 16px;
}
.product-card-link {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.product-card-link:hover { gap: 10px; }
@media (max-width: 900px) {
  .product-overview-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ============================================================
   12. CALIFORNIA DATES SECTION
   ============================================================ */
.dates-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.dates-bg {
  position: absolute; inset: 0;
  background-image: url('../frames/frame_0030.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.dates-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.dates-text .section-label { color: var(--gold); }
.dates-text .section-heading { color: #fff; }
.dates-text p {
  color: rgba(255,255,255,0.68);
  font-size: var(--text-base); font-weight: 300;
  line-height: 1.78;
  margin-bottom: var(--space-md);
}
.dates-img-wrap {
  position: relative;
  padding-bottom: 20px;
}
.dates-img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(181,137,42,0.3);
  display: block;
}
.dates-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 1024px) {
  .dates-grid { grid-template-columns: 1fr; }
  .dates-img { aspect-ratio: 16/9; }
}

/* ============================================================
   13. SPECIALTY DESSERTS
   ============================================================ */
.desserts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.desserts-grid .product-item:nth-child(4) { grid-column: 1; }
.desserts-grid .product-item:nth-child(5) { grid-column: 2; }

.product-item {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13,27,42,0.10);
}
.product-item-img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
}
.product-item-body {
  padding: 18px 20px;
}
.product-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.product-item-cat {
  font-size: var(--text-xs); font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate);
}
.product-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: #fff;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}
@media (max-width: 900px) {
  .desserts-grid { grid-template-columns: repeat(2, 1fr); }
  .desserts-grid .product-item:nth-child(4),
  .desserts-grid .product-item:nth-child(5) { grid-column: auto; }
}
@media (max-width: 560px) {
  .desserts-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   14. SPECIALTY FROZEN
   ============================================================ */
.frozen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.frozen-grid .product-item-img { height: 280px; }
@media (max-width: 1024px) {
  .frozen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .frozen-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   15. CAPABILITIES
   ============================================================ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-xl);
}
.cap-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.cap-card:hover {
  border-color: rgba(181,137,42,0.4);
  transform: translateY(-4px);
}
.cap-icon {
  width: 44px; height: 44px;
  background: rgba(181,137,42,0.12);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: var(--space-md);
}
.cap-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.cap-desc {
  font-size: var(--text-sm); font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.68;
}
@media (max-width: 900px) {
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   16. NATIONWIDE REACH
   ============================================================ */
.nationwide-content {
  text-align: center;
  max-width: 800px; margin: 0 auto;
}
.nationwide-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 0 auto var(--space-xl);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}
.stat-block {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--navy); line-height: 1;
}
.stat-label {
  font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate);
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============================================================
   17. WHO WE SERVE
   ============================================================ */
.serve-tags {
  display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center;
  margin: var(--space-xl) auto 0;
  max-width: 800px;
}
.serve-tag {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 10px 24px; border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.serve-tag:hover {
  background: var(--navy); color: #fff;
}
.serve-note {
  text-align: center;
  font-size: var(--text-sm); font-weight: 300;
  color: var(--slate); margin-top: var(--space-lg);
  font-style: italic;
}

/* ============================================================
   18. CONTACT
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,42,0.15);
}
.contact-left {
  background: var(--navy);
  padding: clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column;
  justify-content: center;
}
.contact-left .section-label { color: var(--gold); }
.contact-left .section-heading {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}
.contact-left p {
  color: rgba(255,255,255,0.62);
  font-size: var(--text-base); font-weight: 300;
  line-height: 1.75; margin-bottom: var(--space-lg);
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-value {
  font-size: var(--text-sm); font-weight: 400;
  color: rgba(255,255,255,0.7);
}
a.contact-detail-value:hover { color: #fff; }

.contact-right {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column;
  justify-content: center;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate);
}
.form-input {
  font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 400;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 3px; padding: 13px 16px;
  outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,137,42,0.12);
}
.form-input::placeholder { color: rgba(0,0,0,0.25); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; min-height: auto; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: var(--space-2xl) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: var(--space-2xl);
}
.footer-wordmark {
  display: flex; flex-direction: column;
  gap: 3px; margin-bottom: var(--space-md);
}
.footer-wordmark-l1 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.08em; color: #fff;
}
.footer-tagline {
  font-size: var(--text-sm); font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.38);
  max-width: 280px;
}
.footer-col-label {
  display: block;
  font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-md);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: var(--text-sm); font-weight: 300;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-md) 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.25);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   20. RESPONSIVE — NAV & HERO MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-burger { display: flex; }

  .hero-heading { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-bar-inner {
    justify-content: flex-start; overflow-x: auto;
    flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px;
  }
  .trust-item { flex-shrink: 0; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .section-heading { font-size: clamp(2rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .product-overview-grid { grid-template-columns: 1fr; }
  .serve-tags { gap: 8px; }
  .serve-tag { font-size: 0.78rem; padding: 8px 16px; }
}
