/* ============================================================
   BB Transformations LLC — style.css
   ============================================================ */

/* ── Variables ── */
:root {
  --forest:      #1B4332;
  --forest-mid:  #2D6A4F;
  --moss:        #40916C;
  --sage:        #74C69D;
  --sage-light:  #D8F3DC;
  --amber:       #C7522A;
  --amber-light: #E76F51;
  --cream:       #F8F5F0;
  --parchment:   #EDE9E0;
  --charcoal:    #1C1C1E;
  --gray-d:      #374151;
  --gray:        #6B7280;
  --gray-l:      #F3F4F6;
  --white:       #FFFFFF;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:   72px;
  --radius:  14px;
  --radius-l:22px;

  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-s:0 2px 8px rgba(0,0,0,.10);
  --shadow-m:0 6px 24px rgba(0,0,0,.12);
  --shadow-l:0 20px 60px rgba(0,0,0,.15);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-d); }

/* ── Layout ── */
.container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}
.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}
.section-dark    { background: var(--charcoal); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,.7); }
.section-forest  { background: var(--forest); color: var(--white); }
.section-forest h2 { color: var(--white); }
.section-contact { background: var(--forest); color: var(--white); }
.section-contact h2 { color: var(--white); }
.section-contact .section-sub { color: rgba(255,255,255,.75); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}
.section-head h2 { margin-block: .6rem 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 680px; margin-inline: auto; }
.section-forest .section-sub,
.section-contact .section-sub { color: rgba(255,255,255,.7); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  background: var(--sage-light);
  padding: .35rem .85rem;
  border-radius: 100px;
}
.section-label.light {
  color: var(--sage);
  background: rgba(116,198,157,.15);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.6rem;
  border-radius: 100px;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(199,82,42,.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199,82,42,.4);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-sm  { padding: .55rem 1.2rem; font-size: .88rem; }
.btn-lg  { padding: .9rem 2rem; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }


/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
}
.nav-container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon.sm { width: 38px; height: 38px; font-size: 1rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
  transition: color .3s;
}
.logo-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  transition: color .3s;
}
.site-header.scrolled .logo-name { color: var(--forest); }
.site-header.scrolled .logo-sub  { color: var(--gray); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.site-header.scrolled .nav-link { color: var(--gray-d); }
.site-header.scrolled .nav-link:hover { color: var(--forest); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav-phone:hover { color: var(--white); }
.site-header.scrolled .nav-phone { color: var(--forest-mid); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.site-header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  padding: 1.5rem clamp(1.2rem,4vw,2.5rem) 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.mob-link {
  display: block;
  padding: .75rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: background .2s;
}
.mob-link:hover { background: var(--gray-l); }
.mob-call { display: block; text-align: center; border-radius: var(--radius); }


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=85&auto=format&fit=crop') center/cover no-repeat;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, 1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,67,50,.82) 0%,
    rgba(27,67,50,.55) 60%,
    rgba(27,67,50,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: calc(var(--nav-h) + 3rem) 5rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hstat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hstat span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
}
.hstat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.25);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 1;
}
.hero-scroll span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50%      { transform: scaleY(.6); opacity: 1; }
}


/* ============================================================
   SERVICES
============================================================ */
.service-tabs {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.stab {
  padding: .65rem 1.6rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--gray-l);
  border: 2px solid transparent;
  transition: all .25s var(--ease);
}
.stab.active, .stab:hover {
  color: var(--forest);
  background: var(--sage-light);
  border-color: var(--sage);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius-l);
  padding: 2rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-m);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.svc-card h3 {
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: .5rem;
  position: relative;
}
.svc-card p { font-size: .92rem; line-height: 1.6; position: relative; }

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 2.2rem 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.cta-strip h3 { color: var(--white); margin-bottom: .3rem; font-size: 1.35rem; }
.cta-strip p  { color: rgba(255,255,255,.75); font-size: .95rem; }


