/* ============================================================
   IRONWOOD LANDSCAPING — Premium Cinematic Scroll Site
   Palette: ironwood brown, charcoal, forest green, warm stone, brass
   ============================================================ */

:root {
  --bark:        #0A0805;          /* deepest bg */
  --bark-2:      #110D08;          /* card / section bg */
  --bark-3:      #1E1510;          /* elevated elements */
  --forest:      #0D180E;          /* forest green sections */
  --stone:       #C4A87A;          /* warm stone - primary accent */
  --stone-light: #E4D4B8;          /* lighter stone for subtext */
  --stone-dim:   rgba(196,168,122,0.55);
  --brass:       #B8902A;          /* brass - CTA accent */
  --brass-hover: #CFA030;
  --ink:         #F4EDE0;          /* warm white */
  --mist:        rgba(244,237,224,0.62);
  --border:      rgba(196,168,122,0.14);
  --border-mid:  rgba(196,168,122,0.22);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: none; scroll-behavior: smooth; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bark);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 120px 0; }

/* ============================================================
   FIXED NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.45s ease, padding 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,8,5,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 48px;
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark {
  color: var(--brass);
  font-size: 20px;
  line-height: 1;
}
.logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  color: var(--mist);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 400;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.nav-link-cta { color: var(--stone); }
.nav-links .nav-link-cta { display: none; } /* shown only in mobile menu */

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brass); color: var(--bark); }

.nav-menu {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  z-index: 201;
  position: relative;
}

/* ============================================================
   CINEMATIC SCROLL SECTIONS
   ============================================================ */
.cinematic {
  position: relative;
  height: 500vh;
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bark);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(115% 80% at 50% 50%, transparent 38%, rgba(10,8,5,0.72) 100%),
    linear-gradient(180deg,
      rgba(10,8,5,0.55) 0%,
      transparent 18%,
      transparent 68%,
      rgba(10,8,5,0.88) 100%
    );
}

/* ─── OVERLAY COPY ─── */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.reveal-line {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 32px;
  opacity: 0;
  will-change: opacity, transform;
}

/* Hero overlay positions */
.hero-eyebrow {
  top: 30%;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
.hero-title {
  top: 37%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3.8rem, 10.5vw, 9.5rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  text-shadow: 0 4px 48px rgba(10,8,5,0.55);
  line-height: 0.95;
}
.hero-sub {
  top: 60%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--stone-light);
  letter-spacing: 0.04em;
}
.hero-detail {
  top: 70%;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--mist);
  line-height: 1.65;
  letter-spacing: 0.06em;
  font-weight: 300;
}
.hero-cta-text {
  top: 80%;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(196,168,122,0.55);
}

/* Craft overlay positions */
.craft-title {
  top: 35%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3rem, 8.5vw, 8rem);
  color: var(--ink);
  text-shadow: 0 4px 48px rgba(10,8,5,0.5);
  line-height: 0.95;
}
.craft-sub {
  top: 60%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-style: italic;
  color: var(--stone-light);
  letter-spacing: 0.03em;
}
.craft-detail {
  top: 72%;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  color: var(--mist);
  line-height: 1.65;
  letter-spacing: 0.05em;
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.38);
  animation: bob 2.2s ease-in-out infinite;
  transition: opacity 0.5s;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   REVEAL ANIMATION (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s cubic-bezier(0.22,0.61,0.36,1), transform 0.72s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  margin-bottom: 64px;
  max-width: 640px;
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--bark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.intro-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  max-width: 520px;
}
.intro-copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mist);
  max-width: 500px;
}
.intro-cta { flex-shrink: 0; }
.btn-brass {
  display: inline-block;
  padding: 16px 38px;
  background: var(--brass);
  color: var(--bark);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s;
}
.btn-brass:hover { background: var(--brass-hover); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bark-2);
  padding: 52px 44px;
  transition: background 0.3s;
}
.service-card:hover { background: var(--bark-3); }
.service-icon {
  display: block;
  font-size: 26px;
  color: var(--brass);
  margin-bottom: 22px;
  line-height: 1;
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--stone-light);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mist);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--forest);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 72px;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border-mid);
  flex-shrink: 0;
}
.stat-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--bark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.process-step {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step:not(:first-child) { padding-left: 40px; }
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: rgba(196,168,122,0.14);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.process-step h3 {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--stone-light);
  margin-bottom: 16px;
}
.process-step p {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--mist);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-section { background: var(--bark-2); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.project-card { overflow: hidden; cursor: pointer; }
.project-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.22,0.61,0.36,1);
}
.project-card:hover .project-img { transform: scale(1.05); }
.project-info { padding: 22px 0 0; }
.project-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.project-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--stone-light);
  margin-bottom: 4px;
}
.project-info p {
  font-size: 0.87rem;
  color: var(--mist);
  letter-spacing: 0.06em;
}
.projects-cta { text-align: center; }
.btn-outline {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid var(--stone-dim);
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-outline:hover {
  background: var(--stone);
  color: var(--bark);
  border-color: var(--stone);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--forest); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  padding: 40px 34px;
  border: 1px solid var(--border);
  background: rgba(10,8,5,0.45);
}
.stars {
  color: var(--brass);
  font-size: 15px;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  display: block;
}
.review-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--stone-light);
  margin-bottom: 22px;
}
.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--mist);
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-section { background: var(--bark); padding: 100px 0; }
.area-inner { text-align: center; }
.area-inner .section-label { justify-content: center; }
.area-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: none;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.area-tags span {
  padding: 9px 20px;
  border: 1px solid var(--border);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mist);
  transition: border-color 0.25s, color 0.25s;
}
.area-tags span:hover {
  border-color: var(--stone-dim);
  color: var(--stone-light);
}

