/* ============================================================
   J & K Excavating - shared design system (site.css)
   Owner: orchestrator. Shared tokens + header/nav/footer chrome.
   Page subagents append ONLY under a banner comment: page: <slug>
   Do not nest comments. Fonts are loaded via <link> in each page head.
   ============================================================ */

:root {
  --orange: #ec9200;
  --orange-deep: #ec6f13;
  --orange-hover: #d97e0a;
  --brown-dark: #441a0a;
  --black: #000000;
  --near-black: #14100d;
  --ink: #1d1d1b;
  --body-text: #4a4a48;
  --white: #ffffff;
  --cream: #fef3e5;
  --cream-2: #fdf1ec;
  --teal: #009490;
  --line: #e8e6e6;
  --muted: #8a857f;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1200px;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(20, 12, 6, 0.12);
  --shadow-sm: 0 4px 14px rgba(20, 12, 6, 0.10);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .5px;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  font-weight: 600;
  font-size: .95rem;
  margin: 0 0 14px;
}
.accent { color: var(--orange); }

/* ---------- buttons ---------- */
.btn-pill {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: .82rem;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-pill:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 16px 40px; font-size: .95rem; }

.phone-link {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
}
.phone-link:hover { color: var(--orange); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo img { height: 58px; width: auto; }
.main-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.header-phone:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }

/* ---------- generic dark band ---------- */
.band-dark {
  background: var(--near-black);
  color: var(--white);
  text-align: center;
}
.band-dark h2, .band-dark h3 { color: var(--white); }

/* ---------- inner page hero (breadcrumb heading over photo) ---------- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brown-dark);
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
}
.page-hero .hero-inner { position: relative; z-index: 2; padding: 90px 24px; }
.page-hero .crumb {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5d9b8;
  font-size: 1rem;
  margin-bottom: 14px;
}
.page-hero .crumb a { color: var(--orange); }
.page-hero h1 { color: var(--white); }

/* ---------- CTA orange band (shared "Start Your Project") ---------- */
.cta-band {
  background: linear-gradient(180deg, #ef9c2b 0%, #ec7a16 100%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .btn-pill { background: var(--white); color: var(--orange-deep); }
.cta-band .btn-pill:hover { background: var(--brown-dark); color: var(--white); }
.cta-band .phone-link { color: var(--white); }
.cta-band .phone-link:hover { color: var(--near-black); }

/* photo-backed contact band variant.
   Source renders an orange gradient with the photo laid over it at a
   very low opacity, and every element inside it in white. */
.contact-band {
  position: relative;
  color: var(--white);
  text-align: center;
  background: linear-gradient(90deg, var(--orange-deep) 0%, var(--orange) 100%);
  overflow: hidden;
}
.contact-band .band-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .10;
}
.contact-band .band-inner { position: relative; z-index: 2; }
.contact-band,
.contact-band p,
.contact-band h2,
.contact-band h3,
.contact-band h4,
.contact-band h5,
.contact-band h6,
.contact-band a,
.contact-band .eyebrow,
.contact-band .accent,
.contact-band .section-lead,
.contact-band .phone-link { color: var(--white); }
.contact-band .btn-pill {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .75);
}
.contact-band .btn-pill:hover { background: var(--white); color: var(--orange-deep); }
.contact-band .phone-link:hover { color: var(--brown-dark); }

/* ---------- footer ---------- */
/* Source: white footer body, orange sub-bar underneath it. */
.site-footer { background: var(--white); color: #595959; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 40px;
}
.footer-inner .footer-col { border-left: 1px solid var(--line); padding-left: 40px; }
.footer-brand img { width: 160px; height: auto; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}
.footer-social a:hover { transform: translateY(-2px); opacity: .85; }
.footer-social img { width: 37px; height: 37px; }
.footer-col h4 {
  color: var(--ink);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.footer-col h4 span { color: var(--orange-deep); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; display: flex; gap: 8px; color: #595959; }
.footer-col li::before { content: "•"; color: var(--orange); }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--orange-deep) 0%, var(--orange) 100%);
  padding: 20px 24px;
  text-align: center;
  font-size: .85rem;
  color: var(--white);
}
.footer-bottom .footer-bottom-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .08;
}
.footer-bottom span { position: relative; z-index: 2; }

