/* ==========================================================================
   Ember & Sage — a fictional neighbourhood restaurant
   Static stylesheet. Self-hosted fonts, no external requests.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('fonts/karla-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #1b1310;
  --ink-soft:   #2b1f19;
  --ember:      #c2512a;
  --ember-hot:  #e07a3f;
  --ember-glow: #f2b25c;
  --sage:       #7d8e6a;
  --sage-deep:  #4d5c44;
  --sage-pale:  #b9c4a7;
  --cream:      #f6efe3;
  --cream-warm: #efe3d0;
  --paper:      #fbf7f0;
  --muted:      #7a6a5d;

  --display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --body: 'Karla', ui-sans-serif, system-ui, 'Helvetica Neue', Arial, sans-serif;

  --shell: 1180px;
  --pad: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .22vw, 1.09rem);
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -.015em; }
p { margin: 0 0 1.15em; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: .6rem; top: .6rem; z-index: 200;
  background: var(--ink); color: var(--cream); padding: .8rem 1.2rem;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
  width: auto; height: auto; overflow: visible;
  clip: auto; clip-path: none;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2.5px solid var(--ember-hot);
  outline-offset: 3px;
}

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }

/* --- shared bits -------------------------------------------------------- */
.eyebrow {
  font-family: var(--body);
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ember);
  margin: 0 0 1.1rem;
}
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section__title {
  font-size: clamp(2rem, 1.25rem + 2.8vw, 3.35rem);
  max-width: 19ch;
  margin-bottom: 1.5rem;
}
.section__lede {
  font-size: clamp(1.03rem, 1rem + .35vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
}
.section__head { margin-bottom: clamp(2.4rem, 5vw, 3.8rem); max-width: 64ch; }

.section--dark {
  background: var(--ink);
  color: var(--cream-warm);
}
.section--dark .section__lede,
.section--dark .hours__notes { color: #c4b3a3; }
.section--dark .eyebrow { color: var(--ember-glow); }

.section--ember {
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(224,122,63,.22), transparent 60%),
    radial-gradient(90% 80% at 90% 100%, rgba(125,142,106,.22), transparent 62%),
    #221710;
  color: var(--cream);
}
.section--ember .eyebrow { color: var(--ember-glow); }
.section--ember .section__lede { color: #cbbaa9; }

/* --- buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ember);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--cream);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform .28s var(--ease), background-color .28s var(--ease),
              box-shadow .28s var(--ease), color .28s var(--ease);
  box-shadow: 0 1px 0 rgba(0,0,0,.14);
}
.btn--ember:hover, .btn--ember:focus-visible {
  --btn-bg: var(--ember-hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -10px rgba(224,122,63,.85);
}
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
  opacity: .92;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(246,239,227,.12);
  transform: translateY(-2px);
  opacity: 1;
}
.btn--lg { padding: .95rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

/* --- header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(27,19,16,.34);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid rgba(246,239,227,.1);
}
.site-header.is-stuck {
  background: rgba(20,14,11,.95);
  box-shadow: 0 10px 34px -22px rgba(0,0,0,.95);
}
.header-inner {
  display: flex; align-items: center; gap: clamp(.6rem, 2vw, 2rem);
  min-height: 68px;
  color: var(--cream);
}
.wordmark {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none; color: var(--cream);
  margin-right: auto;
}
.wordmark__mark { color: var(--ember-hot); display: flex; }
.wordmark__text {
  font-family: var(--display);
  font-size: clamp(1.12rem, 1rem + .6vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.wordmark__text em { color: var(--ember-hot); font-style: italic; }

.site-nav { display: flex; gap: clamp(.9rem, 1.9vw, 1.9rem); }
.site-nav a {
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e4d7c7;
  padding: .35rem 0;
  position: relative;
  transition: color .25s var(--ease);
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--ember-hot);
  transition: right .3s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.header-cta { padding: .6rem 1.25rem; font-size: .8rem; }

@media (max-width: 860px) { .site-nav { display: none; } }

/* --- hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92svh, 900px);
  display: flex; align-items: flex-end;
  margin-top: -68px;
  padding-top: 68px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.03); } to { transform: scale(1.11); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(18,12,10,.96) 4%, rgba(18,12,10,.68) 34%, rgba(18,12,10,.34) 66%, rgba(18,12,10,.66)),
    radial-gradient(70% 50% at 50% 42%, rgba(224,122,63,.16), transparent 70%);
}
.hero__inner {
  padding-top: clamp(5rem, 16vh, 9rem);
  padding-bottom: clamp(3.5rem, 9vh, 6rem);
  color: var(--cream);
  position: relative;
}
.hero .eyebrow { color: var(--ember-glow); }
.hero__title {
  font-size: clamp(3.3rem, 1.4rem + 9.4vw, 8.4rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.035em;
  margin: 0 0 1.35rem;
  text-shadow: 0 18px 60px rgba(0,0,0,.6);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ember-glow);
  padding-inline: .06em;
}
.hero__line {
  font-size: clamp(1.08rem, .98rem + .72vw, 1.52rem);
  max-width: 34ch;
  color: #eaded0;
  line-height: 1.5;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: clamp(2.4rem, 6vh, 3.6rem); }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 3.2rem);
  margin: 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(246,239,227,.2);
  max-width: 44rem;
}
.hero__facts dt {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ember-glow); margin-bottom: .3rem; font-weight: 600;
}
.hero__facts dd { margin: 0; font-family: var(--display); font-size: 1.1rem; }
.hero__scroll {
  position: absolute; right: var(--pad); bottom: 1.6rem;
  color: #d8c7b5; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  display: flex; align-items: center; gap: .6rem;
}
.hero__scroll span {
  width: 1px; height: 38px; background: linear-gradient(to bottom, transparent, var(--ember-glow));
  animation: scrollPulse 2.6s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.25; transform: scaleY(.6); } 50% { opacity:1; transform: scaleY(1); } }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* --- story -------------------------------------------------------------- */
.story__grid {
  display: grid; gap: clamp(2.4rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
}
.story__text p { max-width: 64ch; }
.story__text strong { font-weight: 700; color: var(--ink); }
.story__sign {
  font-family: var(--display); font-style: italic; font-size: 1.3rem;
  color: var(--ember); margin-top: 2rem;
}
.story__figure { margin: 0; position: sticky; top: 100px; }
.story__figure img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 34px 60px -32px rgba(43,31,25,.75);
  filter: saturate(1.04);
}
.story__figure figcaption {
  margin-top: .95rem; font-size: .9rem; color: var(--muted);
  border-left: 2px solid var(--ember); padding-left: .85rem; line-height: 1.5;
}
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__figure { position: static; order: -1; }
}

/* --- menu --------------------------------------------------------------- */
.menu__grid {
  display: grid; gap: clamp(2.4rem, 4.5vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.menu__course-title {
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  color: var(--ember-glow);
  padding-bottom: .85rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(242,178,92,.3);
}
.menu__list { list-style: none; margin: 0; padding: 0; }
.dish { padding: .35rem 0 1.45rem; transition: transform .3s var(--ease); }
.dish:hover { transform: translateX(4px); }
.dish__row { display: flex; align-items: baseline; gap: .55rem; }
.dish__name {
  font-size: clamp(1.14rem, 1.05rem + .3vw, 1.32rem);
  font-weight: 600; color: var(--cream);
  transition: color .3s var(--ease);
}
.dish:hover .dish__name { color: var(--ember-glow); }
.dish__dots {
  flex: 1 1 auto; min-width: 1rem; height: 1px; translate: 0 -.2rem;
  background-image: radial-gradient(circle, rgba(242,178,92,.55) 1px, transparent 1.2px);
  background-size: 7px 2px; background-repeat: repeat-x;
}
.dish__price {
  font-family: var(--display); font-size: 1.12rem; font-weight: 600;
  color: var(--ember-glow); font-variant-numeric: tabular-nums;
}
.dish__desc { margin: .42rem 0 0; color: #b9a795; font-size: .96rem; max-width: 42ch; line-height: 1.6; }

.menu__note {
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
  padding: 1.35rem 1.6rem;
  border: 1px solid rgba(242,178,92,.26);
  border-radius: var(--radius);
  background: rgba(242,178,92,.06);
  color: #d3c2b0;
  font-size: .97rem;
  max-width: 78ch;
}
.menu__note span { color: var(--ember-glow); margin-right: .45rem; }
.menu__cta { margin-top: 2.2rem; }

/* --- gallery ------------------------------------------------------------ */
.gallery { background: linear-gradient(to bottom, var(--paper), var(--cream-warm)); }
.gallery__grid {
  display: grid; gap: clamp(.9rem, 1.8vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery__item {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 22px 40px -28px rgba(43,31,25,.8);
}
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 620px) { .gallery__item--wide { grid-column: span 1; } }
.gallery__item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.gallery__item--wide img { aspect-ratio: 16 / 9; }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem .95rem .85rem;
  background: linear-gradient(to top, rgba(18,12,10,.92), transparent);
  color: var(--cream);
  font-family: var(--display); font-size: .98rem; font-style: italic;
  opacity: 0; translate: 0 8px;
  transition: opacity .4s var(--ease), translate .4s var(--ease);
}
.gallery__item:hover img, .gallery__item:focus-within img { transform: scale(1.06); filter: brightness(1.05); }
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; translate: 0 0; }
@media (hover: none) {
  .gallery__item figcaption { opacity: 1; translate: 0 0; }
}

/* --- hours -------------------------------------------------------------- */
.hours__grid {
  display: grid; gap: clamp(2.2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
}
@media (max-width: 880px) { .hours__grid { grid-template-columns: 1fr; } }
.hours__notes { margin: 1.6rem 0 0; padding-left: 1.1rem; }
.hours__notes li { margin-bottom: .55rem; }
.hours__tablewrap {
  border: 1px solid rgba(246,239,227,.16);
  border-radius: var(--radius);
  background: rgba(246,239,227,.04);
  padding: clamp(.6rem, 2vw, 1.4rem);
  overflow-x: auto;
}
.hours__table { width: 100%; border-collapse: collapse; font-size: clamp(.92rem, .88rem + .2vw, 1rem); }
.hours__table th, .hours__table td { text-align: left; padding: .85rem .6rem; }
.hours__table thead th {
  font-family: var(--body); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ember-glow); font-weight: 600;
  border-bottom: 1px solid rgba(246,239,227,.2);
}
.hours__table tbody th {
  font-family: var(--display); font-size: 1.06rem; font-weight: 600; color: var(--cream);
}
.hours__table tbody td { color: #c9b8a7; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours__table tbody tr { border-bottom: 1px solid rgba(246,239,227,.09); transition: background-color .3s var(--ease); }
.hours__table tbody tr:last-child { border-bottom: 0; }
.hours__table tbody tr:hover { background: rgba(242,178,92,.07); }
.hours__table tr.is-closed th, .hours__table tr.is-closed td { color: #8a7768; }
.tag {
  display: inline-block; padding: .2rem .6rem; border-radius: 100px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.tag--closed { background: rgba(194,81,42,.2); color: var(--ember-hot); border: 1px solid rgba(224,122,63,.4); }

/* --- location ----------------------------------------------------------- */
.location { background: var(--cream-warm); }
.location__grid {
  display: grid; gap: clamp(2.2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
}
@media (max-width: 880px) { .location__grid { grid-template-columns: 1fr; } }
.location__address {
  font-family: var(--display); font-style: normal;
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.4rem);
  line-height: 1.55; margin-bottom: 2rem;
}
.location__meta { margin: 0; display: grid; gap: 1.15rem; }
.location__meta dt {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--sage-deep); margin-bottom: .2rem;
}
.location__meta dd { margin: 0; color: #5c4d42; font-size: .98rem; max-width: 48ch; }
.location__map { margin: 0; }
.location__map img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid rgba(43,31,25,.14);
  box-shadow: 0 30px 55px -34px rgba(43,31,25,.7);
  transition: transform .6s var(--ease);
}
.location__map:hover img { transform: rotate(-.35deg) scale(1.012); }
.location__map figcaption { margin-top: .9rem; font-size: .88rem; color: var(--muted); }

/* --- reserve ------------------------------------------------------------ */
.reserve__grid {
  display: grid; gap: clamp(2.2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 900px) { .reserve__grid { grid-template-columns: 1fr; } }
.reserve__points { list-style: none; margin: 1.8rem 0; padding: 0; }
.reserve__points li {
  padding-left: 1.7rem; position: relative; margin-bottom: .9rem;
  color: #d5c4b2; font-size: .99rem;
}
.reserve__points span { position: absolute; left: 0; top: 0; color: var(--ember-hot); }
.reserve__phone { color: #cbbaa9; font-size: .97rem; }
.reserve__phone strong { color: var(--ember-glow); font-family: var(--display); font-size: 1.1rem; }

.reserve__card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: clamp(1.4rem, 3.2vw, 2.4rem);
  box-shadow: 0 40px 70px -38px rgba(0,0,0,.85);
  border-top: 4px solid var(--ember);
}
.rform__title { font-size: clamp(1.5rem, 1.3rem + .8vw, 1.9rem); margin-bottom: .45rem; }
.rform__sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.7rem; }
.rform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 460px) { .rform__row { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.1rem; min-width: 0; }
.field label {
  display: block; font-size: .73rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft); margin-bottom: .45rem;
}
.field__optional { text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; max-width: 100%;
  padding: .72rem .85rem;
  border: 1px solid rgba(43,31,25,.24);
  border-radius: var(--radius);
  background: #fff;
  font-size: 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; font-family: var(--body); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(43,31,25,.45); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(224,122,63,.22);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #b8351f;
  background: #fff6f3;
}
.field__error {
  margin: .4rem 0 0; font-size: .84rem; color: #a72f1b; font-weight: 600;
  display: flex; gap: .35rem; align-items: baseline;
}
.field__error::before { content: '▲'; font-size: .6rem; }

.rform__summary {
  margin: 0 0 1rem; padding: .8rem 1rem;
  border: 1px solid rgba(183,53,31,.4);
  background: #fdf1ec;
  color: #a72f1b;
  border-radius: var(--radius);
  font-size: .92rem; font-weight: 600;
}
.rform__fineprint { margin: 1rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }

/* confirmation */
.confirm { text-align: left; animation: confirmIn .55s var(--ease) both; }
@keyframes confirmIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.confirm__mark { color: var(--sage-deep); margin-bottom: 1rem; }
.confirm__title { font-size: clamp(1.5rem, 1.3rem + .9vw, 2rem); margin-bottom: .7rem; }
.confirm__lede { color: var(--ink-soft); }
.confirm__details {
  margin: 1.5rem 0; padding: 1.2rem 1.3rem;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border-left: 3px solid var(--ember);
  display: grid; gap: .75rem;
}
.confirm__details > div {
  display: grid; grid-template-columns: 8.5rem minmax(0, 1fr); gap: .5rem; align-items: baseline;
}
@media (max-width: 420px) { .confirm__details > div { grid-template-columns: 1fr; gap: .1rem; } }
.confirm__details dt {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.confirm__details dd {
  margin: 0; font-family: var(--display); font-size: 1.1rem; font-weight: 600;
  overflow-wrap: anywhere;
}
.confirm__foot { font-size: .9rem; color: var(--muted); }

/* --- footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #c9b8a7; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid {
  display: grid; gap: clamp(1.8rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.wordmark--footer { margin: 0 0 .9rem; color: var(--cream); }
.footer__line { max-width: 34ch; font-size: .95rem; }
.footer__col h3 {
  font-family: var(--body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember-glow); margin-bottom: .9rem; font-weight: 700;
}
.footer__col address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: .5rem; }
.footer__list a {
  text-decoration: none; font-size: .95rem;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer__list a:hover, .footer__list a:focus-visible { color: var(--ember-glow); border-bottom-color: var(--ember-glow); }
.footer__base {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246,239,227,.12);
  font-size: .85rem;
  color: #9a8879;
}
.footer__base p { max-width: 90ch; }
.footer__base strong { color: var(--ember-glow); }
.footer__copy { margin: 0; }

/* --- scroll reveal ------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .reveal-off .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { animation: none; }
}
