/* =====================================================================
   Olde Harbour Inn — Design System
   Historic Savannah riverfront boutique hotel, elevated.
   Built as a static demo; class structure maps 1:1 to Webflow symbols.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand palette */
  --ink:        #15262e;   /* deep harbour navy — primary dark */
  --ink-2:      #1d3540;   /* lifted navy */
  --brass:      #b0894e;   /* warm brass accent */
  --brass-dark: #936f37;
  --gold-line:  #c9a86a;
  --ivory:      #f7f2ea;   /* page background */
  --cream:      #fbf8f2;
  --stone:      #e7ddcd;   /* soft section fill */
  --stone-2:    #d9cdb8;
  --char:       #2c2c2c;   /* body text */
  --muted:      #6c6a64;   /* secondary text */
  --line:       #e0d7c8;   /* hairlines */
  --white:      #ffffff;

  /* Typography */
  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --sans:  "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow: 0 18px 50px -24px rgba(21, 38, 46, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(21, 38, 46, 0.5);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  color: var(--char);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
p { max-width: 68ch; }
.lead { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; color: #41423f; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass);
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--gold-line); }
.script { font-style: italic; }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 5vw, 5rem); }
.section--ink { background: var(--ink); color: #e9e3d7; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--stone { background: var(--stone); }
.section--cream { background: var(--cream); }
.center { text-align: center; }
.measure { max-width: 60ch; margin-inline: auto; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--media-right { direction: ltr; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: all .4s var(--ease); cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--brass); color: #fff; }
.btn--primary:hover { background: var(--brass-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.link-arrow { font-family: var(--sans); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--brass); display: inline-flex; align-items: center; gap: .5em; transition: gap .3s var(--ease); }
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 1.1rem;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-scrolled, .site-header.is-solid {
  background: var(--ivory); box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(0,0,0,.4); padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: .75rem; z-index: 2; }
.brand__mark { font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: var(--cream); transition: color .4s; }
.brand__mark b { display: block; font-size: .62rem; font-family: var(--sans); letter-spacing: .34em; text-transform: uppercase; font-weight: 600; margin-top: .25rem; opacity: .85; }
.is-scrolled .brand__mark, .is-solid .brand__mark { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__list { display: flex; gap: 1.35rem; align-items: center; }
.nav__link {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,.92); position: relative; padding-block: .4rem; transition: color .3s;
}
.is-scrolled .nav__link, .is-solid .nav__link { color: var(--char); }
.nav__link::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--brass); transition: width .3s var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width:100%; }
.nav__link[aria-current="page"] { color: var(--brass); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ivory); min-width: 220px; padding: .6rem; border-radius: var(--radius);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  border-top: 2px solid var(--brass);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: block; padding: .6rem .9rem; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--char); border-radius: var(--radius); transition: background .2s, color .2s; }
.drop a:hover { background: var(--stone); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 1rem; z-index: 2; }
.header-tel { font-family: var(--sans); font-weight: 600; letter-spacing: .05em; font-size: .85rem; color: rgba(255,255,255,.92); }
.is-scrolled .header-tel, .is-solid .header-tel { color: var(--ink); }
.header-cta .btn { padding: .7rem 1.3rem; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; z-index: 120; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: all .3s var(--ease); }
.is-scrolled .nav-toggle span, .is-solid .nav-toggle span { background: var(--ink); }
.nav-open .nav-toggle span { background: var(--ink); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav {
    position: fixed; inset: 0; background: var(--ivory); flex-direction: column; justify-content: center;
    gap: .25rem; transform: translateX(100%); transition: transform .45s var(--ease); padding: 5rem 2rem 2rem; overflow-y: auto;
  }
  .nav__list { flex-direction: column; gap: .25rem; width: 100%; max-width: 420px; }
  .nav__link { color: var(--ink); font-size: 1rem; padding: .7rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .has-drop { width: 100%; }
  .drop { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: transparent; border-top: 0; padding: 0 0 .5rem 1rem; min-width: 0; }
  .drop a { text-transform: none; }
  .nav-open .nav { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .header-tel { display: none; }
}

/* Small phones: keep brand, Book Now button, and hamburger from crowding. */
@media (max-width: 520px) {
  .site-header__inner { gap: .75rem; }
  .brand__mark { font-size: 1.25rem; }
  .brand__mark b { font-size: .56rem; letter-spacing: .26em; }
  .header-cta .btn { padding: .6rem 1rem; font-size: .72rem; letter-spacing: .12em; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: 92vh; min-height: 92svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media, .hero__media img, .hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Layered scrim: a flat base tint guarantees minimum contrast everywhere,
   the gradient deepens top + bottom where the eyebrow/headline/CTAs sit. */
.hero__media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,16,21,.55) 0%, rgba(8,16,21,.30) 42%, rgba(8,16,21,.88) 100%),
    rgba(8,16,21,.16);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(3.5rem, 7vw, 7rem); padding-top: 8rem; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero .lead { color: rgba(255,255,255,.94); max-width: 46ch; margin-top: 1.5rem; text-shadow: 0 1px 14px rgba(0,0,0,.42); }
.hero .eyebrow--light { text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero--page { min-height: 62vh; min-height: 62svh; }
.hero--page h1 { max-width: 22ch; }

/* Phone tuning: dynamic viewport so mobile browser chrome can't crop the hero,
   tighter top padding, and full-width stacked CTAs for easy thumb targets. */
@media (max-width: 600px) {
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero__inner { padding-top: 6rem; }
  .hero__actions { gap: .75rem; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* ---------- 8. Booking bar ---------- */
.bookbar { position: relative; z-index: 40; margin-top: -1px; background: var(--ink); }
.bookbar__inner { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0; align-items: stretch; }
.bookbar__field { display: flex; flex-direction: column; gap: .25rem; padding: 1.1rem 1.4rem; border-right: 1px solid rgba(255,255,255,.12); }
.bookbar__field label { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-line); font-weight: 600; }
.bookbar__field input, .bookbar__field select {
  background: transparent; border: 0; color: #fff; font-family: var(--sans); font-size: .95rem; padding: .15rem 0; width: 100%;
}
.bookbar__field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; }
.bookbar__field select { appearance: none; cursor: pointer; }
.bookbar__field select option { color: var(--ink); }
.bookbar__submit { border: 0; background: var(--brass); color: #fff; padding-inline: clamp(1.5rem, 3vw, 2.6rem); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; transition: background .3s; }
.bookbar__submit:hover { background: var(--brass-dark); }
@media (max-width: 900px) {
  .bookbar__inner { grid-template-columns: 1fr 1fr; }
  .bookbar__submit { grid-column: 1 / -1; padding-block: 1rem; }
  .bookbar__field:nth-child(2) { border-right: 0; }
  /* 16px floor stops iOS Safari from zooming in when a field is focused. */
  .bookbar__field input, .bookbar__field select { font-size: 16px; }
}

/* ---------- 9. Cards ---------- */
.card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card__meta { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.card__body h3 { font-size: 1.5rem; }
.card__foot { margin-top: auto; padding-top: .8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); }
.card__price { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.card__price b { font-size: 1.5rem; }

/* Feature list */
.featlist { display: grid; gap: .7rem; }
.featlist li { position: relative; padding-left: 1.6rem; color: #45463f; }
.featlist li::before { content:""; position:absolute; left:0; top:.62em; width:7px; height:7px; background: var(--brass); transform: rotate(45deg); }
.featlist--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px){ .featlist--2 { grid-template-columns: 1fr; } }

/* Stat / amenity row */
.amenity { display: flex; gap: 1rem; align-items: flex-start; }
.amenity__icon { flex: 0 0 auto; width: 42px; height: 42px; border: 1px solid var(--brass); color: var(--brass); border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; }
.amenity h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.amenity p { font-size: .95rem; color: var(--muted); }

/* Figures / framed image */
.figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 3 / 4; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure__cap { position: absolute; left: 1rem; bottom: 1rem; background: rgba(21,38,46,.82); color: #fff; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: .5rem .9rem; }

/* Quote / reviews */
.review { background: var(--cream); border: 1px solid var(--line); padding: 2rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.stars { color: var(--brass); letter-spacing: .15em; font-size: .95rem; }
.review blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; color: var(--ink); }
.review cite { font-style: normal; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: auto; }

/* Pills / badges */
.pill { display:inline-flex; align-items:center; gap:.5em; padding:.4rem .9rem; border:1px solid var(--gold-line); border-radius:100px; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--brass-dark); font-weight:600; }

/* ---------- 10. Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.gallery-grid figure { overflow: hidden; aspect-ratio: 1; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s; }
.gallery-grid figure:hover img { transform: scale(1.06); filter: brightness(1.05); }
@media (max-width: 900px){ .gallery-grid { grid-template-columns: repeat(2,1fr);} }
.lightbox { position: fixed; inset: 0; background: rgba(12,20,25,.94); z-index: 200; display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close, .lightbox__nav { position: absolute; background: none; border: 0; color: #fff; font-size: 2rem; padding: 1rem; }
.lightbox__close { top: 1rem; right: 1.5rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2.6rem; }
.lightbox__nav--prev { left: 1rem; } .lightbox__nav--next { right: 1rem; }

/* ---------- 11. Accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head { width: 100%; text-align: left; background: none; border: 0; padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.accordion__head:hover { color: var(--brass-dark); }
.accordion__icon { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.accordion__icon::before, .accordion__icon::after { content:""; position:absolute; top:50%; left:50%; width:14px; height:2px; background: var(--brass); transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.accordion__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { transform: translate(-50%,-50%) rotate(0); }
.accordion__panel { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.accordion__panel-inner { padding-bottom: 1.5rem; color: #44453f; }
.accordion__panel-inner a { color: var(--brass-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 12. Forms ---------- */
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); background: var(--white); padding: .85rem 1rem; font-family: var(--sans); font-size: 1rem; border-radius: var(--radius); color: var(--char); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); }
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- 13. Strip / CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band__media { position:absolute; inset:0; }
.cta-band__media img { width:100%; height:100%; object-fit: cover; }
.cta-band__media::after { content:""; position:absolute; inset:0; background: rgba(21,38,46,.78); }
.cta-band__inner { position: relative; z-index: 2; padding-block: clamp(4rem,8vw,7rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-inline: auto; }

/* Distances / list table */
.dist-list { columns: 2; column-gap: 3rem; }
@media (max-width: 680px){ .dist-list { columns: 1; } }
.dist-list li { break-inside: avoid; padding: .65rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; }
.dist-list b { color: var(--ink); font-weight: 600; }
.dist-list span { color: var(--brass-dark); font-size: .85rem; white-space: nowrap; }

/* prose */
.prose h2 { margin-top: 2.6rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: .6rem; font-size: 1.4rem; }
.prose p + p { margin-top: 1.1rem; }
.prose p, .prose li { color: #3f403a; }
.prose ul { display: grid; gap: .5rem; margin: 1rem 0; }
.prose ul li { padding-left: 1.5rem; position: relative; }
.prose ul li::before { content:""; position:absolute; left:0; top:.62em; width:6px; height:6px; background: var(--brass); transform: rotate(45deg); }
.prose blockquote { border-left: 3px solid var(--brass); padding-left: 1.4rem; margin: 1.8rem 0; font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--ink); }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--ink); color: #c9c4b8; padding-top: clamp(3.5rem,6vw,5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 920px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand__mark { color: var(--cream); }
.footer-col h4, .footer-col__h { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-line); margin-bottom: 1.1rem; font-weight: 600; line-height: 1.3; }
.footer-col a, .footer-col p { color: #c2bdb1; font-size: .92rem; display: block; padding: .28rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; color: var(--cream); transition: all .3s; font-size: .9rem; }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem; font-size: .8rem; color: #8f8b80; }
.footer-bottom a { color: #8f8b80; } .footer-bottom a:hover { color: var(--cream); }

/* ---------- 15. Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }

/* ---------- 16. Utilities ---------- */
.visually-hidden { position:absolute!important; 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:1rem; top:-100px; background: var(--brass); color:#fff; padding:.7rem 1.2rem; z-index:300; border-radius:var(--radius); transition: top .2s; }
.skip-link:focus { top:1rem; }
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.stack > * + * { margin-top: 1.2rem; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
:target { scroll-margin-top: 6rem; }
.divider { width: 56px; height: 2px; background: var(--brass); margin: 1.4rem 0; }
.center .divider { margin-inline: auto; }
