/* ============================================================
   Atlantic Landscaping Galway — bright, organic, premium
   ============================================================ */
:root {
  --bone: #FAFAF9;
  --bone-tint: #F3F2EC;
  --forest: #1C4B27;
  --forest-deep: #143A1E;
  --leaf: #2ECC71;
  --lime: #84CC16;
  --lime-ink: #1A2E05;
  --lime-soft: #EDF7DA;
  --charcoal: #18181B;
  --ink: #27272A;
  --muted: #57534E;
  --line: #E7E5E4;
  --r-lg: 28px;
  --r-md: 24px;
  --r-sm: 16px;
  --shadow-card: 0 18px 40px -22px rgba(24, 24, 27, 0.22), 0 2px 6px rgba(24, 24, 27, 0.05);
  --shadow-lift: 0 28px 56px -24px rgba(28, 75, 39, 0.30), 0 4px 10px rgba(24, 24, 27, 0.06);
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--lime-ink);
  padding: 0.6rem 1rem;
  border-radius: 0 0 12px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

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

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: var(--forest);
  margin: 0 0 0.9rem;
}
.eyebrow .star { color: var(--lime); margin-right: 0.35rem; }
.star { font-style: normal; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-tint { background: var(--bone-tint); }
.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { margin-bottom: 0; }
.section-head-center { margin-inline: auto; text-align: center; max-width: 46rem; }
.br-desk { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 10px 24px -10px rgba(132, 204, 22, 0.65);
}
.btn-primary:hover {
  background: #76b90e;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(132, 204, 22, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--lime);
  background: var(--lime-soft);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.92rem; }
.btn-wide { width: 100%; }

.stars {
  color: var(--leaf);
  letter-spacing: 0.18em;
  font-size: 1rem;
  margin: 0;
}

.chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: lowercase;
  background: var(--lime);
  color: var(--lime-ink);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
}
.nav {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: var(--forest);
  color: var(--lime);
  font-size: 1.25rem;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--forest);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.brand-sub {
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--forest); border-bottom-color: var(--lime); }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 900;
  margin: 0 0 1.1rem;
}
.swash {
  position: relative;
  display: inline-block;
  color: var(--forest);
}
.swash svg {
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.18em;
  color: var(--lime);
}
.hero-lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  margin: 0 0 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-media {
  position: relative;
  transition-delay: 0.12s;
}
.hero-media video {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  background: var(--forest) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%231C4B27'/%3E%3C/svg%3E");
}
.hero-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow-card);
}
.hero-badge .star { color: var(--lime); font-size: 1.4rem; }
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.2;
}
.hero-badge span:not(.star) { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   MARQUEE (signature ghost type)
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 2rem) 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.4rem, 9vw, 7rem);
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: rgba(28, 75, 39, 0.10);
  line-height: 1;
}
.marquee-track em {
  font-style: normal;
  color: rgba(132, 204, 22, 0.55);
}
.marquee-reverse { animation-direction: reverse; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   RAILS — grid on desktop, swipe carousel on mobile
   ============================================================ */
.rail { display: grid; gap: 1.5rem; }
.reviews-rail { grid-template-columns: repeat(4, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.projects-grid { grid-template-columns: repeat(2, 1fr); }
.team-grid { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.review-card blockquote {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  flex: 1;
}
.review-meta { display: flex; align-items: center; gap: 0.75rem; }
.review-meta strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--forest); }
.review-meta span:not(.avatar) { font-size: 0.8rem; color: var(--muted); }
.avatar {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--forest-deep);
  flex-shrink: 0;
}
.av-1 { background: #DCEFC5; }
.av-2 { background: #C9E8D4; }
.av-3 { background: #EAF2C0; }
.av-4 { background: #D3EBDD; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.9rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.service-media {
  border-radius: calc(var(--r-lg) - 8px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bone-tint);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-media img { transform: scale(1.045); }
.service-body { padding: 1.2rem 0.7rem 0.8rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.service-body p { margin: 0; color: var(--muted); font-size: 0.94rem; flex: 1; }
.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest);
  text-decoration: none;
  margin-top: 0.9rem;
  transition: color 0.2s ease;
}
.card-link:hover { color: var(--lime); }
.card-link span { transition: transform 0.2s ease; display: inline-block; }
.card-link:hover span { transform: translateX(4px); }

.service-card-dark { background: var(--charcoal); border-color: var(--charcoal); }
.service-card-dark h3 { color: var(--bone); }
.service-card-dark .service-body p { color: #A1A1AA; }
.service-card-dark .card-link { color: var(--lime); }
.service-card-dark .card-link:hover { color: var(--leaf); }

/* ============================================================
   PROJECTS + RESULTS
   ============================================================ */
.project-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--forest);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.2rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(24, 24, 27, 0.82), rgba(24, 24, 27, 0));
  color: var(--bone);
}
.project-caption h3 { color: #fff; margin: 0.55rem 0 0.25rem; font-size: 1.45rem; }
.project-caption p { margin: 0; font-size: 0.9rem; color: rgba(250, 250, 249, 0.85); max-width: 30rem; }

.results-strip {
  margin-top: 2.5rem;
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 24px 48px -24px rgba(28, 75, 39, 0.55);
}
.result { text-align: center; }
.result strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--bone);
  line-height: 1;
  letter-spacing: -0.02em;
}
.result-label {
  display: block;
  margin-top: 0.45rem;
  color: rgba(250, 250, 249, 0.75);
  font-size: 0.9rem;
}
.result-star { color: var(--lime); font-size: 1.6rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card { text-align: center; }
.team-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lime-soft);
  box-shadow: var(--shadow-card);
  border: 3px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 1rem;
}
.team-card:hover .team-photo {
  transform: translateY(-6px);
  border-color: var(--lime);
  box-shadow: var(--shadow-lift);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin: 0 0 0.15rem; font-size: 1.1rem; }
