/* ==========================================================================
   Ute Bluff Lodge, Cabins & RV Park — utebluffsouthfork.com
   Built by MEAN Advertising
   ========================================================================== */

:root {
  /* Brand palette — drawn from the Ute Bluff tipi logo */
  --pine:        #1d3a2b;
  --pine-deep:   #14291e;
  --pine-soft:   #2f5741;
  --clay:        #b4472e;
  --clay-dark:   #8f3522;
  --sky:         #5b8fb0;
  --gold:        #c89b3c;
  --cream:       #f7f2e8;
  --cream-warm:  #efe6d5;
  --sand:        #e2d6c0;
  --ink:         #221f1b;
  --ink-soft:    #4d4740;
  --ink-mute:    #6f675d;
  --white:       #ffffff;
  --line:        #ddd2bd;

  --shadow-sm: 0 1px 2px rgba(34,31,27,.06), 0 2px 8px rgba(34,31,27,.06);
  --shadow-md: 0 4px 12px rgba(34,31,27,.08), 0 12px 32px rgba(34,31,27,.10);
  --shadow-lg: 0 8px 24px rgba(34,31,27,.10), 0 28px 60px rgba(34,31,27,.16);

  --radius:    14px;
  --radius-lg: 22px;

  --ff-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);
}

/* ---------- 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: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: 'SOFT' 20, 'WONK' 1;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .85rem;
}
.eyebrow--light { color: var(--gold); }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

/* ---------- layout ---------- */
.wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - (var(--gut) * 2), 820px); margin-inline: auto; }
.section { padding: clamp(60px, 9vw, 116px) 0; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.section--cream { background: var(--cream-warm); }
.section--pine { background: var(--pine); color: var(--cream); }
.section--pine .lede { color: rgba(247,242,232,.78); }
.section--pine h2 { color: var(--cream); }

.grid { display: grid; gap: clamp(22px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .92em 1.7em;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; border: 2px solid transparent; border-radius: 100px;
  cursor: pointer; transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--clay); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--clay-dark); box-shadow: var(--shadow-md); }
.btn--pine { background: var(--pine); color: var(--cream); }
.btn--pine:hover { background: var(--pine-deep); }
.btn--ghost { border-color: currentColor; color: var(--pine); }
.btn--ghost:hover { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--pine); }
.btn--light:hover { background: var(--white); }
.btn--outline-light { border-color: rgba(247,242,232,.5); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--pine); border-color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--pine-deep); color: rgba(247,242,232,.85);
  font-size: .83rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; justify-content: center; padding: 9px 0; text-align: center; }
.topbar a { color: var(--cream); text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.topbar__sep { opacity: .35; }
@media (max-width: 720px) { .topbar__sep { display: none; } }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247,242,232,.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.12rem; color: var(--pine); letter-spacing: -.01em; }
.brand__sub { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: .5em .8em; font-size: .92rem; font-weight: 500; text-decoration: none;
  color: var(--ink-soft); border-radius: 8px; transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--pine); background: rgba(29,58,43,.07); }
.nav a[aria-current="page"] { color: var(--pine); font-weight: 650; }
.header__cta { display: flex; align-items: center; gap: 10px; }

.navtoggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--white); border-radius: 11px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.navtoggle span { display: block; width: 20px; height: 2px; background: var(--pine); border-radius: 2px; position: relative; transition: background .2s; }
.navtoggle span::before, .navtoggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--pine); border-radius: 2px; transition: transform .25s ease;
}
.navtoggle span::before { top: -6px; } .navtoggle span::after { top: 6px; }
.navtoggle[aria-expanded="true"] span { background: transparent; }
.navtoggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .navtoggle { display: flex; }
  .header__cta .btn { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); padding: 96px 22px 32px;
    box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: .85em .7em; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 20px; border-bottom: 0; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(20,41,30,.5); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 89; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}