/* ---------- star rating ----------
   The rehosted star sprite is white-on-transparent, so it disappears on the
   white review cards. Drawn instead as a gold SVG tile repeated five times. */
.stars {
  display: inline-block;
  width: 75px;
  height: 15px;
  background:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='1.2 1.2 17.6 16.4'%3E%3Cpath fill='%23f5b301' d='M10 1.2l2.5 5.4 5.9.7-4.4 4 1.2 5.8L10 14.2 4.8 17.1 6 11.3 1.6 7.3l5.9-.7z'/%3E%3C/svg%3E")
    repeat-x left center / 15px 15px;
}

/* ---------- carousels (portfolio, reviews, gallery) ---------- */
.carousel { position: relative; }
.car-viewport { overflow: hidden; }
.car-track { display: flex; }

/* discrete-slide flavour */
.carousel[data-carousel="slides"] .car-track {
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.carousel[data-carousel="slides"] .car-track > * {
  flex: 0 0 100%;
  min-width: 100%;
}

/* continuous-scroll flavour */
.carousel[data-carousel="scroll"] .car-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel[data-carousel="scroll"] .car-viewport::-webkit-scrollbar { display: none; }

/* arrows */
.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.carousel.has-nav .car-arrow { display: flex; }
.car-arrow:hover { background: var(--orange); color: var(--white); }
.car-arrow:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.car-prev { left: -10px; }
.car-next { right: -10px; }

/* dots */
.car-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.car-dot {
  width: 10px; height: 10px;
  padding: 0;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.car-dot.is-active { background: var(--orange); transform: scale(1.15); }
.car-dot:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

@media (max-width: 1280px) {
  .car-prev { left: 4px; }
  .car-next { right: 4px; }
}

/* ---------- animations (ported to plain CSS; always end visible) ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(236,146,0,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(236,146,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,146,0,0); }
}

.reveal { animation: fadeUp .8s both; }
.reveal-2 { animation: fadeUp .8s .15s both; }
.reveal-3 { animation: fadeUp .8s .3s both; }
.fade-in { animation: fadeIn 1s both; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- responsive chrome ---------- */
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; gap: 12px 18px; }
  .main-nav { margin-left: 0; gap: 16px; order: 3; width: 100%; justify-content: center; }
  .header-cta { margin-left: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner .footer-col { border-left: none; padding-left: 0; }
  .section { padding: 60px 0; }
}

/* ============================================================
   page: home
   ============================================================ */

/* hero */
.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--brown-dark);
  overflow: hidden;
}
.home-hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.home-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,8,3,.92) 0%, rgba(30,14,6,.78) 45%, rgba(30,14,6,.45) 100%);
}
.home-hero .hero-inner { position: relative; z-index: 2; padding: 90px 24px; }
.hero-copy { max-width: 620px; }
.hero-eyebrow { color: #f0d3ac; }
.home-hero h1 { color: var(--orange); margin-bottom: .1em; }
.hero-sub { color: #fff; font-size: 1.35rem; font-weight: 400; letter-spacing: 1px; margin: 0 0 18px; text-transform: none; }
.hero-tag { color: #f3e3cf; font-weight: 700; letter-spacing: .5px; margin-bottom: 14px; }
.hero-lead { color: #e7ddd3; font-size: 1.05rem; max-width: 540px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.home-hero .phone-link { color: #fff; }
.center-actions { justify-content: center; }

/* about */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-photos { position: relative; height: 430px; }
.about-photo { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.photo-a { top: 0; left: 0; width: 220px; height: 300px; z-index: 2; }
.photo-b { bottom: 0; right: 10px; width: 240px; height: 330px; z-index: 1; animation: floatY 6s ease-in-out infinite; }
.years-badge {
  position: absolute; left: 0; bottom: 26px; z-index: 3;
  background: var(--brown-dark); color: #fff;
  padding: 16px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: left;
}
.years-num { font-family: var(--font-head); font-size: 2.2rem; color: var(--orange); display: block; line-height: 1; }
.years-txt { font-family: var(--font-head); letter-spacing: 2px; font-size: .8rem; }
.about-text h2 { margin-bottom: .5em; }

/* 98% stat band */
.stat-band { position: relative; padding: 46px 0; overflow: hidden; background: var(--brown-dark); }
.stat-band .stat-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.stat-inner { position: relative; z-index: 2; }
.stat-num { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 5rem); color: var(--orange); font-weight: 700; line-height: 1; }
.stat-label { color: #fff; font-weight: 400; letter-spacing: 1px; margin: 6px 0 0; }

/* section leads */
.section-lead { max-width: 640px; margin: 0 auto 44px; color: var(--body-text); }

/* services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 44px;
  text-align: left;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-photo { position: relative; }
.service-photo img { width: 100%; height: 160px; object-fit: cover; }
.service-icon {
  position: absolute; left: 16px; bottom: -22px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.service-icon img { width: 28px; height: 28px; }
.service-card h6 { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); margin: 34px 18px 8px; letter-spacing: .5px; }
.service-card p { font-size: .92rem; margin: 0 18px 20px; color: var(--body-text); }

/* serving counties band */
.serving-band { position: relative; padding: 90px 0; overflow: hidden; background: var(--near-black); text-align: center; }
.serving-band .serving-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.serving-inner { position: relative; z-index: 2; }
.serving-band h2 { color: #fff; max-width: 900px; margin: 0 auto 26px; }

/* why choose us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.why-tile {
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff; border-radius: var(--radius);
  padding: 26px 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.why-tile:hover { transform: translateY(-4px); }
.why-tile img { width: 58px; height: 58px; filter: brightness(0) invert(1); }
.why-tile span { font-family: var(--font-head); font-weight: 500; letter-spacing: .5px; line-height: 1.25; }

/* portfolio — the "Excavator And Dump Trucks" photo is the section's own
   faint backdrop in the source, not a band stacked on top of the content. */
.portfolio-section {
  position: relative;
  overflow: hidden;
  background: rgba(236, 111, 19, .07);
}
.portfolio-section .portfolio-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .06;
  z-index: 0;
  pointer-events: none;
}
.portfolio-section .container { position: relative; z-index: 2; }

.portfolio-carousel { --pf-h: 626px; --pf-w: 293px; }
.portfolio-track { gap: 16px; align-items: flex-start; padding: 6px 4px; }
.portfolio-track > * { flex: 0 0 auto; }
.portfolio-track img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  transition: transform .3s ease;
}
.portfolio-track img:hover { transform: scale(1.02); }
.pf-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: var(--pf-w);
  height: var(--pf-h);
}
.pf-col img { width: 100%; min-height: 0; }
.pf-tall { flex: 391 0 0; }
.pf-short { flex: 219 0 0; }
.pf-wide { height: var(--pf-h); width: calc(var(--pf-h) * 1.35); }

/* reviews */
.reviews-carousel { margin: 40px 0 6px; }
.reviews-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding: 6px;
  align-items: stretch;
}
.review-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); text-align: left;
}
.review-card p { font-style: italic; color: var(--ink); }
.review-author { font-family: var(--font-head); color: var(--orange); letter-spacing: .5px; margin: 12px 0 10px; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 90px; }
  .reviews-slide { grid-template-columns: 1fr; }
  .portfolio-carousel { --pf-h: 420px; --pf-w: 200px; }
  .home-hero { min-height: 520px; }
}
@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   page: about-us
   ============================================================ */
