/* ==========================================================================
   M & S WATCH GALLERY — Variant 01: HONEST NEIGHBORHOOD SIGNAGE
   Design tokens, signage panels, numbered catalog, thick yellow rules.
   ========================================================================== */

:root {
  /* Palette — pulled directly from the storefront sign */
  --c-yellow:     #F4C430;   /* signage yellow — the dominant accent */
  --c-yellow-2:   #FFD84A;   /* hover/highlight */
  --c-ink:        #0F0F0F;   /* deep black — body text, signage blocks */
  --c-ink-2:      #1C1C1C;
  --c-cream:      #F6F1E7;   /* page background — storefront wall off-white */
  --c-cream-2:    #EFE7D6;
  --c-brass:      #A87C3B;   /* watch-mechanism flourish */
  --c-brass-2:    #C39651;
  --c-border:     rgba(15, 15, 15, 0.10);
  --c-border-2:   rgba(15, 15, 15, 0.18);

  /* Type */
  --f-display: "Bebas Neue", "Archivo Black", Impact, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "Space Mono", ui-monospace, "JetBrains Mono", monospace;

  /* Type scale (mobile-first; bumps at breakpoints) */
  --fs-xs:   13px;
  --fs-sm:   15px;
  --fs-base: 17px;
  --fs-md:   19px;
  --fs-lg:   22px;
  --fs-xl:   30px;
  --fs-2xl:  44px;
  --fs-3xl:  64px;
  --fs-4xl:  84px;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Layout */
  --maxw: 1280px;
  --gutter: 20px;
  --rule-thick: 8px;
}

@media (min-width: 760px) {
  :root {
    --fs-base: 18px;
    --fs-2xl: 64px;
    --fs-3xl: 96px;
    --fs-4xl: 128px;
    --gutter: 32px;
    --rule-thick: 12px;
  }
}

@media (min-width: 1100px) {
  :root {
    --fs-2xl: 72px;
    --fs-3xl: 120px;
    --fs-4xl: 168px;
    --gutter: 48px;
  }
}

/* ==========================================================================
   Reset-ish
   ========================================================================== */

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
}

::selection { background: var(--c-yellow); color: var(--c-ink); }

/* ==========================================================================
   Utility — the signage-style horizontal rule
   ========================================================================== */

.rule {
  height: var(--rule-thick);
  background: var(--c-yellow);
  width: 100%;
  position: relative;
}
.rule--bold {
  background: var(--c-yellow);
  box-shadow: inset 0 -2px 0 var(--c-ink);
}
.rule--thin {
  height: 2px;
  background: var(--c-ink);
  opacity: 0.85;
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand phone"
    "links links";
  align-items: center;
  gap: var(--sp-3);
  padding: 10px var(--gutter);
  background: var(--c-ink);
  color: var(--c-cream);
  border-bottom: 3px solid var(--c-yellow);
}

.nav__brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-cream);
}
.nav__logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}
.nav__wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--c-yellow);
}
.nav__line { display: block; }

.nav__links {
  grid-area: links;
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  border-top: 1px solid rgba(244, 196, 48, 0.22);
  padding-top: 8px;
}
.nav__links a {
  font-family: var(--f-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-decoration: none;
  color: var(--c-cream);
  position: relative;
  padding: 4px 0;
  transition: color 160ms ease;
}
.nav__links a:hover { color: var(--c-yellow); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__phone {
  grid-area: phone;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}
.nav__phone:hover { background: var(--c-yellow-2); transform: translateY(-1px); }
.nav__phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-ink);
  animation: pulse 2400ms ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

@media (min-width: 760px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand links phone";
    padding: 12px var(--gutter);
  }
  .nav__links {
    border-top: 0;
    padding-top: 0;
    gap: var(--sp-7);
  }
  .nav__logo { width: 44px; height: 44px; flex-basis: 44px; }
  .nav__wordmark { font-size: 26px; }
  .nav__phone { font-size: 14px; padding: 10px 18px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding: var(--sp-7) var(--gutter) var(--sp-7);
  max-width: var(--maxw);
  margin: 0 auto;
  animation: fade-up 700ms ease both;
}

@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.kicker {
  display: inline-block;
  background: var(--c-ink);
  color: var(--c-yellow);
  padding: 5px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker--alt {
  background: var(--c-yellow);
  color: var(--c-ink);
}

.hero__title {
  margin: 0 0 var(--sp-5);
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.005em;
  font-size: clamp(56px, 14vw, var(--fs-4xl));
  text-transform: uppercase;
  color: var(--c-ink);
}
.hero__line { display: block; }
.hero__line--accent {
  position: relative;
  display: inline-block;
  padding: 0 0.15em 0.05em;
  background: var(--c-yellow);
  color: var(--c-ink);
  box-shadow: inset 0 -6px 0 rgba(15, 15, 15, 0.16);
}

.hero__sub {
  max-width: 46ch;
  margin: 0 0 var(--sp-6);
  font-size: var(--fs-md);
  color: var(--c-ink);
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 2px solid var(--c-ink);
}
.hero__meta > div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-num {
  font-family: var(--f-display);
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1;
  color: var(--c-ink);
}
.hero__meta-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brass);
}

