/* =========================================================
   Bread & Butter — Woodville South
   editorial brunch / warm butter + espresso re-skin
   ========================================================= */

:root {
  --ink:       oklch(0.255 0.030 58);   /* espresso */
  --ink-soft:  oklch(0.37 0.028 58);
  --ink-muted: oklch(0.52 0.026 62);
  --paper:     oklch(0.962 0.020 84);   /* warm cream */
  --paper-2:   oklch(0.935 0.026 82);
  --paper-3:   oklch(0.90 0.030 80);
  --line:      oklch(0.845 0.026 80);
  --line-2:    oklch(0.72 0.034 74);
  --gold:      oklch(0.70 0.125 70);    /* butter gold accent */
  --gold-deep: oklch(0.585 0.120 64);
  --butter:    oklch(0.84 0.115 84);    /* light gold for dark sections */

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --italic:  "Fraunces", "Iowan Old Style", Georgia, serif;
  --body:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 4.5vw, 56px);
  --section-y: clamp(72px, 10vw, 140px);
  --max: 1320px;
  --max-text: 1120px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.italic {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.amp { font-family: var(--italic); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 12px 16px; border-radius: 8px; z-index: 100;
}
.skip:focus { left: 16px; top: 16px; }

/* ---------- nav (dark, gold-on-espresso identity) ---------- */

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px var(--gutter);
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklab, var(--ink) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--butter) 18%, transparent);
  color: var(--paper);
}
.nav__mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
}
.nav__mark-name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.nav__mark-name .amp { color: var(--butter); font-style: italic; font-weight: 500; }
.nav__mark-sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--butter) 75%, var(--paper));
}
.nav__links {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links a {
  text-decoration: none;
  padding: 8px 2px;
  position: relative;
  color: color-mix(in oklab, var(--paper) 88%, transparent);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 2px; right: 2px; bottom: 2px;
  height: 1px;
  background: var(--butter);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__call {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 11px 20px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.nav__call:hover { background: var(--butter); transform: translateY(-1px); }
@media (max-width: 880px) {
  .nav { grid-template-columns: auto auto; gap: 14px; }
  .nav__links { grid-column: 1 / -1; order: 3; gap: 22px; flex-wrap: wrap; justify-content: flex-start; }
}

/* ---------- eyebrows ---------- */

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 clamp(16px, 2vw, 24px);
  position: relative;
  padding-left: 24px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold);
}
.eyebrow--center {
  padding-left: 0;
  text-align: center;
  display: block;
}
.eyebrow--center::before {
  left: 50%; transform: translate(-50%, -50%);
  width: 40px;
  top: -8px;
}
.eyebrow--light { color: var(--butter); }
.eyebrow--light::before { background: var(--butter); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 64px) var(--gutter) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.hero__type {
  min-width: 0;
  padding-bottom: clamp(16px, 3vw, 40px);
}
.hero__issue {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 clamp(22px, 3vw, 36px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__issue::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
}

.hero__mast {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(74px, 12vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.hero__mast-l1, .hero__mast-l2 { display: block; }
.hero__mast-l2 { margin-left: 0.04em; }
.hero__mast .amp {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}
.hero__tag {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  margin: clamp(16px, 2vw, 26px) 0 clamp(26px, 3vw, 40px);
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}
.hero__tag .italic { color: var(--gold-deep); }
.hero__lede {
  max-width: 52ch;
  font-size: clamp(15px, 1.2vw, 17.5px);
  color: var(--ink-soft);
  margin: 0 0 clamp(24px, 3vw, 36px);
  line-height: 1.65;
}
.hero__cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--gold-deep); }
.btn--link {
  padding: 15px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.btn--line {
  color: var(--paper);
  border: 1px solid color-mix(in oklab, var(--paper) 40%, transparent);
  padding: 13px 22px;
}
.btn--line:hover { background: var(--butter); color: var(--ink); border-color: var(--butter); }

.hero__photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
  box-shadow: 0 28px 60px -36px color-mix(in oklab, var(--ink) 70%, transparent);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, color-mix(in oklab, var(--ink) 78%, transparent), transparent);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__strip {
  grid-column: 1 / -1;
  margin-top: clamp(40px, 5vw, 68px);
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--body);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__strip .dot-sep { color: var(--gold); }
.hero__strip-star { color: var(--gold-deep); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero__strip { justify-content: center; text-align: center; }
}

/* ---------- story (image + text) ---------- */

.story {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.story__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--paper-3);
  box-shadow: 0 28px 60px -40px color-mix(in oklab, var(--ink) 60%, transparent);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(28px, 4vw, 44px);
  max-width: 18ch;
}
.story__heading .italic { color: var(--gold-deep); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}
.story__para {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  line-height: 1.75;
}
.story__para:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 2.8em;
  float: left;
  line-height: 0.82;
  padding: 8px 12px 0 0;
  color: var(--gold-deep);
  font-weight: 600;
}
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; gap: 32px; }
  .story__media { aspect-ratio: 16 / 11; }
}

