/* ===================================================================
   Cal South Premier Landscape & Hardscapes — Design System
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors, pulled from the logo */
  --black: #0a0a0c;
  --charcoal: #141519;
  --charcoal-2: #1d1f25;
  --orange: #f7941d;
  --orange-2: #f15a24;
  --orange-light: #ffb648;
  --silver: #c9ccd1;
  --silver-dark: #8b8f98;
  --white: #ffffff;
  --off-white: #f6f5f3;
  --cream: #efece6;
  --ink: #201f1d;
  --success: #2e7d46;

  --grad-orange: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 45%, var(--orange-2) 100%);
  --grad-silver: linear-gradient(120deg, #9a9ea5 0%, #e9ebee 45%, #b7bac0 75%, #e4e6e9 100%);
  --grad-dark: linear-gradient(180deg, rgba(10,10,12,0) 0%, rgba(10,10,12,0.85) 70%, rgba(10,10,12,0.97) 100%);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1220px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow-lift: 0 20px 45px -15px rgba(10,10,12,.35);
  --shadow-soft: 0 8px 24px -8px rgba(10,10,12,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-orange);
}

.section {
  padding: 100px 0;
  position: relative;
}
.section--tight { padding: 70px 0; }
.section--dark {
  background: var(--black);
  color: var(--off-white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--cream { background: var(--cream); }

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-sub { font-size: 1.08rem; color: #5a5850; max-width: 620px; }
.section--dark .section-sub { color: #b8b7b3; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-height: 48px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--grad-orange);
  color: var(--black);
  box-shadow: 0 12px 30px -10px rgba(241,90,36,.55);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(120%) skewX(-15deg); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -10px rgba(241,90,36,.65); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); transform: translateY(-3px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: calc(22px + env(safe-area-inset-top)) 0 22px;
  transition: padding .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(10,10,12,.86);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,.5);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.site-header.is-scrolled .brand img { height: 42px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--off-white);
  padding: 10px 16px;
  border-radius: 100px;
  position: relative;
  transition: color .3s, background .3s;
}
.main-nav a:hover { background: rgba(255,255,255,.08); }
.main-nav a.active { color: var(--orange-light); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  touch-action: manipulation;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
@supports (height: 100dvh) {
  .hero { min-height: 100dvh; }
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.45) 35%, rgba(10,10,12,.88) 100%),
    linear-gradient(100deg, rgba(10,10,12,.75) 10%, rgba(10,10,12,.15) 55%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--white); padding-top: 90px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 18px 8px 8px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.hero-tag__rating { display: inline-flex; align-items: center; gap: 8px; }
.hero-tag .stars { color: var(--orange-light); letter-spacing: 2px; }
.hero-tag b { background: var(--grad-orange); color: var(--black); padding: 4px 10px; border-radius: 100px; }

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  color: var(--white);
  margin-bottom: 22px;
  max-width: 900px;
}
.hero h1 span { display: block; }
.hero h1 .grad {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.2rem;
  color: #dcdad4;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.3rem;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-stat .label { font-size: 0.82rem; color: #b8b7b3; margin-top: 6px; letter-spacing: .02em; }

.scroll-cue {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--orange), transparent); animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 110px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.page-hero .bg-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .38; }
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.55), rgba(10,10,12,.94));
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-family: var(--font-head); font-size: 0.82rem; color: var(--silver); margin-bottom: 18px; letter-spacing: .04em; }
.breadcrumb a { color: var(--orange-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 780px; }
.page-hero p.lead { color: #d8d6d1; font-size: 1.12rem; max-width: 640px; margin-top: 18px; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
/* Card shape variants (moved out of inline styles so media queries can win) */
.card-tile   { aspect-ratio: 4 / 5; }
.card-wide   { aspect-ratio: 16 / 11; }
.card-span2  { grid-column: span 2; }

/* Orange "See All Services" tile */
/* "See All Services" tile.
   A flat orange fill read as a heavy empty slab, so this is a dark card with
   the brand orange used as a glow and an accent instead of a background. */
.card-cta {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(247,148,29,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .4s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card-cta::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 85% at 50% 118%, rgba(247,148,29,.42) 0%, rgba(247,148,29,0) 62%),
    radial-gradient(90% 70% at 50% -20%, rgba(241,90,36,.16) 0%, rgba(241,90,36,0) 60%);
  transition: opacity .5s var(--ease);
}
.card-cta__overlay { background: none; }
.card-cta .content {
  position: static;   /* must outrank .service-card .content { position: absolute } */
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 28px 22px;
}
.card-cta .content h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.card-cta .content p  { color: rgba(255,255,255,.62); }
.card-cta .content .link-arrow { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .card-cta:hover { border-color: rgba(247,148,29,.6); }
  .card-cta:hover::after { opacity: .82; }
}

.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
  filter: saturate(1.03);
}
.service-card:hover img { transform: scale(1.1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.service-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.35) 55%, rgba(10,10,12,.1) 100%);
}
.service-card .content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px;
  color: var(--white);
}
.service-card .num {
  font-family: var(--font-head); font-weight: 800; font-size: .8rem;
  color: var(--orange-light); letter-spacing: .1em; margin-bottom: 8px; display: block;
}
.service-card h3 { color: var(--white); font-size: 1.36rem; margin-bottom: 8px; }
.service-card p { font-size: .92rem; color: #d3d1cb; margin-bottom: 14px; }
.service-card .link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  color: var(--orange-light);
  transition: gap .3s var(--ease);
}
.service-card:hover .link-arrow { gap: 14px; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(0,0,0,.04);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--black);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: #625f58; font-size: .95rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--black);
  padding: 56px 0;
}
.stats-strip .grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat .num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { color: #c9c7c1; font-size: .88rem; margin-top: 6px; letter-spacing: .02em; }

/* ---------- Before / After slider ---------- */
/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: var(--shadow-lift); }
.testimonial-card .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.testimonial-card p.quote { color: #444136; font-size: .98rem; flex: 1; margin-bottom: 20px; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: var(--black);
}
.testimonial-card .name { font-family: var(--font-head); font-weight: 700; font-size: .92rem; }
.testimonial-card .source { font-size: .8rem; color: #8a877e; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(10,10,12,.65); -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  padding: 6px 12px; border-radius: 100px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(8,8,10,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease);
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; color: var(--white);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.22); }
.lightbox .lb-close { top: 28px; right: 28px; }
.lightbox .lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ---------- Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.process-step { position: relative; padding-top: 10px; }
.process-step .step-num {
  font-family: var(--font-head); font-weight: 900; font-size: 3.4rem;
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px; display: block;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: #625f58; font-size: .92rem; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 26px; left: 90%;
  width: 60%; height: 1px;
  background: repeating-linear-gradient(90deg, #d8d5cc 0 8px, transparent 8px 14px);
  display: none;
}
@media (min-width: 900px) { .process-step:not(:last-child)::after { display: block; } }

/* ---------- Logo strip / trust bar ---------- */
.trust-bar { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); }
.trust-item svg { width: 20px; height: 20px; color: var(--orange-2); flex-shrink: 0; }
.section--dark .trust-item { color: var(--off-white); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 70px 56px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(247,148,29,.35), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(241,90,36,.28), transparent 55%);
  z-index: -1;
  animation: ctaGlow 10s ease-in-out infinite alternate;
}
@keyframes ctaGlow { from { transform: rotate(0deg) scale(1); } to { transform: rotate(20deg) scale(1.15); } }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 640px; margin: 0 auto 16px; }
.cta-band p { color: #d8d6d1; max-width: 520px; margin: 0 auto 34px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c9c7c1; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 300px; color: #a9a7a1; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; }
.footer-social a:hover { background: var(--grad-orange); color: var(--black); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: .92rem; color: #b9b7b1; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0 calc(26px + env(safe-area-inset-bottom)); font-size: .82rem; color: #82807a; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #82807a; }
.footer-bottom a:hover { color: var(--orange-light); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--ink); }
.field input, .field textarea, .field select {
  padding: 14px 16px;
  font-size: 16px;
  border: 1.5px solid #e4e1d8;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(247,148,29,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-row:last-of-type { border-bottom: none; }
.contact-info-row .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange-light); }
.contact-info-row h4 { color: var(--white); font-size: .92rem; margin-bottom: 4px; }
.contact-info-row p, .contact-info-row a { font-size: .92rem; color: #c9c7c1; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.is-visible { display: block; }
.form-success svg { width: 60px; height: 60px; color: var(--success); margin: 0 auto 16px; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* ---------- Marquee (license/trust strip) ---------- */
.marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee-track { display: inline-flex; gap: 60px; animation: marquee 26s linear infinite; padding: 18px 0; }
.marquee-track span { font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .06em; color: #7c7a74; display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span b { color: var(--orange-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,148,29,.12); color: var(--orange-2);
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 10px;
}
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: .98rem; }
.check-list svg { width: 20px; height: 20px; color: var(--orange-2); flex-shrink: 0; margin-top: 2px; }

.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: 14px;
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.float-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--black); line-height: 1; }
.float-badge .lbl { font-size: .76rem; color: #8a877e; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 28px; }
  .stats-strip .grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band { padding: 50px 26px; }
  .hero-content { padding-top: 60px; }
  .contact-card, .contact-info-card { padding: 26px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,12,.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--white); padding: 14px; }
