/* ==========================================================================
   Rich & Ridge Hair Gallery — design tokens
   Palette: near-black workshop charcoal + the barber chair's red as the
   single accent. Dark theme, locked page-wide (Section 4.11).
   ========================================================================== */

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-raised: #f4f2ee;
  --bg-card: #ffffff;
  --line: rgba(23, 20, 16, 0.12);
  --line-strong: rgba(23, 20, 16, 0.24);
  --ink: #18140f;
  --ink-dim: rgba(24, 20, 15, 0.68);
  --ink-faint: rgba(24, 20, 15, 0.48);
  --accent: #b3372f;
  --accent-bright: #a32e26;
  --accent-ink: #fff6f4;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, "Segoe UI", sans-serif;

  --nav-h: 76px;
  --container: 1280px;
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .wrap {
    padding-inline: 40px;
  }
}

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

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

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

p {
  margin: 0;
}

.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 60ch;
}

@media (min-width: 768px) {
  .lede {
    font-size: 18.5px;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), color 0.2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(23, 20, 16, 0.05);
}

.btn-ghost.on-photo {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.btn-ghost.on-photo:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(23, 20, 16, 0);
  transition: box-shadow 0.35s var(--ease);
}

.site-nav.is-scrolled {
  box-shadow: 0 8px 24px rgba(23, 20, 16, 0.06);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.brand-lockup img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding-block: 4px;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: right 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-actions .btn {
  padding: 11px 20px;
  font-size: 14px;
}

.nav-book {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: var(--radius);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle .icon-x {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-list {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-x {
  display: block;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-book {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 90;
  background: var(--bg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

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

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: -2;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(15, 13, 11, 0.55) 0%,
      rgba(15, 13, 11, 0.15) 30%,
      rgba(15, 13, 11, 0.35) 62%,
      rgba(15, 13, 11, 0.92) 100%
    ),
    linear-gradient(90deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.05) 55%);
}

.hero-content {
  position: relative;
  width: 100%;
  padding-bottom: 64px;
  padding-top: calc(var(--nav-h) + 24px);
}

.hero-strip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-strip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  flex: none;
}

.hero h1 {
  color: #fff;
  font-size: clamp(48px, 11vw, 108px);
  max-width: 15ch;
}

.hero-sub {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 18px;
  }
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- Section shell -------------------------------------------------- */

.section {
  position: relative;
  padding-block: 96px;
  scroll-margin-top: var(--nav-h);
}

.craft,
.visit {
  scroll-margin-top: var(--nav-h);
}

@media (min-width: 1024px) {
  .section {
    padding-block: 148px;
  }
}

.section-head {
  margin-bottom: 48px;
  max-width: 62ch;
}

.section-head h2 {
  font-size: clamp(34px, 5.4vw, 58px);
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .section-head {
    margin-bottom: 64px;
  }
}

/* ---- About (asymmetric split) --------------------------------------- */

.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 6vw;
  }
}

.about-copy .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.about-copy h2 {
  font-size: clamp(36px, 5.6vw, 56px);
  max-width: 12ch;
}

.about-copy .lede {
  margin-top: 24px;
}

.about-facts {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.about-fact dt {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent-bright);
  line-height: 1;
}

.about-fact dd {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

.about-cta {
  margin-top: 40px;
}

.about-media {
  position: relative;
}

.about-media .frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
}

/* Dark glass chip sitting on the photo, so it needs the light-on-dark pair —
   the page-level --ink tokens are for the off-white surfaces only. */
.about-media .frame-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

/* ---- Craft / horizontal pan ------------------------------------------ */

.craft {
  background: var(--bg-raised);
  padding-block: 96px 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .craft {
    padding-block: 148px 0;
  }
}

.craft .section-head {
  margin-bottom: 40px;
}

.craft-pin {
  position: relative;
}

.craft-track {
  display: flex;
  height: 78vh;
  /* dvh keeps the pinned track from jumping when mobile Safari collapses its
     address bar mid-scroll and vh silently changes. */
  height: 78dvh;
  min-height: 460px;
  max-height: 720px;
  will-change: transform;
}

.craft-panel {
  position: relative;
  flex: 0 0 min(88vw, 620px);
  height: 100%;
  margin-right: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.craft-panel:first-child {
  margin-left: 24px;
}

@media (min-width: 768px) {
  .craft-panel:first-child {
    margin-left: 40px;
  }
}

.craft-panel:last-child {
  margin-right: 40vw;
}

.craft-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-panel-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 26px 26px;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0) 0%,
    rgba(12, 10, 9, 0.78) 55%,
    rgba(12, 10, 9, 0.94) 100%
  );
}

.craft-panel-text .num {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
}

.craft-panel-text h3 {
  color: #fff;
  font-size: 26px;
  margin-top: 8px;
}