@media (min-width: 1041px) { .nav .btn { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(86vh, 780px); display: grid; align-items: end; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,41,30,.52) 0%, rgba(20,41,30,.22) 38%, rgba(20,41,30,.80) 100%);
}
.hero__body { padding: clamp(50px, 9vw, 104px) 0 clamp(42px, 6vw, 72px); color: var(--cream); max-width: 780px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 26px rgba(12,26,18,.45); }
.hero__tagline {
  font-family: var(--ff-display); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--gold); margin-bottom: .6rem; font-weight: 500;
}
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: rgba(247,242,232,.94); margin: 1.1rem 0 1.9rem; max-width: 620px; text-shadow: 0 1px 14px rgba(12,26,18,.5); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 2rem; font-size: .88rem; color: rgba(247,242,232,.85); }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }

/* page hero (interior pages) */
.pagehero { position: relative; isolation: isolate; display: grid; align-items: center; min-height: clamp(280px, 38vw, 420px); }
.pagehero__media { position: absolute; inset: 0; z-index: -2; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,41,30,.62), rgba(20,41,30,.72)); }
.pagehero__body { padding: clamp(48px, 7vw, 80px) 0; color: var(--cream); max-width: 720px; }
.pagehero h1 { color: var(--white); }
.pagehero p { color: rgba(247,242,232,.9); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-top: 1rem; }

/* ---------- cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(221,210,189,.7);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: clamp(22px, 3vw, 30px); display: flex; flex-direction: column; flex: 1; gap: .7rem; }
.card__body h3 { color: var(--pine); }
.card__body p { color: var(--ink-soft); font-size: .97rem; }
.card__link {
  margin-top: auto; padding-top: .6rem; font-weight: 600; font-size: .93rem;
  color: var(--clay); text-decoration: none; display: inline-flex; align-items: center; gap: .45em;
}
.card__link:hover { text-decoration: underline; text-underline-offset: 4px; }
.card__link::after { content: '\2192'; transition: transform .2s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

.tag {
  display: inline-block; padding: .3em .8em; font-size: .74rem; font-weight: 650;
  letter-spacing: .06em; text-transform: uppercase; border-radius: 100px;
  background: var(--cream-warm); color: var(--pine-soft); border: 1px solid var(--line);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }

/* ---------- unit (room/cabin) rows ---------- */
.unit {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px); align-items: center;
}
.unit:nth-child(even) .unit__media { order: 2; }
.unit__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.unit__media img { width: 100%; height: 100%; object-fit: cover; }
.unit__body h3 { color: var(--pine); margin-bottom: .2rem; }
.unit__no { font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--clay); margin-bottom: .5rem; }
.unit__sleeps { font-family: var(--ff-display); font-size: 1.05rem; color: var(--ink-soft); margin-bottom: .9rem; font-style: italic; }
.unit__body p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.unit + .unit { margin-top: clamp(48px, 7vw, 92px); }
@media (max-width: 860px) {
  .unit { grid-template-columns: 1fr; }
  .unit:nth-child(even) .unit__media { order: 0; }
}

/* ---------- feature list ---------- */
.features { list-style: none; padding: 0; display: grid; gap: .55rem .9rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.features li { display: flex; gap: .6em; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.features li::before {
  content: ''; flex-shrink: 0; width: 7px; height: 7px; margin-top: .55em;
  border-radius: 50%; background: var(--gold);
}

/* ---------- amenity tiles ---------- */
.amenity { text-align: center; padding: clamp(24px, 3vw, 34px) 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.amenity__icon { width: 44px; height: 44px; margin: 0 auto .9rem; color: var(--pine-soft); }
.amenity h3 { font-size: 1.08rem; color: var(--pine); margin-bottom: .4rem; }
.amenity p { font-size: .92rem; color: var(--ink-mute); }
.section--pine .amenity { background: rgba(247,242,232,.07); border-color: rgba(247,242,232,.16); }
.section--pine .amenity h3 { color: var(--cream); }
.section--pine .amenity p { color: rgba(247,242,232,.72); }
.section--pine .amenity__icon { color: var(--gold); }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(30px, 5vw, 68px); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media--portrait img { aspect-ratio: 4/5; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; }
.stat__num { font-family: var(--ff-display); font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--gold); line-height: 1; }
.stat__label { font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(247,242,232,.72); margin-top: .5rem; font-weight: 600; }

/* ---------- activities ---------- */
.act { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 30px); }
.act h3 { color: var(--pine); font-size: 1.22rem; margin-bottom: .55rem; }
.act p { font-size: .95rem; color: var(--ink-soft); }
.act__season { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); margin-bottom: .6rem; }