.mobile-nav .btn { margin-top: 20px; }


/* ---------- iOS/touch comfort: only apply hover animations on devices
   that truly support hover (mouse/trackpad), so tapping on iPhone
   doesn't leave cards stuck in a hovered state. ---------- */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover img { transform: scale(1.1); }
  .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
  .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
  .testimonial-card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: var(--shadow-lift); }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item:hover .tag { opacity: 1; transform: translateY(0); }
  .footer-social a:hover { background: var(--grad-orange); color: var(--black); transform: translateY(-3px); }
  .btn-primary:hover::before { transform: translateX(120%) skewX(-15deg); }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -10px rgba(241,90,36,.65); }
  .btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); transform: translateY(-3px); }
  .btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
}
@media (hover: none), (pointer: coarse) {
  .service-card, .feature-card, .testimonial-card, .gallery-item img, .btn {
    transition-duration: .2s;
  }
  .service-card:active, .feature-card:active, .testimonial-card:active {
    transform: scale(.98);
  }
  .btn:active { transform: scale(.96); }
}


/* ---------- Before/after two-column layout ---------- */
/* Outline button on light backgrounds */
.btn-outline-dark { color: var(--black); border-color: rgba(10,10,12,.28); }
@media (hover: hover) and (pointer: fine) {
  .btn-outline-dark:hover { background: var(--black); color: var(--white); border-color: var(--black); }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--black); color: var(--white);
  padding: 12px 20px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Visible keyboard focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Respect reduced-motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ---------- Form status + validation states ---------- */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-status {
  font-size: .9rem;
  margin: 0 0 12px;
  min-height: 1.2em;
  color: #625f58;
  text-align: center;
}
.form-status.is-error { color: #c0392b; font-weight: 600; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: #fdf3f2;
}
.form-success:focus { outline: none; }