/* ---------- menu ---------- */

.menu {
  padding: var(--section-y) var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.menu__rule {
  margin: 0 auto clamp(24px, 3vw, 40px);
  width: clamp(180px, 26vw, 260px);
}
.menu__rule img {
  width: 100%; height: auto; display: block;
  border-radius: 6px;
  mix-blend-mode: multiply;
}
.menu__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 auto clamp(18px, 2vw, 24px);
  max-width: 16ch;
}
.menu__heading .italic { color: var(--gold-deep); }
.menu__lede {
  max-width: 52ch;
  margin: 0 auto clamp(40px, 5vw, 64px);
  font-size: 15px;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.menu__card {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3.5vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 32px 60px -48px color-mix(in oklab, var(--ink) 55%, transparent);
}
.menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 5vw, 64px);
}
.menu__item {
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
}
.menu__list .menu__item:nth-last-child(1),
.menu__list .menu__item:nth-last-child(2) { border-bottom: none; }
.menu__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}
.menu__desc {
  margin: 7px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 42ch;
}
.menu__tag {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-left: 10px;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
  vertical-align: middle;
  white-space: nowrap;
}
.menu__tag--v { color: var(--ink-muted); }
.menu__note {
  max-width: 56ch;
  margin: clamp(36px, 5vw, 52px) auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  padding-top: 28px;
  border-top: 1px dashed var(--line-2);
}
@media (max-width: 640px) {
  .menu__list { grid-template-columns: 1fr; }
  .menu__list .menu__item:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

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

.gallery {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.gallery__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.gallery__heading .italic { color: var(--gold-deep); }
.gallery__ig {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.gallery__ig:hover { background: var(--ink); color: var(--paper); }

.polaroids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 36px) clamp(12px, 2vw, 28px);
  align-items: start;
}
.poly {
  margin: 0;
  padding: 12px 12px 52px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -28px color-mix(in oklab, var(--ink) 45%, transparent),
              0 2px 0 0 color-mix(in oklab, var(--ink) 6%, transparent);
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.poly img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.poly figcaption {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-soft);
}
.poly--1 { transform: rotate(-2.2deg); }
.poly--2 { transform: rotate(1.6deg); margin-top: 20px; }
.poly--3 { transform: rotate(-1deg); margin-top: 10px; }
.poly--4 { transform: rotate(2.4deg); }
.poly:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 28px 50px -28px color-mix(in oklab, var(--ink) 55%, transparent);
  z-index: 2;
}
.gallery__note {
  margin: clamp(36px, 5vw, 52px) 0 0;
  text-align: center;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 16px;
}
@media (max-width: 900px) { .polaroids { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  .polaroids { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .poly { transform: none !important; }
}

/* ---------- visit (dark espresso) ---------- */

.visit {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  color: var(--paper);
}
.visit__inner { max-width: var(--max); margin: 0 auto; }
.visit__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(44px, 5vw, 64px);
}
.visit__heading .italic { color: var(--butter); }
.visit__grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.ticket {
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  padding: 20px 24px 22px;
  position: relative;
  box-shadow: 0 30px 60px -28px color-mix(in oklab, #000 60%, transparent);
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  background: var(--ink);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.ticket::before { top: -9px; }
.ticket::after { bottom: -9px; }
.ticket header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-2);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.ticket__no { color: var(--gold-deep); }
.ticket dl {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.ticket dl > div {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dotted color-mix(in oklab, var(--line-2) 65%, transparent);
}
.ticket dl > div:last-child { border-bottom: none; }
.ticket dt, .ticket dd { margin: 0; font-weight: 500; }
.ticket dd { color: var(--ink-soft); }
.ticket footer {
  margin-top: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding-top: 10px;
  border-top: 1px dashed var(--line-2);
}
.visit__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}
.visit__label {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--butter) 70%, var(--paper));
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 15%, transparent);
}
.visit__contact address {
  font-style: normal;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
}
.contact {
  list-style: none;
  padding: 0; margin: 0;
  font-family: var(--display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
}
.contact li { padding: 9px 0; border-bottom: 1px solid color-mix(in oklab, var(--paper) 12%, transparent); }
.contact li:last-child { border-bottom: none; }
.contact a {
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact a:hover { color: var(--butter); transform: translateX(4px); }

.visit__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(30px, 4vw, 48px);
}
.visit__shop {
  position: relative;
  margin: 0;
  border: 1px solid color-mix(in oklab, var(--paper) 14%, transparent);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-3);
}
.visit__shop img { width: 100%; height: 100%; object-fit: cover; }
.visit__shop figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, color-mix(in oklab, #000 70%, transparent), transparent);
  color: var(--paper);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__contact { grid-template-columns: 1fr; gap: 24px; }
  .visit__showcase { grid-template-columns: 1fr; }
}

