/* ===== Tokens ===== */
:root {
  --sand: #FBF6EC;
  --sand-deep: #F3E7CE;
  --paper: #FFFDF8;
  --ink: #2C2620;
  --ink-soft: #6B5F52;
  --ink-faint: #9A8E7F;
  --line: rgba(44, 38, 32, .10);

  --teal-deep: #2C5560;
  --teal: #3C6E7C;
  --teal-mid: #5E97A8;
  --sky: #BBD9E6;

  --coral: #C1512E;
  --coral-soft: #E8956F;
  --gold: #F0C45A;
  --gold-deep: #B9852E;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(44, 38, 32, .07);
  --shadow-md: 0 14px 40px rgba(44, 38, 32, .12);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --nav-h: 68px;
  --announce-h: 40px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }

a { color: var(--coral); text-decoration-color: rgba(193, 81, 46, .35); text-underline-offset: .2em; }
a:hover { text-decoration-color: currentColor; }

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

:focus-visible { outline: 2.5px solid var(--teal-deep); outline-offset: 3px; border-radius: 4px; }

main section[id] { scroll-margin-top: calc(var(--nav-h) + 14px); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: var(--sand);
  padding: .7rem 1.1rem; border-radius: var(--radius-sm);
  z-index: 1000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(.98); }