.hero__image {
  position: relative;
  margin: 0;
  border: 3px solid var(--c-ink);
  background: var(--c-ink);
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero__cap {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.05fr 1fr;
    align-items: end;
    gap: var(--sp-7);
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-8);
  }
  .hero__image img { aspect-ratio: 4 / 5; }
}
@media (min-width: 1100px) {
  .hero { padding-top: var(--sp-9); padding-bottom: var(--sp-9); gap: var(--sp-8); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--c-ink);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.btn--primary {
  background: var(--c-ink);
  color: var(--c-yellow);
}
.btn--primary:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
}
.btn--ghost:hover {
  background: var(--c-ink);
  color: var(--c-yellow);
  transform: translateY(-1px);
}
.btn--big {
  padding: 18px 28px;
  font-size: 16px;
}

/* ==========================================================================
   Section heads
   ========================================================================== */

.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--sp-7) var(--gutter) var(--sp-5);
}
.section-head--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brass);
  background: var(--c-cream-2);
  padding: 4px 10px;
  margin-bottom: var(--sp-4);
}

.section-title {
  margin: 0 0 var(--sp-4);
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.005em;
  font-size: clamp(40px, 9vw, var(--fs-3xl));
  text-transform: uppercase;
  color: var(--c-ink);
}

.section-lead {
  max-width: 55ch;
  margin: 0;
  font-size: var(--fs-md);
  color: var(--c-ink);
  line-height: 1.5;
}
.section-head--center .section-lead { margin: 0 auto; }

/* ==========================================================================
   SERVICES / CATALOG
   ========================================================================== */

.services {
  background: var(--c-cream);
}

.catalog {
  list-style: none;
  margin: var(--sp-5) auto 0;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  border-top: 2px solid var(--c-ink);
}

.catalog__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: var(--sp-3) var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border-2);
  position: relative;
  transition: background 200ms ease, padding-left 200ms ease;
}
.catalog__item:hover {
  background: var(--c-yellow);
  padding-left: var(--sp-3);
  padding-right: var(--sp-3);
}
.catalog__item:hover .catalog__num,
.catalog__item:hover .catalog__price { color: var(--c-ink); }

.catalog__num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-brass);
  letter-spacing: 0.05em;
  align-self: start;
  padding-top: 6px;
}

.catalog__body {
  min-width: 0;
}
.catalog__name {
  margin: 0 0 4px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 4.5vw, 32px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.catalog__desc {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--c-ink);
  opacity: 0.85;
  line-height: 1.5;
  max-width: 60ch;
}

.catalog__price {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-brass);
  white-space: nowrap;
  align-self: start;
  padding-top: 6px;
  text-align: right;
}
.catalog__price small { font-size: 12px; opacity: 0.7; margin-left: 1px; }

@media (min-width: 760px) {
  .catalog__item {
    grid-template-columns: 80px 1fr 120px;
    padding: var(--sp-6) 0;
    gap: var(--sp-5);
  }
  .catalog__num { font-size: 16px; }
  .catalog__price { font-size: 20px; }
}

.services__note {
  max-width: var(--maxw);
  margin: var(--sp-5) auto 0;
  padding: 0 var(--gutter) var(--sp-7);
  font-family: var(--f-body);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-brass);
}

/* ==========================================================================
   STORY
   ========================================================================== */

.story {
  background: var(--c-ink);
  color: var(--c-cream);
}
.story .section-eyebrow {
  background: rgba(244, 196, 48, 0.16);
  color: var(--c-yellow);
}
.story .section-title { color: var(--c-cream); }
.story .section-title::after {
  content: ".";
  color: var(--c-yellow);
}

.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--sp-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.story__col--text p {
  margin: 0 0 var(--sp-4);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--c-cream);
}
.story__col--text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 0 8px 0 0;
  color: var(--c-yellow);
}
.story__col--image {
  margin: 0;
  border: 3px solid var(--c-yellow);
  background: var(--c-ink-2);
  overflow: hidden;
}
.story__col--image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.story__col--image figcaption {
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .story__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-7);
    align-items: start;
  }
}

/* ==========================================================================
   PROOF
   ========================================================================== */

.proof {
  background: var(--c-cream-2);
  padding-bottom: var(--sp-8);
}

.proof__bars {
  list-style: none;
  margin: var(--sp-5) auto 0;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}