/* ---------- footer (dark) ---------- */

.foot {
  padding: clamp(56px, 7vw, 92px) var(--gutter) clamp(40px, 5vw, 64px);
  background: color-mix(in oklab, var(--ink) 96%, #000);
  color: var(--paper);
  text-align: center;
  border-top: 1px solid color-mix(in oklab, var(--butter) 16%, transparent);
}
.foot__mark {
  display: inline-block;
  text-decoration: none;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.foot__mark .amp { color: var(--butter); font-style: italic; font-weight: 500; }
.foot__tag {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  margin: 10px 0 22px;
  color: color-mix(in oklab, var(--paper) 85%, transparent);
}
.foot__tag .italic { color: var(--butter); }
.foot__addr {
  margin: 0;
  font-size: 13.5px;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  letter-spacing: 0.04em;
}
.foot__addr a { text-decoration: none; font-weight: 600; color: var(--butter); }
.foot__addr a:hover { color: var(--paper); }
.foot__fine {
  margin: 22px 0 0;
  font-size: 11px;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.foot__ip {
  max-width: 78ch;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 12%, transparent);
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: color-mix(in oklab, var(--paper) 45%, transparent);
  text-align: center;
  font-family: var(--body);
  text-transform: none;
  font-weight: 400;
}
.foot__ip a {
  color: color-mix(in oklab, var(--butter) 80%, var(--paper));
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.foot__ip a:hover { color: var(--butter); }

/* ---------- reveals ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal-img] {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }
.is-in[data-reveal], .is-in[data-reveal-img] { opacity: 1; transform: none; }
.poly--1.is-in { transform: rotate(-2.2deg); }
.poly--2.is-in { transform: rotate(1.6deg); }
.poly--3.is-in { transform: rotate(-1deg); }
.poly--4.is-in { transform: rotate(2.4deg); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-img] {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .poly--1, .poly--2, .poly--3, .poly--4 { transform: none !important; }
}

/* ---------- corner note (JTN demo) ---------- */

.jtn-note {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 200;
  width: min(330px, calc(100vw - 32px));
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px 18px;
  box-shadow: 0 24px 60px -20px color-mix(in oklab, var(--ink) 60%, transparent);
  font-family: var(--body);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.jtn-note.is-in { transform: none; opacity: 1; }
.jtn-note__close {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  border: none; background: transparent;
  font-size: 22px; line-height: 1;
  color: var(--ink-muted); cursor: pointer;
  border-radius: 50%;
}
.jtn-note__close:hover { background: var(--paper-2); color: var(--ink); }
.jtn-note__hi {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
}
.jtn-note__body {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.jtn-note__call {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  transition: background 0.3s var(--ease);
}
.jtn-note__call:hover { background: var(--gold-deep); }
.jtn-note__site {
  display: block;
  text-align: center;
  margin-top: 9px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (prefers-reduced-motion: reduce) {
  .jtn-note { transition: none !important; }
}