/* ---------- Gallery tiles are keyboard-operable ---------- */
.gallery-item { cursor: zoom-in; }
.gallery-item:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-nav, .scroll-cue, .marquee, .lightbox,
  .nav-toggle, .cta-band .actions, video { display: none !important; }
  body { color: #000; background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* Footer column headings kept visually small after semantic promotion to h3 */
.footer-col h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 16px;
}
/* Contact page card headings */
.contact-info-card .h-card,
.contact-card .h-card {
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 6px;
}
.contact-card .h-card { margin-bottom: 8px; }
.contact-info-card .h-card { color: var(--white); }
.contact-info-row h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2px;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   MOBILE OVERHAUL
   Measured problems this fixes (iPhone 390x844):
     - homepage was 11,532px tall (13.7 screens) -> target ~6,000px
     - hero was 941px, taller than the 844px viewport
     - .scroll-cue overlapped .hero-stats
     - 6 service cards at 409px each = 2,593px of stacked cards
     - testimonials 1,491px, process 1,060px, footer 991px
   Ordered last in the file so it wins on cascade without !important.
   ========================================================================== */

@media (max-width: 760px) {

  /* ---------- Rhythm: one consistent, tighter vertical scale ---------- */
  .section            { padding: 54px 0; }
  .section--tight     { padding: 40px 0; }
  .container          { padding: 0 20px; }
  .section-head       { margin-bottom: 28px; }
  .mt-lg              { margin-top: 22px; }

  /* ---------- Type scale: smaller headings, more readable body ---------- */
  .section-title      { font-size: clamp(1.5rem, 6.4vw, 1.85rem); line-height: 1.18; margin-bottom: 10px; }
  .section-sub        { font-size: .97rem; line-height: 1.6; }
  .eyebrow            { font-size: .68rem; letter-spacing: .14em; margin-bottom: 10px; }
  p                   { font-size: .97rem; line-height: 1.62; }

  /* ---------- Header: shorter bar, tighter logo ---------- */
  .site-header        { padding: 12px 0; }
  .site-header .brand img { height: 40px; }
  .nav-toggle         { width: 44px; height: 44px; }

  /* ---------- HERO: must fit a single screen ---------- */
  .hero-content       { padding: 84px 20px 34px; }
  /* Google rating hidden on phones — the badge was doing too much in a
     cramped hero. The "39 Years" pill carries the trust signal on its own. */
  .hero-tag__rating   { display: none; }
  .hero-tag           { background: none; border: 0; padding: 0; margin-bottom: 16px;
                        -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero-tag b         { font-size: .74rem; padding: 7px 15px; letter-spacing: .01em; }
  .hero h1            { font-size: clamp(1.95rem, 8.4vw, 2.45rem); line-height: 1.08; margin-bottom: 14px; }
  .hero .lead         { font-size: .99rem; line-height: 1.58; margin-bottom: 22px; max-width: 34ch; }
  .hero-actions       { gap: 10px; margin-bottom: 26px; }
  .hero-actions .btn  { flex: 1 1 auto; justify-content: center; padding: 14px 18px; font-size: .88rem; }

  /* 2x2 compact stat block instead of a tall stack */
  .hero-stats         { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
                        padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); }
  .hero-stat .num     { font-size: 1.45rem; line-height: 1.1; }
  .hero-stat .label   { font-size: .62rem; letter-spacing: .1em; line-height: 1.3; }

  /* This overlapped .hero-stats on every phone. Redundant on touch anyway. */
  .scroll-cue         { display: none; }

  /* ---------- Marquee: smaller so it reads as a trim, not a band ---------- */
  .marquee            { padding: 12px 0; }
  .marquee-track span { font-size: .74rem; }

  /* ---------- Service cards: wide banners, not tall blocks ---------- */
  .grid               { gap: 14px; }
  .service-card       { aspect-ratio: 16 / 11; border-radius: 16px; }

  /* Homepage service grid: 2-up tiles. 6 stacked banners was 1,606px of scroll.
     Scoped with :has() so text-card grids (about.html .feature-card) stay 1-up. */
  .grid-3:has(> .service-card) { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  /* :not(.card-cta) matters here - these selectors are more specific than
     .card-cta on its own, so without it the CTA tile inherits the 4/5 photo
     tile shape and renders as a tall empty block. */
  .grid-3 > .service-card:not(.card-cta) { aspect-ratio: 4 / 5; }
  .grid-3 > .service-card:not(.card-cta) .content   { padding: 14px; }
  .grid-3 > .service-card:not(.card-cta) .content h3 { font-size: .95rem; line-height: 1.22; margin-bottom: 0; }
  .grid-3 > .service-card:not(.card-cta) .content p  { display: none; }
  .grid-3 > .service-card:not(.card-cta) .num        { font-size: .56rem; margin-bottom: 4px; }
  .grid-3 > .service-card:not(.card-cta) .link-arrow { display: none; }
  .card-wide          { aspect-ratio: 16 / 11; }
  .card-span2         { grid-column: auto; }
  /* photo-only tiles on the service pages: 2-up so they read as a strip */
  .grid-4             { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .card-tile          { aspect-ratio: 1 / 1; border-radius: 14px; }
  .service-card .content   { padding: 18px; }
  .service-card .content h3 { font-size: 1.12rem; line-height: 1.2; margin-bottom: 5px; }
  .service-card .content p  { font-size: .84rem; line-height: 1.45; margin-bottom: 8px;
                              display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
                              overflow: hidden; }
  .service-card .num       { font-size: .62rem; margin-bottom: 6px; }
  .service-card .link-arrow { font-size: .78rem; }

  /* The "See All Services" tile was a large empty orange rectangle */
  /* Slim full-width row: label left, arrow right. No tall coloured block. */
  .grid-3 > .card-cta, .card-cta {
    aspect-ratio: auto; min-height: 0; grid-column: 1 / -1; border-radius: 14px;
  }
  .card-cta::after { background: radial-gradient(90% 220% at 50% 130%, rgba(247,148,29,.40) 0%, rgba(247,148,29,0) 70%); }
  .grid-3 > .card-cta .content, .card-cta .content {
    position: static;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; text-align: left; padding: 16px 18px; width: 100%;
  }
  .grid-3 > .card-cta .content h3, .card-cta .content h3 { font-size: 1.02rem; margin: 0; line-height: 1.25; }
  .grid-3 > .card-cta .content p,  .card-cta .content p  { display: none; }
  .grid-3 > .card-cta .content .link-arrow, .card-cta .content .link-arrow {
    flex: 0 0 auto; font-size: .8rem; margin: 0; display: inline-block;
  }

  /* ---------- Stats strip ---------- */
  .stats-strip        { padding: 44px 0; }
  .stats-strip .grid  { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .stats-strip .num   { font-size: 2rem; }
  .stats-strip .label { font-size: .68rem; }

  /* ---------- Process: 2x2 instead of a 4-high stack ---------- */
  .process-steps      { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .process-step       { padding: 0; }
  .process-step .step-num { font-size: 1.6rem; margin-bottom: 4px; }
  .process-step h3    { font-size: 1rem; margin-bottom: 4px; }
  .process-step p     { font-size: .86rem; line-height: 1.5; }

  /* ---------- Testimonials: swipeable row, not 1,491px of stack ---------- */
  .grid-3:has(.testimonial-card) {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* bleed to the screen edges so cards peek in from the right */
    margin: 0 -20px;
    padding: 4px 20px 12px;
  }
  .grid-3:has(.testimonial-card)::-webkit-scrollbar { display: none; }
  .grid-3:has(.testimonial-card) > .testimonial-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    padding: 22px;
  }
  .testimonial-card p.quote { font-size: .93rem; line-height: 1.6; margin-bottom: 16px; }
  .testimonial-card .who .name { font-size: .9rem; }
  .testimonial-card .avatar { width: 38px; height: 38px; font-size: .9rem; }

  /* ---------- About teaser / float badge ---------- */
  .float-badge        { padding: 14px 16px; }
  .float-badge .num   { font-size: 1.5rem; }
  .float-badge .lbl   { font-size: .62rem; }
  .two-col            { gap: 28px; }
  .check-list li      { font-size: .93rem; gap: 10px; margin-bottom: 10px; }

  /* ---------- CTA band ---------- */
  .cta-band           { padding: 36px 22px; border-radius: 18px; }
  .cta-band h2        { font-size: clamp(1.45rem, 6.2vw, 1.8rem); line-height: 1.18; }
  .cta-band p         { font-size: .95rem; margin-bottom: 20px; }
  .cta-band .actions  { flex-direction: column; gap: 10px; }
  .cta-band .actions .btn { width: 100%; justify-content: center; }

  /* ---------- Page hero (inner pages) ---------- */
  .page-hero          { padding: 112px 0 44px; }
  .page-hero h1       { font-size: clamp(1.8rem, 7.6vw, 2.3rem); line-height: 1.12; }
  .page-hero .lead    { font-size: .99rem; }
  .breadcrumb         { font-size: .74rem; margin-bottom: 12px; }

  /* ---------- Gallery ---------- */
  .filter-bar         { gap: 8px; margin-bottom: 26px; }
  .filter-btn         { font-size: .76rem; padding: 9px 14px; }
  .gallery-grid       { gap: 10px; }
  .gallery-item .tag  { font-size: .6rem; padding: 4px 9px; }
  .lb-nav             { width: 44px; height: 44px; }

  /* ---------- Contact ---------- */
  .contact-card, .contact-info-card { padding: 22px; border-radius: 18px; }
  .contact-info-row   { gap: 12px; margin-bottom: 16px; }
  .contact-info-row .ic { width: 38px; height: 38px; flex: 0 0 38px; }
  .field label        { font-size: .8rem; }
  .feature-card       { padding: 22px; }
  .feature-card h3    { font-size: 1.02rem; }
  .feature-card p     { font-size: .9rem; }

  /* ---------- Footer: 2 columns for links, not 4 stacked ---------- */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 24px 18px; padding-bottom: 28px; }
  .footer-brand       { grid-column: 1 / -1; }
  .footer-brand img   { height: 46px; }
  .footer-brand p     { font-size: .86rem; max-width: 46ch; line-height: 1.55; }
  .footer-social a    { width: 38px; height: 38px; }
  .footer-col h3      { font-size: .82rem; margin-bottom: 10px; }
  .footer-col ul li   { margin-bottom: 6px; }
  .footer-col a, .footer-col li { font-size: .86rem; }
  .footer-bottom      { font-size: .74rem; gap: 6px; padding-top: 24px; }

  /* ---------- Video blocks ---------- */
  .section--dark .grid-2 { gap: 18px; }

  /* ---------- Tap targets ---------- */
  .btn                { min-height: 46px; }
  .main-nav a, .mobile-nav a { min-height: 44px; }
}


/* ---------- Small phones (SE, older Androids) ---------- */
@media (max-width: 400px) {
  .container          { padding: 0 16px; }
  .section            { padding: 46px 0; }
  .hero-content       { padding: 78px 16px 28px; }
  .hero h1            { font-size: 1.92rem; }
  .hero .lead         { font-size: .94rem; }
  .hero-stat .num     { font-size: 1.3rem; }
  .hero-stat .label   { font-size: .58rem; }
  .hero-actions       { flex-direction: column; }
  .hero-actions .btn  { width: 100%; }
  .section-title      { font-size: 1.42rem; }
  .service-card .content h3 { font-size: 1.02rem; }
  .grid-3 > .service-card:not(.card-cta) .content h3 { font-size: .88rem; }
  .grid-3 > .service-card:not(.card-cta) .content   { padding: 12px; }
  .process-steps      { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .footer-grid        { grid-template-columns: 1fr; }
}


/* ---------- Landscape phones: don't force a full-height hero ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 0; }
  .hero-content { padding: 92px 20px 40px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .scroll-cue { display: none; }
}


/* Overflow safety: never let a long unbreakable string widen a card */
.feature-card, .testimonial-card, .process-step, .contact-info-card,
.contact-card, .service-card .content, .footer-col, .cta-band {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------- Logo plaque (About page, founder story) ---------- */
.logo-plaque {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  aspect-ratio: 4 / 3;
  padding: 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(247,148,29,.10) 0%, rgba(247,148,29,0) 60%),
    var(--black);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.logo-plaque::after {
  /* subtle brand hairline frame */
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.logo-plaque img {
  position: relative;
  width: min(72%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}
.logo-plaque__est {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
}
@media (max-width: 760px) {
  .logo-plaque       { aspect-ratio: 3 / 2; padding: 28px; gap: 14px; }
  .logo-plaque img   { width: min(76%, 260px); }
  .logo-plaque__est  { font-size: .64rem; letter-spacing: .18em; }
}

/* ==========================================================================
   INSTAGRAM FEED SECTION
   ========================================================================== */
.ig-embed { max-width: 1040px; margin: 0 auto; }
.ig-embed iframe { display: block; width: 100% !important; border: 0; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ig-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.ig-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(10,10,12,.96) 0%,
    rgba(10,10,12,.88) 22%,
    rgba(10,10,12,.42) 52%,
    rgba(10,10,12,0) 100%);
  transition: opacity .4s var(--ease);
}
.ig-tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 15px 16px;
  color: var(--white);
  font-size: .85rem;
  line-height: 1.38;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,.55);
}
.ig-tile__badge {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  font-family: var(--font-head); font-weight: 700;
  font-size: .56rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--black);
  background: var(--grad-orange);
  padding: 5px 10px;
  border-radius: 100px;
}
.ig-tile__go {
  position: absolute; top: 11px; right: 11px; z-index: 2;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(10,10,12,.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background .3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .ig-tile:hover              { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
  .ig-tile:hover img          { transform: scale(1.07); }
  .ig-tile:hover .ig-tile__go { background: var(--grad-orange); color: var(--black); }
}
.ig-tile:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 1080px) { .ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .ig-grid         { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ig-tile         { border-radius: 12px; }
  .ig-tile__cap    { padding: 11px 12px; font-size: .74rem; line-height: 1.32; }
  .ig-tile__badge  { font-size: .5rem; padding: 4px 8px; top: 8px; left: 8px; }
  .ig-tile__go     { width: 25px; height: 25px; top: 8px; right: 8px; }
  .ig-tile__go svg { width: 12px; height: 12px; }
}
@media (max-width: 400px) {
  .ig-tile__cap    { padding: 10px; font-size: .69rem; }
}