.proof__bar {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-cream);
  border: 2px solid var(--c-ink);
  position: relative;
  transition: transform 160ms ease, background 160ms ease;
}
.proof__bar:hover {
  background: var(--c-yellow);
  transform: translateX(4px);
}
.proof__num {
  font-family: var(--f-display);
  font-size: clamp(32px, 7vw, 52px);
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: 0.01em;
}
.proof__lbl {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-ink);
}

@media (min-width: 760px) {
  .proof__bars { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .proof__bar { padding: var(--sp-5) var(--sp-6); grid-template-columns: 120px 1fr; }
}
@media (min-width: 1100px) {
  .proof__bars { grid-template-columns: repeat(4, 1fr); }
  .proof__bar { grid-template-columns: 1fr; text-align: left; gap: var(--sp-3); }
  .proof__num { font-size: 56px; }
}

/* ==========================================================================
   VISIT
   ========================================================================== */

.visit {
  background: var(--c-cream);
}

.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--sp-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 880px) {
  .visit__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-7);
    align-items: start;
  }
}

.visit__col--info {
  display: grid;
  gap: var(--sp-5);
}

.info-block {
  border-left: 6px solid var(--c-yellow);
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-4);
}
.info-block__head {
  margin: 0 0 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brass);
}
.info-block__body {
  margin: 0;
  font-style: normal;
  font-size: var(--fs-md);
  line-height: 1.45;
  color: var(--c-ink);
  font-weight: 500;
}
.info-block__phone {
  font-family: var(--f-display);
  font-size: clamp(32px, 7vw, 44px);
  letter-spacing: 0.01em;
  color: var(--c-ink);
  text-decoration: none;
  transition: color 160ms ease;
  display: inline-block;
}
.info-block__phone:hover { color: var(--c-brass); }
.info-block__note {
  margin: 8px 0 0;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-brass);
  letter-spacing: 0.02em;
}
.info-block__note--warn {
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 8px 10px;
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
}

.hours {
  margin-top: var(--sp-3);
  border-collapse: collapse;
  width: 100%;
  max-width: 360px;
  font-family: var(--f-mono);
  font-size: 14px;
}
.hours th, .hours td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border-2);
}
.hours th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  width: 60px;
}
.hours td {
  font-weight: 500;
  color: var(--c-ink);
}
.hours .closed {
  color: var(--c-brass);
  font-style: italic;
}

.map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--c-ink);
  background: var(--c-ink);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}
.map-link {
  display: inline-block;
  margin-top: var(--sp-3);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--c-yellow);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.map-link:hover { color: var(--c-brass); border-bottom-color: var(--c-brass); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.finale {
  background: var(--c-yellow);
  color: var(--c-ink);
  position: relative;
  overflow: hidden;
}
.finale::before,
.finale::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--c-ink) 0 16px,
    var(--c-yellow) 16px 32px
  );
}
.finale::before { top: 0; }
.finale::after  { bottom: 0; }

.finale__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--sp-9) var(--gutter);
  text-align: center;
}

.finale__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-4);
  color: var(--c-ink);
}

.finale__title {
  margin: 0 0 var(--sp-5);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(64px, 16vw, 200px);
  line-height: 0.85;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--c-ink);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.25em;
}
.finale__title--alt {
  background: var(--c-ink);
  color: var(--c-yellow);
  padding: 0 0.18em 0.04em;
}

.finale__sub {
  max-width: 50ch;
  margin: 0 auto var(--sp-6);
  font-size: var(--fs-md);
  color: var(--c-ink);
}

.finale__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}
.finale .btn--primary { border-color: var(--c-ink); background: var(--c-ink); color: var(--c-yellow); }
.finale .btn--primary:hover { background: var(--c-cream); color: var(--c-ink); }
.finale .btn--ghost { border-color: var(--c-ink); color: var(--c-ink); }
.finale .btn--ghost:hover { background: var(--c-ink); color: var(--c-yellow); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--c-ink);
  color: var(--c-cream);
  border-top: var(--rule-thick) solid var(--c-yellow);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--sp-7) var(--gutter) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo { width: 44px; height: 44px; }
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--c-yellow);
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--c-yellow);
}
.footer__col p, .footer__col address {
  margin: 0;
  font-style: normal;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--c-cream);
}
.footer__col a {
  color: var(--c-cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 241, 231, 0.3);
  transition: color 160ms ease, border-color 160ms ease;
}
.footer__col a:hover { color: var(--c-yellow); border-bottom-color: var(--c-yellow); }
.footer__social { margin-top: 6px; }
.footer__social span { margin: 0 6px; opacity: 0.5; }
.footer__copy {
  grid-column: 1 / -1;
  border-top: 1px dashed rgba(246, 241, 231, 0.2);
  padding-top: var(--sp-4);
  margin: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(246, 241, 231, 0.6);
}

@media (min-width: 760px) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-6);
    align-items: start;
  }
}

/* ==========================================================================
   Small bits
   ========================================================================== */

::placeholder { color: rgba(15, 15, 15, 0.5); }