.craft-panel-text p {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34ch;
}

.craft-hint {
  padding: 18px 24px 0;
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .craft-hint {
    padding-left: 40px;
  }
}

/* ---- Services & prices ------------------------------------------------- */

.services {
  background: var(--bg-raised);
}

.services .section-head .lede {
  margin-top: 20px;
}

.price-grid {
  display: grid;
  gap: 40px 6vw;
}

@media (min-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px 6vw;
  }
}

.price-group-title {
  margin: 0;
}

.price-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 14px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  transition: border-color 0.2s var(--ease);
}

.price-toggle:hover {
  border-bottom-color: var(--accent-bright);
}

.price-chevron {
  display: inline-flex;
  flex: none;
  transition: transform 0.3s var(--ease);
}

.price-chevron svg {
  width: 16px;
  height: 16px;
}

.price-toggle[aria-expanded="false"] .price-chevron {
  transform: rotate(-90deg);
}

/* Collapsing only kicks in once JS marks the grid: without it every panel
   stays open, so the full price list is readable with scripts disabled. */
.price-grid.js-accordion .price-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.38s var(--ease);
}

.price-grid.js-accordion .price-group:not(.is-open) .price-panel {
  grid-template-rows: 0fr;
}

.price-grid.js-accordion .price-panel-inner {
  overflow: hidden;
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .price-grid.js-accordion .price-panel,
  .price-chevron {
    transition: none;
  }
}

.price-list {
  margin: 0;
  padding: 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.price-row dt {
  font-size: 15.5px;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
}

.price-meta {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

.price-row dd {
  margin: 0;
  flex: none;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}

.price-row dd.price-quote {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.price-note {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-faint);
  max-width: 44ch;
}

.services-cta {
  margin-top: 48px;
}

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

.reviews {
  background: var(--bg);
}

.reviews-head {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .reviews-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
}

.reviews-head-text h2 {
  font-size: clamp(32px, 5vw, 50px);
  margin-top: 10px;
  max-width: 14ch;
}

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  padding: 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.reviews-score:hover {
  border-color: var(--ink);
  background: rgba(23, 20, 16, 0.03);
}

.icon-google {
  display: inline-flex;
  flex: none;
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
}

.reviews-score-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 600;
}

.reviews-stars {
  color: var(--accent-bright);
  letter-spacing: 0.06em;
  font-size: 14px;
}

.reviews-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-inline: 24px;
  scrollbar-width: none;
}

.reviews-row::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .reviews-row {
    margin: 0 -40px;
    padding-inline: 40px;
  }
}

.review-card {
  flex: 0 0 82vw;
  max-width: 340px;
  scroll-snap-align: start;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card .reviews-stars {
  font-size: 15px;
}

.review-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  flex: 1;
}

.review-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}

.review-meta {
  font-size: 12.5px;
  color: var(--ink-faint);
}

/* ---- Visit (card over image) ----------------------------------------- */

.visit {
  position: relative;
  padding-block: 0;
  overflow: hidden;
}

.visit-media {
  position: relative;
  min-height: 640px;
  height: 92vh;
  max-height: 880px;
  overflow: hidden;
}

.visit-media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 68% 38%;
  will-change: transform;
}

.visit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0.5) 0%,
    rgba(12, 10, 9, 0.2) 40%,
    rgba(12, 10, 9, 0.55) 100%
  );
}

.visit-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  padding: 32px 26px;
}

@media (min-width: 640px) {
  .visit-card {
    left: 40px;
    right: auto;
    bottom: 48px;
    width: 420px;
    padding: 40px 36px;
  }
}

@media (min-width: 1024px) {
  .visit-card {
    left: 72px;
    bottom: 64px;
    width: 460px;
  }
}

.visit-card h2 {
  font-size: clamp(32px, 4vw, 42px);
  color: #fff;
}

.visit-card .lede {
  margin-top: 16px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
}

.visit-addr {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.visit-addr svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--accent-bright);
  margin-top: 2px;
}

.visit-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- CTA band --------------------------------------------------------- */

.cta-band {
  background: var(--bg);
  text-align: left;
}

.cta-band .wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 64px;
}

@media (min-width: 900px) {
  .cta-band .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.cta-band h2 {
  font-size: clamp(34px, 5vw, 54px);
  max-width: 14ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex: none;
}

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

.site-footer {
  background: var(--bg-raised);
  padding-block: 72px 32px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  gap: 44px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand .brand {
  font-size: 30px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 34ch;
  color: var(--ink-faint);
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.footer-social a svg {
  width: 19px;
  height: 19px;
}

.footer-social a:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: rgba(179, 55, 47, 0.1);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a,
.footer-col address {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---- Scroll-reveal (JS toggles .is-visible) ------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  animation: reveal-in 0.7s var(--ease) forwards;
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