.owner-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.owner-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.owner-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* Source: photo fills the band, the mission copy sits in a dark rounded
   card pinned to the LEFT of the section. */
.mission-band { position: relative; overflow: hidden; background: var(--brown-dark); color: #fff; }
.mission-band .band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.mission-band .band-inner { position: relative; z-index: 2; }
.mission-band h2 { color: #fff; }
.mission-card {
  max-width: 560px;
  margin-right: auto;
  text-align: left;
  background: linear-gradient(160deg, rgba(62, 23, 8, .94) 0%, rgba(36, 13, 5, .94) 100%);
  border-radius: 18px;
  padding: 44px 46px;
  box-shadow: var(--shadow);
}
.mission-card .eyebrow { margin-bottom: 12px; }
.mission-card h2 { margin-bottom: 0; }
.mission-body {
  border-left: 3px solid var(--orange);
  padding-left: 28px;
  margin-top: 28px;
}
.mission-body p { color: #f0e7dd; margin: 0; }
.mission-cta { display: inline-block; margin-top: 26px; }
@media (max-width: 620px) { .mission-card { padding: 32px 26px; } .mission-body { padding-left: 20px; } }

/* "Our Values" is part of the mission copy on the source site, not a
   section of its own - it sits inside the same dark card. */
.mission-card .values-heading {
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 600;
  margin: 24px 0 8px;
}
.values-list { list-style: disc; margin: 0; padding-left: 20px; text-align: left; }
.values-list li { color: #f0e7dd; margin-bottom: 4px; line-height: 1.5; }
.values-list li:last-child { margin-bottom: 0; }
.values-list strong { color: #fff; }

/* ============================================================
   page: services
   ============================================================ */
/* Source: every service row spans the full page width, photo pinned to the
   left edge, copy on the right — no alternating sides. */
.services-detail { padding-top: 46px; padding-bottom: 46px; }
.services-detail .container-wide { width: 100%; max-width: none; margin: 0; padding: 0 24px; }
.svc-row {
  display: grid;
  grid-template-columns: minmax(280px, 650px) 1fr;
  align-items: stretch;
  margin-bottom: 24px;
  background: rgba(232, 230, 230, .35);
  border-radius: 20px;
  overflow: hidden;
}
.svc-img { display: flex; }
.svc-img img {
  width: 100%; height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.svc-body {
  align-self: center;
  max-width: 800px;
  padding: 48px clamp(32px, 7vw, 120px);
}
.svc-body h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.svc-body .hero-actions { margin-top: 20px; }
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-img img { min-height: 280px; }
  .svc-body { padding: 32px 28px 40px; }
}
@media (max-width: 760px) {
  .owner-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   page: gallery
   ============================================================ */
.gallery-heading { margin: 50px 0 24px; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--orange); }
.gallery-heading:first-child { margin-top: 0; }

/* Source renders each gallery as a one-row horizontal slider that keeps
   each photo's own aspect ratio at a fixed row height. */
.gallery-carousel { --g-h: 520px; margin-bottom: 20px; }
.gallery-track { gap: 16px; padding: 6px 4px; align-items: stretch; }
.gallery-track img {
  flex: 0 0 auto;
  height: var(--g-h);
  width: auto;
  max-width: none;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
}
.gallery-track img:hover { transform: scale(1.02); }
@media (max-width: 980px) { .gallery-carousel { --g-h: 400px; } }
@media (max-width: 620px) { .gallery-carousel { --g-h: 300px; } }

/* ============================================================
   page: testimonials
   ============================================================ */
.testi-hero { background: var(--brown-dark); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   page: contact
   ============================================================ */
.contact-hero { background: var(--brown-dark); }
.faq-list { max-width: 820px; margin: 30px auto 0; text-align: left; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-list summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); letter-spacing: .5px; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--orange); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 22px 18px; }
.faq-a ul { margin: 0; padding-left: 20px; }

.contact-form { max-width: 860px; margin: 20px auto 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-bottom: 26px; }
.field { display: flex; flex-direction: column; font-family: var(--font-head); letter-spacing: .5px; color: var(--ink); font-size: .95rem; }
.field-full { grid-column: 1 / -1; }
.req { color: var(--orange); }
.field input, .field textarea {
  margin-top: 8px; padding: 12px 14px; border: 1px solid #d9d4cd; border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(236,146,0,.15); }
.contact-form button { border: none; cursor: pointer; }
.hp-field { position: absolute; left: -9999px; overflow: hidden; width: 1px; height: 1px; }

.area-map { width: 100%; height: 460px; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 34px; z-index: 0; }
.area-meta { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 22px; }
.area-meta strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); letter-spacing: .5px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