/* ============================================================
   PORTFOLIO
============================================================ */
.ba-wrapper {
  margin-bottom: 3.5rem;
  text-align: center;
}
.ba-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.ba-slider {
  position: relative;
  aspect-ratio: 16/7;
  border-radius: var(--radius-l);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  max-width: 900px;
  margin-inline: auto;
  box-shadow: var(--shadow-l);
}
.ba-side {
  position: absolute;
  inset: 0;
}
.ba-side img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-before { z-index: 1; }
.ba-after  { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute;
  bottom: 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.55);
  color: var(--white);
  padding: .3rem .75rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ba-before .ba-tag { left: 1rem; }
.ba-after  .ba-tag { right: 1rem; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(0,0,0,.35);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
  -webkit-appearance: none;
}
.ba-hint {
  margin-top: .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
}

/* Portfolio grid */
.port-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filt {
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  transition: all .2s;
}
.filt:hover, .filt.active {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--white);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.2rem;
}
.port-item { border-radius: var(--radius); overflow: hidden; }
.port-item.wide { grid-column: span 2; }
.port-item.tall { grid-row: span 2; }
.port-item.hidden { display: none; }

.port-img-wrap {
  position: relative;
  width: 100%; height: 100%;
}
.port-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.port-item:hover img { transform: scale(1.05); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-info h4 { color: var(--white); font-size: 1rem; margin-bottom: .2rem; }
.port-info span { color: rgba(255,255,255,.7); font-size: .78rem; }
.port-zoom {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.port-zoom:hover { background: var(--amber); }

.port-more {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
}
.port-more a { color: var(--sage); text-decoration: underline; }


/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-imgs {
  position: relative;
  padding-bottom: 3rem;
}
.about-img-main {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-inset {
  position: absolute;
  bottom: 0; right: -2rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-m);
}
.about-img-inset img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-float-badge {
  position: absolute;
  top: 2rem; left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-m);
  font-size: .88rem;
}
.badge-icon { font-size: 1.8rem; }
.about-float-badge strong { display: block; color: var(--forest); font-weight: 700; }
.about-float-badge span  { color: var(--gray); font-size: .8rem; }

.about-body { }
.about-body .section-label { margin-bottom: 1rem; }
.about-body h2 { text-align: left; margin-bottom: 1.25rem; }
.about-body p  { margin-bottom: 1rem; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin: 1.8rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-d);
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-counters {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--parchment);
}
.counter-item { text-align: center; }
.counter-item label {
  display: block;
  font-size: .8rem;
  color: var(--gray);
  margin-top: .2rem;
  letter-spacing: .04em;
}
.counter, .counter-suf {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.counter-suf { font-size: 1.6rem; }


/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-wrapper { max-width: 900px; margin-inline: auto; }
.testi-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
}
.testi-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.testi-stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 1.2rem; }
.testi-card blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: .95rem; }
.testi-author span  { color: rgba(255,255,255,.55); font-size: .82rem; }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.tnav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.tnav-btn:hover { background: var(--moss); }
.testi-dots { display: flex; gap: .5rem; }
.tdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .25s;
}
.tdot.active {
  background: var(--white);
  width: 26px;
  border-radius: 5px;
}

.review-platforms {
  text-align: center;
  margin-top: 3rem;
}
.review-platforms p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: .75rem; }
.platforms { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.plat-badge {
  padding: .4rem 1rem;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}


/* ============================================================
   SERVICE AREA
============================================================ */
.area-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.area-map-col { }
.map-container {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  border: 3px solid var(--sage-light);
}
#serviceMap {
  height: 400px;
  width: 100%;
  z-index: 0;
}
/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  box-shadow: var(--shadow-m) !important;
}
.bb-map-label {
  background: var(--forest);
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
  font-family: var(--sans);
}

