/* ============================================
   Nuvio Kitchens & Home — styles
   Modern & minimal, warm neutral palette
   ============================================ */

:root {
  --bg: #FBFAF6;
  --bg-alt: #F4F1EA;
  --surface: #FFFFFF;
  --ink: #1A1816;
  --ink-soft: #4A4641;
  --muted: #8A847C;
  --line: #E7E2D8;
  --accent: #C9774A;       /* warm clay */
  --accent-ink: #A45A30;
  --shadow-sm: 0 1px 2px rgba(26, 24, 22, 0.04), 0 2px 8px rgba(26, 24, 22, 0.04);
  --shadow-md: 0 6px 24px rgba(26, 24, 22, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-ink);
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow--light { color: #E6C2A7; }

.lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 2rem;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--ink);
  color: #fff;
}
.btn--solid:hover { background: #2c2925; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow:hover { color: var(--accent-ink); border-color: var(--accent-ink); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.brand__name { font-size: 1rem; }
.brand__name-light { color: var(--muted); font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }

.nav__cta { font-size: 0.9rem; padding: 0.65rem 1.25rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 24px 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav__mobile a { color: var(--ink-soft); padding: 0.4rem 0; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.is-open { display: flex; }
}

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

.hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(201, 119, 74, 0.07), transparent 70%),
    radial-gradient(50% 40% at 10% 90%, rgba(201, 119, 74, 0.04), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}

.hero__copy { max-width: 580px; }

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__meta {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}
.hero__meta li {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero__meta strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 2px;
}

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-left: auto;
}
.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.hero__card--main {
  width: 80%;
  aspect-ratio: 4 / 5;
  top: 0; right: 0;
  z-index: 2;
}
.hero__card--small {
  width: 42%;
  aspect-ratio: 1 / 1;
  z-index: 3;
}
.hero__card--a { bottom: 8%; left: 0; }
.hero__card--b { top: 12%; left: 6%; z-index: 1; opacity: 0.95; }

