/* ============================================================
   OASIS J&R LAND CLEARING — stylesheet
   Vanilla CSS, no build step, no framework.

   Restyled to follow a dark, photo-heavy, credibility-driven
   contractor-site layout: two-tone hero headline, credibility
   pill row, numbered service cards, a stats-driven About split,
   and a "ready to talk" CTA band. Palette stays Oasis's own:
   earthy charcoal/soil darks, sand lights, sparing yellow accent.

   Type system:
     Display / headlines : "Oswald" SemiBold — clean condensed sans,
       strong and industrial without being ultra-heavy, stencil,
       or CAT-like
     Body                : "IBM Plex Sans"
     Labels / specs      : "IBM Plex Mono" — small eyebrows, specs,
       credibility pills.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette — earthy, grounded, sparing accent */
  --charcoal-deep:  #17140F;   /* darkest — footer, CTA band, contact */
  --charcoal:       #211D19;   /* primary dark bg */
  --charcoal-2:     #2E2822;   /* raised dark surfaces */
  --soil:           #4A3324;   /* soil brown — secondary dark bg */
  --soil-2:         #5C4230;
  --sand:           #EBE2CB;   /* primary light bg */
  --sand-2:         #F4EEDE;   /* lighter sand surface */
  --cream:          #FBF7EC;   /* off-white text on dark */
  --olive:          #4B5320;   /* forest/olive accent */
  --olive-light:    #7A8442;
  --yellow:         #F2B705;   /* equipment accent — sparing use */
  --yellow-dark:    #C89304;
  --ink:            #241F19;   /* charcoal text on light bg */
  --ink-soft:       #4A4038;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-display-solid: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --container-w: 1180px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Stop mobile Safari/Chrome from auto-boosting font sizes based on
     their own text-density heuristics — without this, that heuristic
     can silently re-trigger (and visibly jump) whenever JS swaps text
     content, e.g. the EN/ES toggle. Font sizes should only ever come
     from our own CSS. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body, h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

html, body {
  max-width: 100%;
  overflow-x: hidden; /* belt-and-suspenders against any stray overflow at 390px */
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Focus states (visible everywhere) ---------- */
a:focus-visible,
button:focus-visible,
.service-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 12px 18px;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section { position: relative; padding-block: clamp(56px, 9vw, 112px); }
.section--sand    { background: var(--sand); color: var(--ink); }
.section--soil    { background: var(--soil); color: var(--cream); }
.section--charcoal{ background: var(--charcoal); color: var(--cream); }
.section--charcoal-deep { background: var(--charcoal-deep); color: var(--cream); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soil);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--yellow); }
.eyebrow__rule {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
  flex: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 1.6rem;
}
.section-title--light { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.95em 1.6em;
  border-radius: 3px;
  border: 2px solid transparent;
  min-height: 44px;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 1.1em; height: 1.1em; fill: currentColor; }
.btn__arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--yellow);
  color: var(--charcoal-deep);
  box-shadow: 0 4px 0 var(--yellow-dark);
}
.btn--primary:hover { background: #ffc71f; }
.btn--primary:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--yellow-dark); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251,247,236,0.5);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(251,247,236,0.08); }

.btn--call {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.7em 1.1em;
  font-size: 0.82rem;
}
.btn--call:hover { background: var(--soil); }

.btn--lg { padding: 1.05em 2em; font-size: 0.95rem; }
.btn--xl { padding: 1.2em 2.4em; font-size: 1.05rem; }

/* Plain text link with arrow — used where a full button is too heavy
   (e.g. the featured-service CTA). */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--yellow);
  margin-top: 1.8rem;
}
.text-link__arrow { transition: transform 0.2s var(--ease); }
.text-link:hover .text-link__arrow { transform: translateX(4px); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 20, 15, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(242,183,5,0.25);
}
.site-header__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 12px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; flex-direction: column; line-height: 1; color: var(--cream); }
.brand__mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: var(--yellow);
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 2px;
}

