/* ==========================================================================
   King & Sons Enterprises, LLC — styles.css
   Mobile-first. Black & gold theme matched to the company trailer branding:
   warm black surfaces, metallic gold accents, cream content backgrounds,
   and a script flourish for small labels. Edit the tokens below to retheme.
   ========================================================================== */

:root {
  /* Colors — pulled from the King & Sons trailer (gold crown on black),
     with neutral blacks so nothing reads brown. */
  --black-950: #0b0b0c;
  --black-900: #141416;
  --black-800: #1e1f22;
  --gold: #d4af37;          /* primary metallic gold */
  --gold-bright: #e4c862;   /* highlights + hover on dark */
  --gold-deep: #a3862e;     /* quiet gold, borders on dark */
  --bronze: #756016;        /* gold-toned text that passes contrast on light */
  --cream: #f7f6f2;         /* page background — neutral off-white */
  --cream-card: #fffefb;    /* card background */
  --ink: #1d1d1f;           /* body text on light backgrounds */
  --ink-soft: #55544e;

  /* Type */
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", -apple-system, sans-serif;
  --font-script: "Great Vibes", "Snell Roundhand", cursive;

  /* Layout */
  --container: 72rem;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 6px rgba(15, 15, 16, 0.07);
  --shadow-lift: 0 10px 24px rgba(15, 15, 16, 0.14);
  --header-h: 4.25rem;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  margin: 0 0 0.6em;
  color: var(--black-900);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 7.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--bronze); }
a:hover { color: var(--black-900); }

:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Bronze lacks pop on dark surfaces — use bright gold there. */
.site-header :focus-visible,
.hero :focus-visible,
.trust :focus-visible,
.service-card-wide :focus-visible,
.about-card :focus-visible,
.page-banner :focus-visible,
.site-footer :focus-visible,
.skip-link:focus-visible {
  outline-color: var(--gold);
}
.mowing-cta :focus-visible { outline-color: var(--black-950); }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: 4.5rem 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--black-950);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: var(--cream); }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Type helpers ---------- */

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.eyebrow-dark { color: var(--black-900); }

.section-head { max-width: 42rem; margin-bottom: 2.75rem; }
.section-sub { font-size: 1.125rem; color: var(--ink-soft); margin-bottom: 0; }

.text-link {
  display: inline-block;
  font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
  margin-top: 0.25rem;
}
.text-link:hover { color: var(--black-900); text-decoration: underline; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
              color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:active { transform: translateY(1px); }

/* Flat trailer gold with near-black text — no gradient, no outline. */
.btn-primary {
  background: var(--gold);
  color: var(--black-950);
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--black-950);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black-900);
  color: var(--gold);
}
.btn-dark:hover {
  background: var(--black-950);
  color: var(--gold-bright);
  box-shadow: 0 4px 14px rgba(11, 11, 12, 0.35);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 1.9rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9375rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black-900);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-mark { width: 2.8rem; }
.brand-mark svg { width: 100%; height: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
/* Script wordmark, straight off the trailer. */
.brand-name {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--gold);
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.75);
  margin-top: 0.15rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a:not(.btn) {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav a:not(.btn):hover { color: var(--gold); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.nav-toggle-bars { display: flex; flex-direction: column; gap: 4px; }
.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-open .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav panel. The second query closes the fractional-pixel gap below
   the 52em desktop breakpoint on browsers that support range syntax. */
@media (max-width: 51.99em), (width < 52em) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-950);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.45);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .js .site-nav { display: none; }
  .js .nav-open .site-nav { display: block; }
  /* Without JS the toggle is useless — show the menu inline instead. */
  html:not(.js) .header-inner { flex-wrap: wrap; }
  html:not(.js) .site-nav {
    position: static;
    flex-basis: 100%;
    background: transparent;
    border-top: 0;
    box-shadow: none;
    max-height: none;
  }
  html:not(.js) .nav-toggle { display: none; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
  }
  .site-nav li { border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a:not(.btn) {
    display: block;
    padding: 0.9rem 0.25rem;
    font-size: 1.0625rem;
    border-bottom: 0;
  }
  .nav-cta { padding-top: 1rem; }
  .nav-cta .btn { width: 100%; }
  .header-call span { display: none; }        /* icon-only call button on phones */
  .header-call { padding: 0.55rem 0.7rem; }
}

@media (min-width: 52em) {
  .nav-toggle { display: none; }
  .header-call { display: none; }             /* desktop call CTA lives in the nav */
}