.team-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact-lede { color: var(--muted); margin: 0 0 1.8rem; max-width: 30rem; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bone);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.18);
}
.form-success {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 14px;
  padding: 0.8rem 1rem;
}

.map-card {
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 48px -24px rgba(28, 75, 39, 0.55);
}
.map-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  color: var(--bone);
  margin: 0 0 0.6rem;
}
.map-title .star { color: var(--lime); margin-right: 0.35rem; }
.map { width: 100%; height: auto; }
.town circle { fill: var(--lime); }
.town circle.hq { fill: var(--leaf); }
.town .pulse {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  opacity: 0;
  animation: pulse 3s ease-out infinite;
}
.town:nth-of-type(2n) .pulse { animation-delay: 1.1s; }
.town:nth-of-type(3n) .pulse { animation-delay: 2s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { opacity: 0; }
}
.town text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  fill: var(--bone);
}
.town .town-sub { fill: var(--lime); font-size: 13px; letter-spacing: 0.1em; }
.map-water-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.12em;
  fill: rgba(250, 250, 249, 0.5);
}
.map-details {
  list-style: none;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(250, 250, 249, 0.16);
  color: rgba(250, 250, 249, 0.85);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.map-details a { color: var(--bone); text-decoration: none; }
.map-details a:hover { color: var(--lime); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 1.25rem; }
.footer-inner {
  width: 100%;
  background: var(--charcoal);
  border-radius: var(--r-lg);
  color: #D4D4D8;
  padding: clamp(2.2rem, 5vw, 3.5rem) clamp(1.4rem, 4vw, 3.5rem) 1.6rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(250, 250, 249, 0.12);
}
.footer-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 0.3rem;
}
.footer-word span { color: var(--lime); }
.footer-motto { margin: 0 0 1.2rem; font-size: 0.92rem; color: #A1A1AA; }
.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--lime);
  border: 1px solid rgba(132, 204, 22, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-cols h4 {
  color: var(--bone);
  font-size: 0.95rem;
  margin: 0 0 0.8rem;
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-cols li { font-size: 0.9rem; }
.footer-cols a { color: #A1A1AA; text-decoration: none; transition: color 0.2s ease; }
.footer-cols a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  font-size: 0.85rem;
  color: #A1A1AA;
}
.footer-bottom p { margin: 0; }
.socials { display: flex; gap: 0.6rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  border: 1px solid rgba(250, 250, 249, 0.16);
  color: #D4D4D8;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.socials a:hover {
  color: var(--lime-ink);
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-3px);
}
.socials svg { width: 1.15rem; height: 1.15rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 861px) {
  .br-desk { display: inline; }
}

@media (max-width: 1020px) {
  .reviews-rail { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media video { aspect-ratio: 16 / 11; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }

  /* nav collapses */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0.7rem;
    background: var(--bone-tint);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.25rem;
    box-shadow: 0 24px 40px -24px rgba(24, 24, 27, 0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.35rem 0; }
  .nav-links a:not(.btn) { display: block; padding: 0.55rem 0; font-size: 1.05rem; }
  .nav-cta-item { margin-top: 0.5rem; }
  .nav-cta-item .btn { width: 100%; }
}

/* mobile: rails become swipeable snap carousels */
@media (max-width: 720px) {
  .rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.25rem 1.25rem 1.5rem;
    margin-inline: -1.25rem;
    scrollbar-width: none;
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail > * {
    flex: 0 0 min(82%, 21rem);
    scroll-snap-align: center;
  }
  .projects-grid > * { flex-basis: 88%; }
  .project-card { aspect-ratio: 4 / 3.4; }
  .results-strip {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 1rem;
  }
  .result-star { display: none; }
  .marquee-track span { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .town .pulse { animation: none; }
  .btn, .review-card, .service-card, .project-card, .team-photo, .socials a,
  .service-media img, .project-card img, .card-link span {
    transition: none;
  }
}