.main-nav__list {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.main-nav__list a {
  color: var(--cream);
  padding: 0.4em 0.1em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.main-nav__list a:hover { border-color: var(--yellow); color: var(--yellow); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(120px, 14vw, 160px) clamp(56px, 8vw, 96px);
  color: var(--cream);
  background-color: #211D19;
  background-image: url('../heroimage.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,20,15,0.55) 0%, rgba(23,20,15,0.62) 45%, rgba(23,20,15,0.9) 100%);
  /* Opacity is scrubbed 1→0 by the scroll handler in js/main.js as the
     user scrolls through the hero, so the photo reads clearly beneath
     it; will-change hints the compositor since this updates every frame. */
  will-change: opacity;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  width: 100%;
  /* Opacity is scrubbed 1→0 in lockstep with .hero__scrim above — see
     the scroll handler in js/main.js. */
  will-change: opacity;
}

/* Single-column hero: copy fills the full width, no side column. */
.hero__grid {
  display: flex;
  align-items: center;
}

.hero__text { flex: 1 1 auto; min-width: 0; }

/* Language toggle — doubles as the prominent "Hablamos Español" signal.
   Reused (with the --nav modifier) in the sticky header so it stays
   reachable after scrolling past the hero. Segmented EN/ES control:
   the active language is clearly highlighted, click the other to switch. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  background: var(--yellow);
  padding: 0.3em;
  border-radius: 999px;
  margin-bottom: 1.3rem;
  box-shadow: 0 4px 0 var(--yellow-dark);
}
.lang-toggle__btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.55em 1em;
  min-height: 34px;
  border-radius: 999px;
  color: rgba(23, 20, 15, 0.5);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-toggle__btn.is-active {
  background: var(--charcoal-deep);
  color: var(--yellow);
}
.lang-toggle__sep { color: rgba(23, 20, 15, 0.4); font-family: var(--font-mono); font-size: 0.78rem; }

/* Compact variant for the sticky header (dark background). */
.lang-toggle--nav {
  background: transparent;
  border: 1px solid rgba(242, 183, 5, 0.4);
  box-shadow: none;
  margin-bottom: 0;
  padding: 0.2em;
}
.lang-toggle--nav .lang-toggle__btn {
  color: rgba(251, 247, 236, 0.65);
  padding: 0.4em 0.75em;
  font-size: 0.72rem;
  min-height: 30px;
}
.lang-toggle--nav .lang-toggle__btn.is-active { background: var(--yellow); color: var(--charcoal-deep); }
.lang-toggle--nav .lang-toggle__sep { color: rgba(251, 247, 236, 0.3); }

/* Business name — small accent line above the eyebrow/headline so it
   reads as the company name without competing with the big headline. */
.hero__brand-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
/* Two-tone treatment: a lighter/thinner first line, then a bold solid
   line with a short accent underline — the hero's signature move. */
.hero__headline-light,
.hero__headline-bold {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero__headline-light {
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 4rem);
  color: rgba(251, 247, 236, 0.6);
}
.hero__headline-bold {
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  color: var(--cream);
  padding-bottom: 0.2em;
  border-bottom: 5px solid var(--yellow);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero__subhead {
  max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(251,247,236,0.88);
  margin-top: 1.3rem;
  margin-bottom: 1.8rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }

/* Credibility pills — replace the old full-width spec strip with a
   row of small badges, same facts, quieter presentation. */
.credibility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.credibility-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(251, 247, 236, 0.82);
  background: rgba(251, 247, 236, 0.06);
  border: 1px solid rgba(251, 247, 236, 0.18);
  border-radius: 999px;
  padding: 0.6em 1em;
}
.credibility-pill__dot { color: var(--yellow); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  padding: 1.1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px -12px rgba(23,20,15,0.45);
}
.service-card__img {
  position: absolute; inset: 0;
  z-index: 0;
}
/* Placeholder tinted gradients — swap for
   <img loading="lazy" src="images/service-XX.jpg" alt="..."> inside each card,
   positioned absolute/cover behind the text via a wrapping element. */
.service-card__img--1 { background: linear-gradient(150deg, #5C4230, #211D19); }
.service-card__img--2 { background: linear-gradient(150deg, #4B5320, #211D19); }
.service-card__img--3 { background: linear-gradient(150deg, #4A3324, #17140F); }
.service-card__img--4 { background: linear-gradient(150deg, #2E2822, #17140F); }
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(23,20,15,0.92) 0%, rgba(23,20,15,0.35) 55%, transparent 75%);
  z-index: 0;
}

.service-card__top {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}
.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.service-card__arrow {
  width: 2.1em; height: 2.1em;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  color: var(--charcoal-deep);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease);
}
.service-card:hover .service-card__arrow { transform: rotate(45deg); }

/* Title/description prominence has three tiers:
   - touch/mobile (base rules below): a readable "middle" size, always shown
   - mouse default (hover:hover query): subtler/smaller, photo shows through
   - mouse :hover / :focus-visible: scales up to fully prominent
   Line-clamp is a safety net against overflow in the fixed-aspect-ratio
   card when translated (Spanish) copy runs longer than English. */
.service-card__title {
  position: relative; z-index: 1;
  margin-top: auto;
  font-family: var(--font-display-solid);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.1;
  transform: scale(0.9);
  transform-origin: 0% 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.service-card__desc {
  position: relative; z-index: 1;
  font-size: 0.86rem;
  color: rgba(251,247,236,0.78);
  margin-top: 0.5rem;
  opacity: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

/* Mouse/trackpad devices only — touch devices keep the base "middle"
   state above, since they have no reliable hover to reveal anything. */
@media (hover: hover) and (pointer: fine) {
  .service-card__title { transform: scale(0.76); opacity: 0.6; }
  .service-card__desc { opacity: 0; transform: translateY(6px); }
  .service-card::after { opacity: 0.5; }

  .service-card:hover .service-card__title,
  .service-card:focus-visible .service-card__title {
    transform: scale(1);
    opacity: 1;
  }
  .service-card:hover .service-card__desc,
  .service-card:focus-visible .service-card__desc {
    opacity: 1;
    transform: translateY(0);
  }
  .service-card:hover::after,
  .service-card:focus-visible::after {
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-card__title,
  .service-card__desc,
  .service-card::after {
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
  }
}

/* ---------- Gallery carousel ---------- */
.carousel {
  position: relative;
  --carousel-gap: 16px;
}
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  gap: var(--carousel-gap);
}
@media (prefers-reduced-motion: no-preference) {
  .carousel__track { transition: transform 0.6s var(--ease); }
}
.carousel__slide {
  flex: 0 0 calc(50% - (var(--carousel-gap) / 2));
  min-width: 0;
}
@media (max-width: 640px) {
  .carousel__slide { flex: 0 0 100%; }
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 6px 16px -6px rgba(23,20,15,0.5);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel__arrow:hover { background: #ffc71f; }
.carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel__arrow--prev { left: 10px; }
.carousel__arrow--next { right: 10px; }

.gallery-tile {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}
.gallery-tile__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* swap each for a real
     <img loading="lazy" src="images/gallery-0X.jpg" alt="...">
     and remove the fixed aspect-ratio if the photo has its own. */
}

.gallery-tile__img--1 { background: linear-gradient(160deg,#7A8442,#4B5320); }
.gallery-tile__img--2 { background: linear-gradient(160deg,#5C4230,#4A3324); }
.gallery-tile__img--3 { background: linear-gradient(160deg,#EBE2CB,#C9BB93); }
.gallery-tile__img--4 { background: linear-gradient(160deg,#4A4038,#211D19); }
.gallery-tile__img--5 { background: linear-gradient(160deg,#C9BB93,#4A3324); }
.gallery-tile__img--6 { background: linear-gradient(160deg,#2E2822,#17140F); }
.gallery-tile__img--7 { background: linear-gradient(160deg,#4B5320,#211D19); }
.gallery-tile__img--8 { background: linear-gradient(160deg,#C9BB93,#5C4230); }

.gallery-tile__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7em 0.9em 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(23,20,15,0.85), transparent);
}
.gallery-tile { cursor: zoom-in; }
.gallery-tile:hover .gallery-tile__img,
.gallery-tile:focus-visible .gallery-tile__img { filter: brightness(1.08) saturate(1.1); }
.gallery-tile__img { transition: filter 0.2s var(--ease); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(23,20,15,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 5vw, 48px);
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute; top: 18px; right: clamp(18px, 4vw, 36px);
  width: 44px; height: 44px;
  font-size: 2rem; line-height: 1;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s var(--ease);
}
.lightbox__close:hover { background: rgba(251,247,236,0.12); }
.lightbox__stage { max-width: 780px; width: 100%; text-align: center; }
.lightbox__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  background: linear-gradient(150deg,#5C4230,#211D19);
}
.lightbox__caption {
  margin-top: 1rem;
  font-family: var(--font-mono);
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ---------- Featured service (split) ---------- */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.featured__media {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(155deg, #5C4230 0%, #4B5320 55%, #211D19 100%);
}
.featured__intro { color: rgba(251,247,236,0.85); max-width: 42ch; margin-bottom: 1.6rem; }
.checklist { display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  font-size: 1.02rem;
  color: var(--cream);
}
.checklist__mark {
  flex: none;
  width: 1.5em; height: 1.5em;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8em;
  font-weight: 700;
  margin-top: 0.1em;
}

/* ---------- About + stats ---------- */
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__content p { margin-bottom: 1rem; max-width: 50ch; color: rgba(251,247,236,0.82); }
.about__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6rem; }

/* Big-number credibility stats — vertical stack with dividers,
   deliberately using words ("Local", "Own Crew") rather than fake
   numeric claims since Oasis has no verified stat to put there yet. */
.stats {
  display: flex;
  flex-direction: column;
}
.stat {
  padding-block: 1.4rem;
  border-top: 1px solid rgba(251, 247, 236, 0.18);
}
.stat:last-child { border-bottom: 1px solid rgba(251, 247, 236, 0.18); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--yellow);
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(251, 247, 236, 0.7);
  margin-top: 0.4rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--soil) 0%, var(--charcoal-deep) 100%);
  color: var(--cream);
  text-align: center;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  max-width: 18ch;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.cta-band__phone {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--yellow);
  margin-bottom: 1.8rem;
  transition: color 0.2s var(--ease);
}
.cta-band__phone:hover { color: #ffc71f; text-decoration: underline; text-underline-offset: 5px; }

/* ---------- Contact panel ---------- */
.contact { text-align: center; }
.contact__lede { max-width: 46ch; margin-inline: auto; color: rgba(251,247,236,0.85); font-size: 1.05rem; margin-top: 0.6rem; }
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(251,247,236,0.18);
  text-align: left;
}
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}
.contact-info dd a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-deep); color: rgba(251,247,236,0.7); padding-block: 32px; }
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-footer__brand { display: flex; flex-direction: column; line-height: 1; }
.site-footer__brand .brand__mark { font-size: 1.2rem; }
.site-footer__nav { display: flex; gap: 20px; font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer__nav a:hover { color: var(--yellow); }
.site-footer__phone a { font-family: var(--font-mono); color: var(--cream); }
.site-footer__copy { font-family: var(--font-mono); font-size: 0.72rem; width: 100%; text-align: center; margin-top: 12px; opacity: 0.6; }

/* ---------- Reveal animations (fade + slide up, gated behind reduced-motion) ----------
   .reveal      — scroll-triggered (IntersectionObserver), used on sections
                  below the hero. Grouped items (cards/tiles/stats) stagger
                  via --reveal-delay set per sibling in js/main.js.
   .reveal-hero — page-load stagger for the hero only, sequenced via
                  data-hero-order (see js/main.js). Shares the same visual
                  treatment so both animations feel like one system. */
.reveal,
.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible,
.reveal-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-hero {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured__media { order: -1; aspect-ratio: 16/9; }
  .about { grid-template-columns: 1fr; }
  .stats { margin-top: 2.4rem; }
  .contact-info { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 760px) {
  .hero { padding-top: clamp(96px, 20vw, 140px); background-position: 18% center; }

  .main-nav { position: fixed; inset: 64px 0 auto 0; z-index: 90; }
  .main-nav__list {
    flex-direction: column;
    gap: 0;
    background: var(--charcoal-deep);
    border-bottom: 1px solid rgba(242,183,5,0.25);
  }
  .main-nav__list a {
    display: block;
    padding: 16px clamp(20px,5vw,40px);
    border-bottom: 1px solid rgba(251,247,236,0.08);
  }
  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .main-nav.is-open { max-height: 320px; }
  .nav-toggle { display: flex; }

  .btn--call span { display: none; }
  .btn--call { padding: 0.7em; }
  .btn--call .icon { width: 1.3em; height: 1.3em; }

  .lang-toggle--nav .lang-toggle__btn { padding: 0.35em 0.55em; font-size: 0.68rem; min-height: 28px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .carousel__arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .contact-info { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
}