/* ---------- gallery ---------- */
.gallery { columns: 3 280px; column-gap: 16px; }
.gallery button {
  display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; background: none;
  cursor: zoom-in; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  break-inside: avoid;
}
.gallery img { width: 100%; transition: transform .45s ease, filter .3s ease; }
.gallery button:hover img { transform: scale(1.04); filter: brightness(1.05); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 3vmin;
  background: rgba(14,28,20,.94); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(247,242,232,.14); border: 1px solid rgba(247,242,232,.28);
  color: var(--cream); width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; line-height: 1; display: grid; place-items: center; transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(247,242,232,.28); }
.lightbox__close { top: 3vmin; right: 3vmin; }
.lightbox__nav--prev { left: 3vmin; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 3vmin; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 3vmin; left: 50%; transform: translateX(-50%); color: rgba(247,242,232,.7); font-size: .88rem; letter-spacing: .05em; }

/* ---------- callout / CTA band ---------- */
.cta-band { position: relative; isolation: isolate; text-align: center; color: var(--cream); }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,41,30,.78), rgba(20,41,30,.86)); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(247,242,232,.85); max-width: 560px; margin: 1rem auto 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- info panel ---------- */
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.panel h3 { color: var(--pine); margin-bottom: .8rem; }
.panel + .panel { margin-top: 22px; }

.dl { display: grid; gap: .1rem; }
.dl__row { display: grid; grid-template-columns: 150px 1fr; gap: 6px 20px; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.dl__row:last-child { border-bottom: 0; }
.dl__k { font-weight: 650; color: var(--pine); font-size: .93rem; }
.dl__v { color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 560px) { .dl__row { grid-template-columns: 1fr; } }

/* ---------- prose ---------- */
.prose h2 { margin: 2.4rem 0 .9rem; color: var(--pine); }
.prose h3 { margin: 1.9rem 0 .6rem; color: var(--pine); }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .45rem; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose > *:first-child { margin-top: 0; }

/* ---------- form ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .88rem; font-weight: 650; color: var(--pine); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; padding: .78em .95em; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--white); color: var(--ink); width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pine-soft); box-shadow: 0 0 0 3px rgba(47,87,65,.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.field__hint { font-size: .8rem; color: var(--ink-mute); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- map ---------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ---------- footer ---------- */
.footer { background: var(--pine-deep); color: rgba(247,242,232,.74); padding: clamp(52px, 7vw, 80px) 0 0; font-size: .94rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 48px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--ff-body); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer a { color: rgba(247,242,232,.8); text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__brand { display: flex; align-items: center; gap: 13px; margin-bottom: 1.1rem; }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer__brand strong { font-family: var(--ff-display); color: var(--cream); font-size: 1.1rem; display: block; line-height: 1.2; }
.footer__tag { font-family: var(--ff-display); font-style: italic; color: var(--gold); font-size: .95rem; }
.footer__bottom {
  border-top: 1px solid rgba(247,242,232,.14); padding: 22px 0 28px;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: .84rem; color: rgba(247,242,232,.55);
}

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  background: var(--pine); border-top: 1px solid rgba(247,242,232,.16);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; box-shadow: 0 -4px 18px rgba(20,41,30,.2);
}
.callbar .btn { flex: 1; padding: .8em 1em; font-size: .9rem; }
@media (max-width: 720px) { .callbar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- utilities ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--clay); color: #fff;
  padding: .8em 1.4em; z-index: 300; border-radius: 0 0 8px 0; text-decoration: none; font-weight: 600;
}
.skip:focus { left: 0; }
.notice {
  background: var(--cream-warm); border-left: 4px solid var(--gold);
  padding: 1.1rem 1.3rem; border-radius: 0 10px 10px 0; font-size: .95rem; color: var(--ink-soft);
}
.notice strong { color: var(--pine); }

/* honeypot — hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* form result states */
.notice--ok   { border-left-color: var(--pine-soft); background: #eef5ef; }
.notice--warn { border-left-color: var(--clay); background: #fbeee9; }
.notice a { color: var(--clay); }