.area-info h3 { color: var(--forest); margin-bottom: 1.2rem; font-size: 1.35rem; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.atag {
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  background: var(--gray-l);
  color: var(--gray-d);
  border: 1.5px solid transparent;
}
.atag.primary {
  background: var(--sage-light);
  color: var(--forest);
  border-color: var(--sage);
  font-weight: 600;
}
.area-note {
  font-size: .92rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.area-note a { color: var(--moss); text-decoration: underline; }


/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  box-shadow: var(--shadow-l);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.fgroup label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--parchment);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
}
.fgroup select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.fgroup textarea { resize: vertical; min-height: 130px; }
.fcheck {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.fcheck input { width: 16px; height: 16px; accent-color: var(--moss); }
/* @formspree/ajax managed elements */

/* Success banner — hidden until library sets aria-hidden="false" */
[data-fs-success] {
  display: none;
  background: var(--sage-light);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
  gap: .9rem;
  align-items: flex-start;
}
[data-fs-success][aria-hidden="false"] {
  display: flex;
}
.success-icon {
  font-size: 1.4rem;
  color: var(--moss);
  flex-shrink: 0;
  line-height: 1;
}
[data-fs-success] strong { display: block; color: var(--forest); font-size: 1rem; }
[data-fs-success] p      { color: var(--forest-mid); font-size: .9rem; margin: .15rem 0 0; }

/* Form-level error banner */
[data-fs-error]:not([data-fs-error^=""]):not(:empty),
div[data-fs-error]:not(:empty) {
  background: #FEF2F2;
  border: 1.5px solid #FCA5A5;
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  margin-bottom: 1.25rem;
  color: #B91C1C;
  font-size: .9rem;
}
div[data-fs-error]:empty { display: none; }

/* Field-level error text */
.field-err:not(:empty) {
  display: block;
  color: #B91C1C;
  font-size: .8rem;
  margin-top: .25rem;
}
.field-err:empty { display: none; }

/* Highlight invalid fields after Formspree validation */
[data-fs-field][aria-invalid="true"] {
  border-color: #FCA5A5 !important;
  box-shadow: 0 0 0 3px rgba(252,165,165,.2) !important;
}

/* Submit button loading state */
[data-fs-submit-btn][disabled] {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-l);
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.contact-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.cinfo-icon { font-size: 1.3rem; flex-shrink: 0; }
.cinfo-item label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .15rem;
}
.cinfo-item a, .cinfo-item span {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.cinfo-item a:hover { color: var(--white); text-decoration: underline; }
.contact-sep {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 1.5rem 0;
}
.response-promise {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.promise-bolt { font-size: 1.5rem; }
.response-promise strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .3rem; }
.response-promise p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }
.social-row {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.soc-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.soc-link:hover { background: var(--moss); color: var(--white); transform: translateY(-2px); }

.mini-review {
  margin-top: 1.5rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--sage);
}
.mini-stars { color: #FFD700; font-size: .95rem; margin-bottom: .5rem; }
.mini-review p { color: rgba(255,255,255,.75); font-size: .88rem; font-style: italic; line-height: 1.6; }
.mini-review cite { color: var(--sage); font-size: .8rem; font-style: normal; margin-top: .5rem; display: block; }


/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); }
.footer-main { padding-block: 4rem 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub  { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a,
.footer-col ul li {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
  text-align: center;
  font-size: .82rem;
}


/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-content {
  max-width: 90vw;
  max-height: 88vh;
  text-align: center;
}
.lb-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lb-caption { color: rgba(255,255,255,.6); margin-top: .75rem; font-size: .9rem; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2.2rem;
  color: rgba(255,255,255,.7);
  line-height: 1;
  transition: color .2s, transform .2s;
}
.lb-close:hover { color: var(--white); transform: rotate(90deg); }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 4rem;
  color: rgba(255,255,255,.5);
  line-height: 1;
  padding: 0 1rem;
  transition: color .2s;
}
.lb-nav:hover { color: var(--white); }
.lb-prev { left: 0; }
.lb-next { right: 0; }


/* ============================================================
   MOBILE STICKY CTA BAR
============================================================ */
.mob-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--parchment);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: .75rem clamp(1rem,4vw,2rem);
  gap: .75rem;
}
.mob-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  border-radius: 10px;
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}
.mob-cta-est {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem;
  border-radius: 10px;
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}


/* ============================================================
   MEDIA QUERIES
============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imgs { padding-bottom: 5rem; }
  .about-float-badge { left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-layout { grid-template-columns: 1fr; }
  #serviceMap { height: 320px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .port-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .port-item.wide { grid-column: span 1; }
  .port-item.tall { grid-row: span 1; }
  .port-overlay { opacity: 1; }

  .hero-stats { gap: 1rem; }
  .hstat strong { font-size: 1.4rem; }

  .about-img-inset { right: 0; }
  .frow { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mob-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .port-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .about-counters { gap: 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .ba-slider { aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