/* ---------- Hero ---------- */

/* Real job photo (images/hero.jpg) under a black overlay that is darkest
   where the headline sits, so any replacement photo stays readable.
   The photo layer slowly zooms (Ken Burns) unless reduced motion is set. */
.hero {
  position: relative;
  background: var(--black-900);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center / cover no-repeat;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(11, 11, 12, 0.93) 0%,
    rgba(11, 11, 12, 0.7) 55%,
    rgba(20, 20, 22, 0.4) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  max-width: 46rem;
}

.hero h1 { color: var(--cream-card); margin-bottom: 0.4em; }

.hero .eyebrow { color: var(--gold); }

.hero-sub {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: rgba(247, 246, 242, 0.9);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gold-bright);
  background: rgba(11, 11, 12, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
}
.hero-chips .icon { color: var(--gold); }

@media (min-width: 52em) {
  .hero-inner { padding: 7.5rem 0 6.5rem; }
}

/* ---------- Services ---------- */

.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--cream-card);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-top-color: var(--gold-deep);
}

.service-card h3 { margin-bottom: 0.4em; }
.service-card p { margin-bottom: 0; color: var(--ink-soft); }

/* Gold tools on a black well — same treatment as the trailer art. */
.service-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  padding: 0.55rem;
  margin-bottom: 1rem;
  border-radius: 9px;
  background: var(--black-900);
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card-wide {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--black-900);
  border-color: var(--black-950);
  border-top-color: var(--gold);
}
.service-card-wide:hover { border-top-color: var(--gold-bright); }
.service-card-wide h3 { color: var(--gold-bright); }
.service-card-wide p { color: rgba(247, 246, 242, 0.87); }
.service-card-wide .service-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  flex: none;
  margin-bottom: 0;
}
.service-card-wide .text-link { color: var(--gold); }
.service-card-wide .text-link:hover { color: var(--gold-bright); }

@media (min-width: 40em) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* With 7 regular cards, the wide card completes the last row (col 2 of 2,
     cols 2-3 of 3). Revisit these if the card count changes. */
  .service-card-wide { grid-column: auto / -1; }
}

@media (min-width: 64em) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card-wide { grid-column: 2 / -1; }
}

/* ---------- Trust ---------- */

.trust {
  background: var(--black-900);
  color: var(--cream);
}
.trust h2 { color: var(--cream-card); }
.trust .section-sub { color: rgba(247, 246, 242, 0.8); }
.trust .eyebrow { color: var(--gold); }

.trust-grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.45);
}

.trust-number {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.trust-badge {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.4rem;
  color: var(--gold);
}
.trust-badge svg { width: 100%; height: 100%; }

.trust-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 246, 242, 0.92);
}

/* Commercial accounts strip — owner-verified names, text only (no logos) */
.trust-clients {
  margin: 0 0 2.5rem;
  padding: 1.6rem 1.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
}
.trust-clients-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 0.3rem;
}
.trust-clients-note {
  color: rgba(247, 246, 242, 0.8);
  margin: 0 0 1rem;
  max-width: 46rem;
}
.trust-clients-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 0.5rem;
}
.trust-clients-list li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(247, 246, 242, 0.92);
  white-space: nowrap;
}
/* Separator rides inside the previous item so wrapped lines never
   start with an orphaned dot. */
.trust-clients-list li:not(:last-child)::after {
  content: "\2022";
  color: var(--gold);
  margin: 0 0.65rem;
}

/* Featured customer quote (real Facebook recommendation) */
.trust-quote {
  margin: 0 0 2.5rem;
  padding: 1.6rem 1.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.trust-quote blockquote { margin: 0; }
.trust-quote blockquote p {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--cream-card);
  margin: 0 0 0.5rem;
}
.trust-quote figcaption { color: var(--gold); font-size: 0.9375rem; }

.trust-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
}
.trust-footer p {
  margin: 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  color: rgba(247, 246, 242, 0.92);
}

@media (min-width: 40em) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .trust-footer { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 64em) {
  .trust-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- About ---------- */

.about { background: var(--cream-card); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text p { color: var(--ink-soft); max-width: 36rem; }

.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--gold)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%2316130e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 70% no-repeat;
}