.btn--primary { background: var(--coral); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #A8462A; box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); }

.btn--soft { background: var(--sand-deep); color: var(--ink); }
.btn--soft:hover { background: var(--sky); }

.btn--call { padding: .6rem 1.1rem; font-size: .88rem; background: var(--teal-deep); color: var(--paper); }
.btn--call:hover { background: #234249; }

.link { color: var(--coral); font-weight: 600; }

/* ===== Announcement bar ===== */
.announce {
  background: var(--teal-deep); color: var(--sand);
  font-size: .85rem; min-height: var(--announce-h);
}
.announce__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: .5rem; flex-wrap: wrap;
}
.announce__text { opacity: .92; }
.dot-sep { opacity: .6; margin-inline: .1em; }

.status { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); }
.status.is-open .status__dot { background: #7FBF6B; box-shadow: 0 0 0 3px rgba(127, 191, 107, .25); }
.status.is-open .status__text { color: #9FDE8C; }
.status.is-closed .status__dot { background: #E29A6E; }
.status.is-closed .status__text { color: #F0C1A0; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--nav-h);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand__mark { flex-shrink: 0; line-height: 0; }
.brand__type { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.brand__sub { font-size: .72rem; color: var(--ink-soft); letter-spacing: .01em; }

.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a:not(.btn) {
  color: var(--ink-soft); font-weight: 600; font-size: .93rem;
  text-decoration: none; position: relative; padding-block: .3rem;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--coral); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn).active::after { transform: scaleX(1); }
.nav__links a:not(.btn).active { color: var(--ink); }
.nav__cta { margin-left: .25rem; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
}
.nav__toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s var(--ease), opacity .2s var(--ease);
  }
  .nav__links.open { max-height: 560px; opacity: 1; }
  .nav__links a:not(.btn) { padding: 1rem clamp(1.25rem, 4vw, 2.5rem); border-bottom: 1px solid var(--line); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__cta { margin: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: min(880px, 92dvh); overflow: hidden; display: flex; align-items: center; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(30, 32, 30, .38) 0%, rgba(30, 32, 30, .12) 45%, rgba(30, 32, 30, .55) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 4rem 6rem; }
.hero__content { max-width: 620px; }
.hero__eyebrow { color: var(--sky); font-weight: 600; letter-spacing: .04em; margin-bottom: .9rem; font-size: .95rem; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--paper); }
.hero__title-2 { color: var(--gold); }
.hero__lede { color: rgba(255, 253, 248, .92); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 46ch; margin-top: 1.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__cta .btn--ghost { border-color: rgba(255, 253, 248, .55); color: var(--paper); }
.hero__cta .btn--ghost:hover { border-color: var(--paper); background: rgba(255, 253, 248, .12); }

.hero__wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.hero__wave svg { width: 100%; height: auto; display: block; }

@media (prefers-reduced-motion: no-preference) {
  .hero__content { animation: rise .7s var(--ease) both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ===== Quickbar ===== */
.quickbar { background: var(--sand-deep); padding-block: 2.5rem; }
.quickbar__grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.qcard {
  display: flex; align-items: flex-start; gap: .9rem;
  background: var(--paper); border-radius: var(--radius); padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.qcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.qcard__ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--sky); color: var(--teal-deep);
}
.qcard__body { display: flex; flex-direction: column; gap: .1rem; }
.qcard__label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--coral); }
.qcard__value { font-weight: 700; font-family: var(--font-display); }
.qcard__meta { font-size: .85rem; color: var(--ink-soft); }

/* ===== Section shell ===== */
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section__head { max-width: 640px; margin-bottom: 2.75rem; }
.section__head--center { max-width: 100%; text-align: center; margin-inline: auto; }
.eyebrow { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); margin-bottom: .6rem; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section__head--center .section__title { max-width: 34ch; margin-inline: auto; }
.section__note { color: var(--ink-soft); margin-top: .9rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Favorites bento ===== */
.bento {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "hero hero small1" "hero hero small2" "hero hero small3";
}
.feat {
  background: var(--paper); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.feat--hero { grid-area: hero; flex-direction: row; align-items: center; gap: 1.75rem; border-top-color: var(--coral-soft); }
.feat--donut { grid-area: small1; flex-direction: row; align-items: center; border-top-color: var(--gold); }
.feat--burger { grid-area: small2; flex-direction: row; align-items: center; border-top-color: var(--teal-mid); }
.feat--coffee { grid-area: small3; flex-direction: row; align-items: center; border-top-color: var(--teal-deep); }
.feat__art { flex-shrink: 0; display: grid; place-items: center; }
.feat--hero .feat__art { width: 110px; height: 110px; }
.feat h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.feat--hero h3 { font-size: 1.4rem; }
.feat p { color: var(--ink-soft); font-size: .95rem; }
.feat__tag {
  display: inline-block; margin-top: .8rem; font-size: .78rem; font-weight: 700;
  background: var(--sand-deep); color: var(--coral); padding: .3rem .75rem; border-radius: 999px;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; grid-template-areas: "hero" "small1" "small2" "small3"; }
  .feat--hero { flex-direction: column; align-items: flex-start; }
}

/* ===== Menu ===== */
.menu { background: var(--sand-deep); }
.menu__grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.mcard { background: var(--paper); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.mcard--feature { border: 1.5px solid var(--coral-soft); }
.mcard__title { font-size: 1.15rem; margin-bottom: .5rem; }
.mcard__lead { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1rem; }
.mlist li { display: flex; align-items: baseline; gap: .5rem; padding-block: .5rem; }
.mlist li:not(:last-child) { border-bottom: 1px dashed var(--line); }
.mlist__name { font-size: .95rem; }
.leader { flex: 1; }
.mlist__price { font-family: var(--font-display); font-weight: 700; color: var(--teal-deep); }

/* ===== Reviews ===== */
.ratings { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem; margin-top: 1.25rem; }
.rating { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--ink-soft); }
.rating__stars { color: var(--gold-deep); letter-spacing: .05em; }
.rating__num { font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.rating__count { color: var(--ink-faint); }

.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 2.5rem; }
.quote {
  background: var(--paper); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem;
}
.quote__stars { color: var(--gold-deep); font-size: .95rem; }
.quote blockquote { font-size: .95rem; color: var(--ink); line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-soft); }
.quote__name { font-weight: 700; color: var(--ink); }
.quote__src::before { content: "\2013"; margin-right: .5rem; }

.reviews__cta { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { display: flex; justify-content: center; }
.postcard {
  position: relative; background: var(--paper); padding: .6rem .6rem 1.4rem;
  border-radius: 6px; box-shadow: var(--shadow-md); transform: rotate(-2.5deg); max-width: 420px;
}
.postcard img { border-radius: 3px; }
.postcard__stamp {
  position: absolute; top: -18px; right: -18px; width: 74px; height: 74px; border-radius: 50%;
  background: var(--paper); border: 2px dashed var(--teal-deep); color: var(--teal-deep);
  display: grid; place-items: center; text-align: center; font-family: var(--font-display);
  font-weight: 700; font-size: .78rem; line-height: 1.2; transform: rotate(8deg); box-shadow: var(--shadow-sm);
}
.about__text p { color: var(--ink-soft); margin-top: 1rem; max-width: 55ch; }
.about__text p:first-of-type { margin-top: 1.25rem; }
.pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.pills li { background: var(--sand-deep); color: var(--ink); font-size: .85rem; font-weight: 600; padding: .5rem 1rem; border-radius: 999px; }

@media (max-width: 780px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
}

/* ===== Visit ===== */
.visit { background: var(--sand-deep); }
.visit__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.vrow:not(:last-child) { margin-bottom: 2.25rem; }
.vrow h3 { font-size: 1rem; margin-bottom: .6rem; }
.vrow p { color: var(--ink-soft); }
.vrow > .link { display: inline-block; margin-top: .6rem; }

.hours td, .hours th { padding-block: .55rem; font-size: .93rem; }
.hours tr:not(:last-child) { border-bottom: 1px solid var(--line); }
.hours th { text-align: left; font-weight: 600; color: var(--ink-soft); }
.hours td { text-align: right; font-weight: 700; }

.visit__order { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

.visit__map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.visit__maplink {
  position: absolute; right: .9rem; bottom: .9rem; background: var(--paper); color: var(--ink);
  font-size: .82rem; font-weight: 700; padding: .55rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.visit__maplink:hover { background: var(--sand-deep); }

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer { background: var(--teal-deep); color: rgba(251, 246, 236, .85); }
.footer__grid {
  display: grid; gap: 2.5rem; padding-block: 3.5rem 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}
.footer .brand__name, .footer .brand__sub { color: var(--sand); }
.footer .brand__sub { opacity: .75; }
.footer__tag { margin-top: 1rem; font-size: .9rem; max-width: 32ch; opacity: .85; }
.footer__col h4 { color: var(--sand); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .9rem; }
.footer__col p { margin-bottom: .5rem; font-size: .92rem; }
.footer__col a, .footer__links a { color: rgba(251, 246, 236, .85); text-decoration: none; }
.footer__col a:hover, .footer__links a:hover { color: var(--gold); }
.footer__links li { margin-bottom: .55rem; }

.footer__bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.5rem; border-top: 1px solid rgba(251, 246, 236, .15); font-size: .82rem;
}
.footer__top { color: rgba(251, 246, 236, .85); text-decoration: none; font-weight: 600; }
.footer__top:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===== Sub-page hero ===== */
.page-hero {
  position: relative; background: var(--teal-deep); color: var(--sand);
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem); overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero__title { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--paper); max-width: 20ch; }
.page-hero__lede { color: rgba(251, 246, 236, .88); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 58ch; margin-top: 1rem; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }
.page-hero .btn--ghost { border-color: rgba(255, 253, 248, .55); color: var(--paper); }
.page-hero .btn--ghost:hover { border-color: var(--paper); background: rgba(255, 253, 248, .12); }
.page-hero__wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }
.page-hero__wave svg { width: 100%; height: auto; display: block; }

/* ===== Breadcrumbs ===== */
.breadcrumbs { font-size: .82rem; margin-bottom: 1.75rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .4rem; color: rgba(251, 246, 236, .7); }
.breadcrumbs li + li::before { content: "/"; opacity: .45; }
.breadcrumbs a { color: rgba(251, 246, 236, .9); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold); }

/* ===== Cross-page links on cards ===== */
.feat__link, .mcard__more {
  display: inline-block; margin-top: .8rem;
  font-weight: 700; font-size: .9rem; color: var(--coral); text-decoration: none;
}
.feat__link:hover, .mcard__more:hover { text-decoration: underline; text-underline-offset: .2em; }
.feat__link::after, .mcard__more::after { content: " \2192"; }
.menu__cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ===== Blog ===== */
.post-list { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.post-card {
  background: var(--paper); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .6rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card h2 { font-size: 1.2rem; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--coral); }
.post-card p { color: var(--ink-soft); font-size: .95rem; }
.post-meta { font-size: .82rem; color: var(--ink-faint); }

.prose { max-width: 68ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.9rem; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.03rem; line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.3rem; }
.prose ul li + li { margin-top: .45rem; }
.prose strong { color: var(--ink); }
.prose .mlist li { color: var(--ink); font-size: .95rem; line-height: 1.55; margin-top: 0; }
.prose blockquote {
  border-left: 3px solid var(--gold); padding: .35rem 0 .35rem 1.15rem;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--ink);
}
.prose .post-meta { margin-top: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin-block: 2.2rem; }

/* ===== FAQ ===== */
.faq { max-width: 780px; }
.faq details {
  background: var(--paper); border-radius: var(--radius-sm);
  padding: 1.05rem 1.3rem; box-shadow: var(--shadow-sm);
}
.faq details + details { margin-top: .75rem; }
.faq summary { font-weight: 700; font-family: var(--font-display); cursor: pointer; }
.faq summary:hover { color: var(--teal-deep); }
.faq details p { margin-top: .65rem; color: var(--ink-soft); font-size: .95rem; }

/* ===== 404 ===== */
.error-hero { min-height: 55vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.error-hero .hero__cta { justify-content: center; }
.error-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.error-hero p { color: var(--ink-soft); margin-top: 1rem; max-width: 44ch; }

/* ===== Floating call button (mobile) ===== */
.fab-call {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--coral); color: var(--paper); padding: .9rem 1.2rem; border-radius: 999px;
  box-shadow: var(--shadow-md); text-decoration: none; font-weight: 700; font-size: .9rem;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.fab-call.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 761px) { .fab-call { display: none; } }

/* ===== Beach decorations (injected by js/main.js; decorative only) ===== */
.has-bdec { position: relative; }
.has-bdec > :not(.bdec) { position: relative; z-index: 2; }
.bdec {
  position: absolute; inset: 0;
  overflow: hidden;              /* edge-entry animations can never cause page overflow */
  pointer-events: none;
  z-index: 1;
}
.bdec__item { position: absolute; opacity: 0; }
.bdec__item svg { width: 100%; height: auto; }
.bdec__item--sm { width: 60px; }
.bdec__item--md { width: 86px; }
.bdec__item--lg { width: 118px; }
.bdec__item--frombottom { transform-origin: 50% 96%; }

.bdec__item.in { opacity: 1; }
.bdec__item--pop.in     { animation: bdec-pop .65s var(--ease) both; }
.bdec__item--scuttle.in { animation: bdec-scuttle .9s ease-out both; }
.bdec__item--roll.in    { animation: bdec-roll .9s cubic-bezier(.22, .9, .32, 1) both; }
.bdec__item--glide.in   { animation: bdec-glide 1s ease-out both; }
.bdec > .bdec__item:nth-child(2).in { animation-delay: .15s; }

@keyframes bdec-pop {
  0%   { opacity: 0; transform: scale(.3) translateY(14px) rotate(-8deg); }
  55%  { opacity: 1; }
  62%  { transform: scale(1.09) rotate(3deg); }
  82%  { transform: scale(.97) rotate(-1deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes bdec-scuttle {
  0%   { opacity: 0; transform: translateX(var(--bdec-dx, 110px)); }
  20%  { opacity: 1; transform: translateX(calc(var(--bdec-dx, 110px) * .7)) rotate(-4deg); }
  40%  { transform: translateX(calc(var(--bdec-dx, 110px) * .45)) rotate(4deg); }
  60%  { transform: translateX(calc(var(--bdec-dx, 110px) * .22)) rotate(-4deg); }
  80%  { transform: translateX(calc(var(--bdec-dx, 110px) * .07)) rotate(3deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes bdec-roll {
  0%   { opacity: 0; transform: translateX(var(--bdec-dx, -140px)) rotate(var(--bdec-rot, -540deg)); }
  15%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}
@keyframes bdec-glide {
  0%   { opacity: 0; transform: translate(var(--bdec-dx, 44px), 20px) rotate(6deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes bdec-sway {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .bdec__item--sway.in svg { animation: bdec-sway 6s ease-in-out .8s infinite; transform-origin: 50% 96%; }
}

@media (max-width: 760px) {
  .bdec__item--sm { width: 42px; }
  .bdec__item--md { width: 56px; }
  .bdec__item--lg { width: 74px; }
  .bdec__item[data-mobile="off"] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bdec__item { opacity: 1; animation: none !important; transform: none; }
  .bdec__item svg { animation: none !important; }
}