/* ============================================================
   CONTACT + FORM
   ============================================================ */
.contact-section { background: var(--bark-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 88px;
  align-items: start;
}
.contact-section .section-title { margin-bottom: 28px; }
.contact-detail {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--mist);
  margin-bottom: 40px;
}
.contact-info p {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--mist);
}
.info-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  width: 70px;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { width: 100%; }
.form-group label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bark);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brass);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244,237,224,0.28);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8902A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: var(--bark-2); color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  align-self: flex-start;
  padding: 16px 40px;
  background: var(--brass);
  color: var(--bark);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--brass-hover); }

.form-success {
  padding: 56px 40px;
  border: 1px solid var(--border);
  text-align: center;
}
.form-success-mark {
  font-size: 32px;
  color: var(--brass);
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--stone-light);
}
.form-success p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mist);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bark);
  border-top: 1px solid var(--border);
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--stone);
  font-weight: 500;
  text-transform: uppercase;
}
.footer-copy {
  font-size: 12px;
  color: var(--mist);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--stone); }
a.footer-pageify {
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.25s;
}
a.footer-pageify:hover { color: var(--stone); }

.footer-demo {
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.08em;
  border: 1px solid rgba(184,144,42,0.35);
  border-radius: 4px;
  padding: 3px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── DEMO NOTICE (contact section) ─── */
.demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(184,144,42,0.08);
  border: 1px solid rgba(184,144,42,0.30);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--stone-light);
  line-height: 1.5;
  margin-bottom: 28px;
}
.demo-badge {
  flex-shrink: 0;
  background: var(--brass);
  color: var(--bark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 3px 8px;
  margin-top: 1px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 24px 32px; }
  .nav.scrolled { padding: 16px 32px; }
  .stat { padding: 0 48px; }
  .process-step:not(:first-child) { padding-left: 32px; }
  .process-step { padding-right: 32px; }
}

@media (max-width: 900px) {
  /* Nav: hide desktop links, show hamburger */
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .nav-menu { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,8,5,0.97);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 199;
    list-style: none;
  }
  .nav-links.open li { display: block; }
  .nav-links.open a {
    font-size: 1.5rem;
    letter-spacing: 0.22em;
    color: var(--stone-light);
  }
  .nav-links.open .nav-link-cta {
    display: block;
    padding: 14px 36px;
    background: var(--brass);
    color: var(--bark);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* Layout collapses */
  .intro-inner { flex-direction: column; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 0; }
  .stat { padding: 28px 40px; width: 50%; }
  .stat-divider { display: none; }
  .process-steps { grid-template-columns: 1fr; border-top: none; }
  .process-step {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 36px 0 !important;
  }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .section { padding: 88px 0; }
  .section-title { margin-bottom: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { padding: 20px 20px; }
  .nav.scrolled { padding: 14px 20px; }

  .hero-eyebrow { top: 26%; font-size: 10px; }
  .hero-title { top: 34%; font-size: clamp(3rem, 13vw, 5rem); }
  .hero-sub { top: 58%; font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .hero-detail { top: 68%; font-size: 0.88rem; }
  .hero-cta-text { top: 78%; }

  .craft-title { top: 32%; font-size: clamp(2.5rem, 11vw, 4.5rem); }
  .craft-sub { top: 56%; font-size: clamp(1.1rem, 4vw, 1.6rem); }
  .craft-detail { top: 68%; font-size: 0.88rem; }

  .stat { padding: 22px 24px; }
  .service-card { padding: 36px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; text-align: center; }
  .intro-strip { padding: 60px 0; }
  .section { padding: 72px 0; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 44px; }
  .form-group textarea { min-height: 110px; }
  .btn-brass,
  .btn-outline { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ─── LANDSCAPE ──────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .sticky { min-height: 100svh; }
  .hero-title { font-size: clamp(2.5rem, 7vw, 4rem); }
}

/* ─── TOUCH DEVICES ──────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .btn-brass,
  .btn-outline,
  .btn-submit { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-brass:hover { background: var(--brass); }
  .service-card:hover { background: var(--bark-2); }
  .project-card:hover .project-img { transform: none; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
