/* ============================================================
   SHERWOODS RESOURCES — DESIGN SYSTEM
   Palette: Navy #1B2A4A | Copper #B87333 | Forest #2D6A4F | Ivory #F8F5F0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: #F8F5F0;
  color: #1B2A4A;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS Variables ── */
:root {
  --navy:   #1B2A4A;
  --copper: #B87333;
  --copper-light: #D4956A;
  --copper-dark:  #8C5623;
  --forest: #2D6A4F;
  --ivory:  #F8F5F0;
  --ivory-dark: #EDE8E0;
  --white:  #FFFFFF;
  --gray-1: #6B7280;
  --gray-2: #9CA3AF;
  --gray-3: #E5E0D8;
  --navy-light: #2A3F6A;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 80px;
  --section-pad: 96px;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { color: var(--gray-1); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: var(--section-pad) 0;
}
.section--dark {
  background: var(--navy);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ivory); }
.section--dark p { color: var(--gray-3); }
.section--dark .eyebrow { color: var(--copper-light); }

.section--ivory { background: var(--ivory-dark); }
.section--white { background: var(--white); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: transparent;
}
.nav.dark-nav {
  background: rgba(27, 42, 74, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
  background: rgba(248, 245, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,42,74,0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav.scrolled .nav__logo img {
  filter: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--copper);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: var(--copper); }

.nav.dark-nav .nav__links a { color: var(--ivory); }
.nav.dark-nav .nav__links a:hover { color: var(--copper-light); }
.nav.dark-nav.scrolled .nav__links a { color: var(--navy); }
.nav.dark-nav.scrolled .nav__links a:hover { color: var(--copper); }

.nav__cta {
  background: var(--copper);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.2s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--copper-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav__phone {
  font-size: 0.8rem;
  color: var(--gray-1);
  margin-right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav.dark-nav .nav__phone { color: var(--gray-3); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  transform-origin: center;
}
.nav.dark-nav .nav__hamburger span { background: var(--ivory); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: #1B2A4A;
  flex-direction: column;
  padding: 0 1.75rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.nav__mobile.open { display: flex; }

.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(248,245,240,0.12);
}
.nav__mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ivory);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(248,245,240,0.08);
  display: block;
  transition: color 0.15s;
}
.nav__mobile-link:active,
.nav__mobile-link:hover { color: var(--copper-light); }
.nav__mobile-foot {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(248,245,240,0.12);
}
.nav__mobile-foot a {
  font-size: 0.85rem;
  color: rgba(248,245,240,0.45);
}
.nav__mobile-close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ivory);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn--primary {
  background: var(--copper);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,115,51,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--ivory);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(248,245,240,0.4);
}
.btn--outline-light:hover {
  background: rgba(248,245,240,0.1);
  border-color: var(--ivory);
  transform: translateY(-2px);
}
.btn--copper-outline {
  background: transparent;
  color: var(--copper-light);
  border: 1.5px solid var(--copper);
}
.btn--copper-outline:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Hero (shared) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/2101137/pexels-photo-2101137.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,42,74,0.88) 0%,
    rgba(27,42,74,0.72) 50%,
    rgba(45,106,79,0.4) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  padding-top: var(--nav-h);
}
.hero__content h1 { color: var(--ivory); }
.hero__content h1 span { color: var(--copper-light); font-style: italic; }
.hero__subtitle {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 1.5rem 0 2.5rem;
  color: rgba(248,245,240,0.8);
  font-weight: 300;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248,245,240,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--copper-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(248,245,240,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
  display: block;
}
.stat-item__label {
  font-size: 0.8rem;
  color: var(--gray-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

/* ── Section Heading ── */
.section-heading { margin-bottom: 3.5rem; }
.section-heading--center { text-align: center; }
.section-heading p {
  max-width: 560px;
  margin-top: 1rem;
}
.section-heading--center p { margin: 1rem auto 0; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,42,74,0.12);
}
.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card__body { padding: 1.75rem; }
.card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  display: block;
}
.card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.card__body p { font-size: 0.9rem; }

/* ── Service Cards ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-3);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,42,74,0.1);
  border-color: transparent;
}
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(184,115,51,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--copper); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--copper);
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 0.7rem; }

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover img { transform: scale(1.06); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,0.9) 0%, rgba(27,42,74,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.product-card__overlay h3 { color: var(--ivory); font-size: 1.2rem; margin-bottom: 0.3rem; }
.product-card__overlay p { color: rgba(248,245,240,0.75); font-size: 0.8rem; line-height: 1.5; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,115,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,106,79,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-banner p { color: var(--gray-3); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-3);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,42,74,0.1);
  border-color: transparent;
}
.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.blog-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.blog-card__date {
  font-size: 0.78rem;
  color: var(--gray-2);
}
.blog-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card__body p { font-size: 0.85rem; flex: 1; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--copper);
  margin-top: 1rem;
  transition: gap 0.2s;
}
.blog-card__link:hover { gap: 0.6rem; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand p {
  color: var(--gray-3);
  font-size: 0.875rem;
  margin-top: 1.25rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer__logo img { height: 40px; }
.footer__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--gray-3);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--copper-light); }
.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-3);
  align-items: flex-start;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--copper); }
.footer__downloads { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer__social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(248,245,240,.08); display: flex; align-items: center; justify-content: center; color: var(--gray-2); transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--copper); color: var(--white); }
.footer__dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--copper-light);
  border: 1px solid rgba(184,115,51,0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.footer__dl-btn:hover {
  background: rgba(184,115,51,0.1);
  border-color: var(--copper);
}
.footer__bottom {
  border-top: 1px solid rgba(248,245,240,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-2);
}
.footer__bottom a { color: var(--gray-2); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--copper-light); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(184,115,51,0.08));
  pointer-events: none;
}
.page-hero h1 { color: var(--ivory); }
.page-hero .eyebrow { color: var(--copper-light); }
.page-hero p { color: rgba(248,245,240,0.75); max-width: 580px; margin-top: 1rem; }

/* ── About Page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-split__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-split__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-split__img::after {
  content: '';
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 80%; height: 80%;
  border: 2px solid var(--copper);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  padding: 1.75rem;
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--copper);
}
.value-item h4 { margin-bottom: 0.5rem; }
.value-item p { font-size: 0.85rem; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: rgba(184,115,51,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { color: var(--copper); }
.contact-info__text strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}
.contact-info__text span { font-size: 0.875rem; color: var(--gray-1); }

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 4px 32px rgba(27,42,74,0.06);
  border: 1px solid var(--gray-3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--ivory);
  transition: border-color 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input.input--error,
.form-group input.input--error:focus { border-color: #c0392b; background: #fff5f5; }
.field-error { display: none; font-size: 0.75rem; color: #c0392b; margin-top: 0.35rem; }
.iti { width: 100%; }
.iti__selected-flag { background: var(--ivory) !important; border-right: 1.5px solid var(--gray-3); }
.iti__selected-flag:hover, .iti--container .iti__selected-flag:focus { background: var(--white) !important; }
.iti input { width: 100%; }
.form__submit { width: 100%; padding: 1rem; font-size: 1rem; }
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form__success svg { color: var(--forest); margin: 0 auto 1rem; }
.form__success h3 { color: var(--forest); margin-bottom: 0.5rem; }

/* ── Markets Page ── */
.driver-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.driver-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-3);
  display: flex;
  gap: 1.25rem;
  transition: all 0.3s;
}
.driver-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 24px rgba(27,42,74,0.08);
}
.driver-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Blog Page ── */
.blog-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(27,42,74,0.1);
}
.blog-hero-card__img {
  height: 420px;
  object-fit: cover;
  width: 100%;
}
.blog-hero-card__body {
  background: var(--navy);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-hero-card__body h2 { color: var(--ivory); font-size: 2rem; margin-bottom: 1rem; }
.blog-hero-card__body p { color: var(--gray-3); margin-bottom: 1.5rem; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  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; }

/* ── Divider ── */
.copper-divider {
  width: 60px; height: 3px;
  background: var(--copper);
  margin: 1.25rem 0;
  border-radius: 2px;
}
.copper-divider--center { margin: 1.25rem auto; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-2);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--copper-light); }
.breadcrumb span { color: var(--gray-2); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px; --nav-h: 68px; }

  /* Typography */
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h3 { font-size: clamp(1.2rem, 4vw, 1.6rem); }

  /* Nav */
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__subtitle { font-size: 1rem; margin: 1rem 0 1.75rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Sections */
  .section-heading { margin-bottom: 2rem; }

  /* Grids */
  .service-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__img::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .driver-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-card { grid-template-columns: 1fr; }
  .blog-hero-card__img { height: 240px; }

  /* Buttons */
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-banner { padding: 3.5rem 0; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer__bottom span { font-size: .8rem; }

  /* Cards */
  .service-card { padding: 1.75rem 1.5rem; }

  /* About split image */
  .about-split__img { max-height: 280px; overflow: hidden; border-radius: 8px; }
  .about-split__img img { object-fit: cover; height: 100%; }

  /* Contact */
  .contact-info { padding: 0; }

  /* Stats */
  .stats-bar { padding: 2rem 0; }
}

@media (max-width: 480px) {
  :root { --section-pad: 40px; }
  .container { padding: 0 1.1rem; }

  /* Typography */
  h1 { font-size: clamp(1.75rem, 9vw, 2.2rem); }

  /* Stats */
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(248,245,240,0.1); padding: .75rem; }
  .stat-item:last-child { border-bottom: none; }
  .stat-item__number { font-size: 2.2rem; }

  /* Forms */
  .form { padding: 1.5rem 1.25rem; }

  /* Buttons */
  .btn { padding: .8rem 1.5rem; font-size: .85rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer__logo img { height: 32px; }

  /* Nav logo */
  .nav__logo img { height: 36px; }

  /* Blog hero */
  .blog-hero-card__img { height: 200px; }

  /* Page hero */
  .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .page-hero p { font-size: .9rem; }
}

/* ── Cookie Consent Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--ivory);
  padding: 1.1rem 2rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: .83rem; margin: 0; color: rgba(248,245,240,0.85); line-height: 1.6; }
#cookie-banner a { color: var(--copper); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner__btn {
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: .85; }
.cookie-banner__btn--manage {
  background: transparent;
  border: 1.5px solid rgba(248,245,240,0.3);
  color: var(--ivory);
}
.cookie-banner__btn--accept {
  background: var(--copper);
  border: 1.5px solid var(--copper);
  color: var(--white);
}

/* ── Cookie Preferences Modal ── */
#cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27,42,74,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,0.2);
}
.cookie-modal__box h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; }
.cookie-modal__box > p { font-size: .83rem; color: var(--gray-2); margin-bottom: 1.5rem; line-height: 1.6; }
.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-3);
}
.cookie-row__info strong { display: block; font-size: .875rem; color: var(--navy); margin-bottom: .2rem; }
.cookie-row__info span { font-size: .78rem; color: var(--gray-2); }
.cookie-always {
  font-size: .75rem;
  font-weight: 600;
  color: var(--forest);
  background: rgba(45,106,79,0.08);
  padding: .3rem .75rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--gray-3);
  border-radius: 24px;
  transition: background 0.25s;
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--copper); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-modal__actions {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-3);
}
.cookie-modal__actions button {
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-modal__actions button:hover { opacity: .85; }
#cookie-reject { background: transparent; border: 1.5px solid var(--gray-3); color: var(--gray-1); }
#cookie-save { background: var(--copper); border: 1.5px solid var(--copper); color: var(--white); }

/* Hide reCAPTCHA badge — notice shown in form instead */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice { font-size: .72rem; color: var(--gray-2); margin-top: .75rem; text-align: center; }
.recaptcha-notice a { color: var(--copper); }

@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .cookie-modal__box { padding: 1.5rem; }
}