.hero__photo {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
/* Hero — main: refinished kitchen (Clay Banks) */
.hero__photo--kitchen {
  background-color: #d9c9b3;
  background-image:
    url("https://images.unsplash.com/photo-1770063817031-f3b98dff347f?w=1400&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* Hero — tile work (Tasha Kostyuk, white tile grid) */
.hero__photo--tile {
  background-color: #d6c7ad;
  background-image:
    url("https://images.unsplash.com/photo-1765556556784-7656ee0a1bd8?w=700&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* Hero — bathroom remodel (Lisa Anna, white bathroom w/ walk-in shower) */
.hero__photo--bath {
  background-color: #afbcc0;
  background-image:
    url("https://images.unsplash.com/photo-1723642610226-e4ab4626cbc2?w=700&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(26, 24, 22, 0.78);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin: 1rem auto 0; }
}

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

.trust {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.trust__line {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.trust__line span {
  display: inline-block;
  margin: 0 0.15rem;
  color: var(--ink);
  font-weight: 500;
}

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

.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d8d1c3;
}
.service__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink);
  margin-bottom: 1rem;
}
.service__icon svg { width: 26px; height: 26px; }
.service__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.service__desc { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

.service--featured {
  grid-column: span 3;
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.service--featured .service__icon {
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 52px; height: 52px;
}
.service--featured .service__title {
  font-size: 2rem;
  grid-column: 1;
}
.service--featured .service__desc {
  color: #e8e0d4;
  grid-column: 1;
  font-size: 1.05rem;
}
.service--featured .service__badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.service--featured .service__icon { grid-column: 1; grid-row: 1; }
.service--featured .link-arrow {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  grid-column: 1;
  justify-self: start;
  margin-top: 0.5rem;
}
.service--featured .link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.service__points {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}
.service__points li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #e8e0d4;
  font-size: 0.98rem;
}
.service__points li:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .service__points { grid-column: 1; grid-row: auto; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .service--featured { grid-column: span 1; padding: 1.75rem; }
}

/* ---------- Featured (refinish) ---------- */

.featured {
  background: var(--bg-alt);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.featured__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 4 / 3;
}
.featured__photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}
/* Before — older wood-toned kitchen (Callum Hill, near window) */
.featured__photo--before {
  background-color: #7d6a55;
  background-image:
    url("https://images.unsplash.com/photo-1590474504715-91ae491e4938?w=1000&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* After — refinished modern kitchen with marble (Franco Debartolo) */
.featured__photo--after {
  background-color: #e3d6bd;
  background-image:
    url("https://images.unsplash.com/photo-1772567732989-1ddce59230e4?w=1000&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.featured__label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-weight: 500;
}
.featured__label--light {
  background: rgba(26,24,22,0.85);
  color: #fff;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.checklist li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent-ink);
  border-bottom: 2px solid var(--accent-ink);
  transform: translateY(-70%) rotate(-45deg);
}
.checklist strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .featured__inner { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */

.process {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.process__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process__step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.process__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.process__step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.process__step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

@media (max-width: 900px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process__grid { grid-template-columns: 1fr; } }

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

.work {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.work__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.work__item--tall { grid-row: span 2; }
.work__item--wide { grid-column: span 2; }
.work__photo {
  flex: 1;
  background-size: cover;
  background-position: center;
}
/* Gallery 1 — kitchen refinish (Aaron Huber, white kitchen) */
.work__photo--1 {
  background-color: #d9c9a8;
  background-image:
    url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1000&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* Gallery 2 — bathroom remodel (Alex Tyson, large bathroom w/ shower) */
.work__photo--2 {
  background-color: #9aacb0;
  background-image:
    url("https://images.unsplash.com/photo-1721824320926-3d4f13d9b5e8?w=1000&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* Gallery 3 — tile backsplash (carolyn christine, white kitchen with backsplash) */
.work__photo--3 {
  background-color: #d8d2c4;
  background-image:
    url("https://images.unsplash.com/photo-1582667407868-07060cb5e61f?w=1000&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* Gallery 4 — custom stairs (Intricate Explorer, modern wood staircase) */
.work__photo--4 {
  background-color: #8e7556;
  background-image:
    url("https://images.unsplash.com/photo-1777997288465-c435b4d03133?w=1000&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
/* Gallery 5 — epoxy / polished floor (Craftsman Concrete Floors, polished floor warehouse) */
.work__photo--5 {
  background-color: #1f1d1b;
  background-image:
    url("https://images.unsplash.com/photo-1772300164438-f73307d3b645?w=1600&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.work__item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .work__item--tall, .work__item--wide { grid-column: auto; grid-row: auto; }
}

/* ---------- Reviews ---------- */

.reviews { padding: clamp(4rem, 8vw, 7rem) 0; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.review p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.review footer { font-size: 0.88rem; color: var(--muted); }
.review footer strong { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

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

.contact {
  background: var(--ink);
  color: #f0e9dc;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact .h2 { color: #fff; }
.contact__copy p { color: #c8bfb0; max-width: 44ch; }

.contact__details {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.contact__details li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.contact__details span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact__details a { color: #fff; }
.contact__details a:hover { color: var(--accent); }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8bfb0;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field select option { color: var(--ink); background: #fff; }

.contact__form .btn--solid {
  background: var(--accent);
  margin-top: 0.5rem;
}
.contact__form .btn--solid:hover { background: var(--accent-ink); }

.form__note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--accent);
  min-height: 1.2em;
}
.form__note.is-error { color: #f3a48f; }
.form__note.is-success { color: #b8e6c5; }

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .field-row { grid-template-columns: 1fr; }
}

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

.footer {
  background: var(--bg-alt);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.footer__brand p {
  color: var(--ink-soft);
  margin: 0.75rem 0 0;
  max-width: 28ch;
  font-size: 0.95rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.footer__cols ul { list-style: none; padding: 0; margin: 0; }
.footer__cols li { padding: 0.3rem 0; }
.footer__cols a { color: var(--ink-soft); font-size: 0.92rem; }
.footer__cols a:hover { color: var(--ink); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer__legal small { font-size: 0.82rem; }

@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Honeypot (anti-spam) ---------- */

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