.about-card {
  background: var(--black-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.about-card-mark {
  display: inline-flex;
  width: 3.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.about-card-mark svg { width: 100%; height: auto; }
.about-card-quote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream-card);
}
.about-card-source { color: var(--gold); font-size: 0.9375rem; margin-bottom: 1.5rem; }

.about-card-facts {
  margin: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding-top: 1.25rem;
  display: grid;
  gap: 0.6rem;
}
.about-card-facts div { display: flex; justify-content: space-between; gap: 1rem; }
.about-card-facts dt {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.65);
}
.about-card-facts dd { margin: 0; font-weight: 600; color: var(--gold-bright); }

@media (min-width: 52em) {
  .about-inner { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
}

/* ---------- Mowing CTA band ---------- */

.mowing-cta {
  background: var(--gold);
  color: var(--black-950);
  padding: 3.5rem 0;
}

.mowing-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

.mowing-text h2 { color: var(--black-950); margin-bottom: 0.35em; }
.mowing-text p {
  margin: 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(11, 11, 12, 0.85);
}

@media (min-width: 52em) {
  .mowing-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .mowing-cta .btn { flex: none; }
}

/* ---------- Work / gallery ---------- */

.work { background: var(--cream); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.work-card {
  margin: 0;
  background: var(--cream-card);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.work-card img,
.work-ph {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* For portrait photos whose subject sits in the upper part of the frame. */
.work-card img.obj-top { object-position: center 22%; }

.work-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gold-deep);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(168, 134, 42, 0.07) 0 14px,
      transparent 14px 28px
    ),
    linear-gradient(160deg, #f1ead6, #e6dcc0);
}
.work-ph .icon { width: 2.4rem; height: 2.4rem; opacity: 0.75; }
.work-ph span {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.work-card figcaption {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--black-900);
  padding: 1rem 1.25rem;
  border-top: 2px solid var(--gold);
}

@media (min-width: 40em) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64em) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Contact ---------- */

.contact { background: var(--cream-card); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  flex: none;
  border-radius: 12px;
  background: var(--black-900);
  color: var(--gold);
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}

/* Form */

.quote-form {
  background: var(--cream);
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  color: var(--black-900);
}
.req { color: var(--bronze); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-card);
  border: 1.5px solid rgba(29, 29, 31, 0.5);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 6rem; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-status { margin: 0.9rem 0 0; font-weight: 600; }
.form-status.is-success { color: #2e6b34; }
.form-status.is-error { color: #a13415; }

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

@media (min-width: 40em) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: 2.25rem 2rem; }
}

@media (min-width: 52em) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black-950);
  color: rgba(247, 246, 242, 0.84);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}

.footer-brand p { max-width: 22rem; font-size: 0.9375rem; margin: 1rem 0 0; }

.footer-col h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a {
  color: rgba(247, 246, 242, 0.84);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-bright); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.25rem 0;
  font-size: 0.875rem;
}
.footer-bottom p { margin: 0; }

@media (min-width: 52em) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}

/* ---------- Gallery page ---------- */

.page-banner {
  background: var(--black-900);
  color: var(--cream);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding: 4rem 0 3rem;
}
.page-banner h1 {
  color: var(--cream-card);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 0.3em;
}
.page-banner p:last-child {
  color: rgba(247, 246, 242, 0.87);
  max-width: 42rem;
  margin: 0;
}
.page-banner .eyebrow { color: var(--gold); }

.gallery-section { padding: 2.75rem 0 0; }
.gallery-section:last-of-type { padding-bottom: 4rem; }
.gallery-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}
.gallery-note {
  margin: -0.5rem 0 1.25rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 29, 31, 0.1);
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-grid img:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

@media (min-width: 40em) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* "See the full gallery" button under the home-page work grid */
.work-more { margin-top: 2.25rem; text-align: center; }

/* ---------- Sticky mobile call bar ---------- */

.call-bar { display: none; }

@media (max-width: 51.99em), (width < 52em) {
  .call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    display: flex;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(14, 14, 15, 0.94);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
  }
  .call-bar .btn { flex: 1; }
  /* Keep the footer reachable above the fixed bar. */
  body { padding-bottom: 4.4rem; }
}

/* ---------- Scroll reveal ----------
   Elements with [data-reveal] fade/slide in when scrolled into view.
   The .js class is added by script.js, so nothing is hidden if JS is off. */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .service-card, .work-card, .trust-card { transition: none; }
  .btn:hover, .service-card:hover, .work-card:hover, .trust-card:hover {
    transform: none;
  }
  .hero::before { animation: none; }
}
