/* ============================================
   Fat Cats Groom House — styles

   Palette from the shop itself: bottle green walls, the gold on the cat,
   true black from the logo, aged paper. Big Shoulders Display for anything
   loud, Libre Franklin for everything you read.
   ============================================ */

:root {
  --green-900: #22301d;
  --green-700: #35472c;
  --green-500: #5e6f49;
  --paper: #f2ead8;
  --paper-2: #e6dac0;
  --paper-3: #d9cba9;
  --gold: #dbbd45;
  --black: #000000;
  --ink: #1f1a15;
  --ink-2: #5b5248;
  --white: #ffffff;

  --font-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --font-script: "Yellowtail", "Brush Script MT", "Segoe Script", cursive;
  --font-body: "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;

  --measure: 60ch;
  --wrap: 1120px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 6px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- type ---------- */

h1, h2, h3 { margin: 0; line-height: 1; }
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
}
h2 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(46px, 6.5vw, 78px);
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: .3em;
  padding-right: .15em;  /* room for the swash */
}
h3 { font-family: var(--font-body); font-weight: 800; font-size: 19px; line-height: 1.25; }
p { margin: 0 0 1em; max-width: var(--measure); }
.lede { font-size: clamp(18px, 2.2vw, 21px); line-height: 1.5; }
.muted { color: var(--ink-2); }

/* Section titles wipe in like a clipper pass, once, when they scroll into view. */
.js .wipe { clip-path: inset(-30% 100% -35% -4%); }
.js .wipe.is-in { clip-path: inset(-30% -6% -35% -4%); transition: clip-path .55s var(--ease); }
@media (prefers-reduced-motion: reduce) { .js .wipe { clip-path: none; transition: none; } }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 22px;
  border-radius: var(--radius); border: 2px solid transparent;
  font: inherit; font-weight: 800; font-size: 17px; text-decoration: none; cursor: pointer;
  transition: transform .15s var(--ease), background-color .15s, color .15s, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: #e6ca5c; border-color: #e6ca5c; }
.btn-outline { background: transparent; color: var(--paper); border-color: rgba(242, 234, 216, .55); }
.btn-outline:hover { border-color: var(--paper); }
.btn-ink { background: var(--black); color: var(--paper); border-color: var(--black); }
.btn-ink:hover { background: var(--green-900); border-color: var(--green-900); }
.btn-sm { min-height: 40px; padding: 8px 14px; font-size: 15px; }

/* ---------- header ---------- */

.site-header { position: sticky; top: 0; z-index: 40; background: var(--black); color: var(--paper); }
.site-header .wrap { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; }
.brand .cat { width: 42px; height: 42px; }
.brand .mark { height: 30px; width: auto; }
.site-nav { display: none; gap: 26px; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--paper); padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { border-bottom-color: var(--gold); }
.header-phone { display: none; text-decoration: none; font-weight: 600; font-size: 15px; color: var(--paper); }
@media (min-width: 760px) { .site-nav { display: flex; } .header-phone { display: inline; } }

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

.hero {
  position: relative;
  background: var(--green-900);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
/* duotone: the photo's luminosity over the green, then a gradient so the
   words stay readable on the left */
.hero-media {
  position: absolute; inset: 0; z-index: -1;
  background: url("img/cut-5.webp") 78% 30% / cover no-repeat;
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: luminosity;
  opacity: .55;
}
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(34, 48, 29, .96) 0%, rgba(34, 48, 29, .82) 40%, rgba(34, 48, 29, .25) 100%),
              linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 40%);
}
@media (max-width: 859px) {
  .hero-media { background-position: 70% 20%; opacity: .45; }
  .hero-shade { background: linear-gradient(180deg, rgba(34, 48, 29, .55) 0%, rgba(34, 48, 29, .92) 70%); }
}


.hero .wrap {
  position: relative;
  padding-block: clamp(48px, 9vw, 110px) clamp(56px, 8vw, 96px);
  min-height: min(82vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
}

.lockup { display: inline-flex; flex-direction: column; align-items: center; align-self: flex-start; gap: 4px; margin-bottom: clamp(18px, 3vw, 30px); }
.lockup .mark { width: clamp(170px, 20vw, 250px); height: auto; }
.lockup-sub {
  display: flex; align-items: center; gap: 12px; align-self: stretch;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.lockup-sub::before, .lockup-sub::after { content: ""; flex: 1; height: 2px; background: currentColor; min-width: 20px; }
.lockup-sub::after { margin-right: -.3em; }
.hero-title { position: relative; width: fit-content; max-width: 100%; margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(46px, 9.4vw, 136px);
  line-height: .9;
  color: var(--paper);
}
.hero h1 .line { display: block; }
.hero h1 .line:nth-child(2) { color: var(--gold); }

/* the razor sweeps left to right and the headline is shaved into view
   behind it. one moment, on load, then it's gone. */
.razor {
  position: absolute; top: 4%; left: 0;
  width: clamp(150px, 22vw, 300px); height: auto;
  transform: translate(-44%, -10%) rotate(-28deg);
  transform-origin: 44% 48%;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .5));
  pointer-events: none;
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .js .hero h1 { clip-path: inset(-10% 100% -10% -6%); animation: shave 1.15s cubic-bezier(.45, 0, .2, 1) .35s forwards; }
  .js .razor { animation: sweep 1.15s cubic-bezier(.45, 0, .2, 1) .35s forwards, razor-out .5s ease 1.55s forwards; }
  .js .lockup { animation: rise .6s var(--ease) both; }
  .js .hero-sub, .js .hero-actions, .js .open-state, .js .rating { animation: rise .6s var(--ease) both; }
  .js .hero-sub { animation-delay: 1.2s; } .js .hero-actions { animation-delay: 1.3s; }
  .js .open-state { animation-delay: 1.4s; } .js .rating { animation-delay: 1.45s; }
  .js .hero-cat { animation: stamp .5s cubic-bezier(.2, 1.4, .4, 1) 1.5s both; }
}
@keyframes shave { to { clip-path: inset(-10% -6% -10% -6%); } }
@keyframes sweep { from { opacity: 1; left: 0; } to { opacity: 1; left: 100%; } }
@keyframes razor-out { to { opacity: 0; transform: translate(-44%, -10%) rotate(-28deg) translateY(-24px); } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes stamp { from { opacity: 0; transform: rotate(-8deg) scale(1.4); } to { opacity: 1; transform: rotate(-8deg) scale(1); } }

.hero-sub { font-size: clamp(17px, 2vw, 20px); max-width: 52ch; margin-bottom: 26px; color: rgba(242, 234, 216, .92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.open-state { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; margin: 0; }
.open-state::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--paper-3); box-shadow: 0 0 0 3px rgba(242, 234, 216, .18); }
.open-state[data-open="true"]::before { background: #8fd18a; box-shadow: 0 0 0 3px rgba(143, 209, 138, .25); }

.rating { margin: 8px 0 0; font-size: 15px; }
.rating a { color: rgba(242, 234, 216, .85); text-decoration: none; }
.rating a:hover { color: var(--paper); text-decoration: underline; }
.rating .stars { color: var(--gold); letter-spacing: 2px; margin-right: 6px; }

/* the cat: a stamp in the corner, not the whole show */
.hero-cat {
  position: absolute; right: clamp(8px, 3vw, 40px); bottom: clamp(12px, 3vw, 36px);
  width: clamp(96px, 14vw, 190px);
  transform: rotate(-8deg);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .5));
  z-index: 1;
}

/* ---------- sections ---------- */

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(36px, 5vw, 60px); }

/* ---------- next openings ---------- */

.openings { background: var(--paper); border-bottom: 1px solid var(--paper-3); }
.openings-card { border-top: 6px solid var(--black); padding-top: 22px; }
.openings-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; margin-bottom: 14px; }
.openings-head h2 { font-size: clamp(38px, 4.5vw, 52px); margin: 0; }
.openings-head .muted { font-size: 15px; }

.lanes { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 12px; scrollbar-width: none; }
.lanes::-webkit-scrollbar { display: none; }
.lane-tab {
  flex: none; min-height: 40px; padding: 6px 14px;
  border: 2px solid var(--paper-3); border-radius: 999px; background: var(--white);
  font: inherit; font-weight: 700; font-size: 15px; color: var(--ink); cursor: pointer; white-space: nowrap;
}
.lane-tab[aria-selected="true"] { background: var(--black); color: var(--paper); border-color: var(--black); }
.lane-tab:hover:not([aria-selected="true"]) { border-color: var(--ink); }

.slot-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 14px; padding: 0; }
.slot {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-width: 132px; padding: 10px 14px;
  background: var(--white); border: 2px solid var(--paper-3); border-radius: var(--radius);
  font: inherit; color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color .15s, transform .15s var(--ease);
}
.slot:hover { border-color: var(--black); transform: translateY(-1px); }
.slot strong { font-weight: 800; font-size: 17px; }
.slot small { font-size: 13.5px; color: var(--ink-2); }
.slot-empty { padding: 14px 16px; background: var(--paper-2); border-radius: var(--radius); font-size: 15px; }

.sample-note { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; margin: 0; }
.sample-note .tag { display: inline-block; padding: 2px 8px; border-radius: 999px; background: var(--paper-2); color: var(--ink); font-weight: 700; font-size: 12px; }

/* ---------- price board ---------- */

.board {
  background: var(--black); color: var(--paper);
  border-radius: 10px; padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.board h2 { color: var(--gold); }
.board-grid { display: grid; gap: 28px 48px; }
@media (min-width: 760px) { .board-grid { grid-template-columns: 1fr 1fr; } }
.board h3 { color: var(--paper); font-size: 15px; letter-spacing: .02em; border-bottom: 1px solid rgba(242, 234, 216, .25); padding-bottom: 8px; margin: 0 0 6px; }
.menu { list-style: none; margin: 0; padding: 0; }
.menu li { display: grid; grid-template-columns: auto 1fr auto auto; align-items: baseline; gap: 10px; padding: 9px 0; }
.menu .name { font-weight: 600; }
.menu .name small { display: block; font-weight: 400; font-size: 13.5px; color: rgba(242, 234, 216, .7); }
.menu .lead { border-bottom: 2px dotted rgba(219, 189, 69, .55); transform: translateY(-5px); }
.menu .price { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--gold); }
.menu .book { background: none; border: 0; padding: 4px 0 4px 6px; color: var(--paper); font: inherit; font-weight: 700; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.menu .book:hover { color: var(--gold); }
.board-foot { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(242, 234, 216, .25); display: grid; gap: 12px 32px; font-size: 15px; }
.board-foot p { margin: 0; max-width: none; }
.board-foot strong { color: var(--gold); }
@media (min-width: 760px) { .board-foot { grid-template-columns: 1fr 1fr; } }

/* ---------- crew ---------- */

.crew-intro { display: grid; gap: 8px 40px; align-items: end; margin-bottom: 28px; }
@media (min-width: 860px) { .crew-intro { grid-template-columns: auto 1fr; } .crew-intro .lede { margin: 0 0 .5em; } }

.crew-grid { display: grid; gap: 14px; list-style: none; margin: 0 0 28px; padding: 0; }
@media (min-width: 560px) { .crew-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .crew-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.crew-card {
  display: grid; grid-template-columns: 84px 1fr; grid-template-rows: auto auto; gap: 4px 16px;
  padding: 18px; background: var(--white); border: 2px solid var(--paper-3); border-radius: 12px;
}
.crew-card .headshot {
  grid-row: 1 / 3; width: 84px; height: 84px; border-radius: 50%; object-fit: cover; background: var(--paper-2);
}
.crew-card .headshot.placeholder { object-fit: contain; padding: 14px; opacity: .55; }
.crew-card .crew-name { font-family: var(--font-script); font-weight: 400; font-size: 34px; line-height: 1; padding-right: .15em; }
.crew-card .role { display: inline-block; align-self: start; justify-self: start; margin-top: 2px; padding: 2px 8px; border-radius: 999px; background: var(--paper-2); font-size: 12.5px; font-weight: 800; }
.crew-card .spec { grid-column: 1 / -1; margin: 10px 0 8px; font-size: 15px; color: var(--ink-2); line-height: 1.45; }
.crew-card .ig { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 6px; width: fit-content; font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--ink); margin-bottom: 12px; }
.crew-card .ig svg { width: 16px; height: 16px; flex: none; }
.crew-card .ig:hover { text-decoration: underline; }
.crew-card .btn { grid-column: 1 / -1; width: 100%; }

.team-photo { border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.team-photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 30%; }

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

.gallery { background: var(--black); color: var(--paper); }
.gallery h2 { color: var(--gold); }
.gallery .lede { color: rgba(242, 234, 216, .8); }
.cuts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; list-style: none; margin: 0; padding: 0; }
.cuts img { width: 100%; aspect-ratio: 1; object-fit: cover; }
@media (min-width: 640px) { .cuts { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .cuts { grid-template-columns: repeat(4, 1fr); } }
/* a literal fade: grey and dark until it scrolls into the chair */
@media (prefers-reduced-motion: no-preference) {
  .js .cuts img { filter: grayscale(1) brightness(.45); transition: filter .7s var(--ease); }
  .js .cuts li.is-in img { filter: none; }
}
.gallery-foot { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; }
.gallery-foot a { color: var(--paper); font-weight: 600; }

/* ---------- about ---------- */

.about-grid { display: grid; gap: 28px; }
@media (min-width: 860px) { .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 56px; align-items: center; } }
.about-cat { width: min(70%, 320px); margin-inline: auto; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .25)); }
.product-card { display: flex; align-items: center; gap: 18px; padding: 18px 20px; margin-top: 8px; background: var(--white); border: 2px solid var(--paper-3); border-radius: 12px; max-width: 520px; }
.product-card img { width: 84px; flex: none; }
.product-card p { margin: 0; font-size: 15.5px; }
.product-card strong { display: block; font-size: 17px; margin-bottom: 4px; }

/* ---------- before you book ---------- */

.policy { background: var(--green-900); color: var(--paper); }
.policy h2 { color: var(--gold); }
.policy-grid { display: grid; gap: 32px; }
@media (min-width: 860px) { .policy-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; } }
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.steps li::before { content: counter(step); font-family: var(--font-display); font-weight: 900; font-size: 44px; line-height: .9; color: var(--gold); }
.steps strong { display: block; margin-bottom: 2px; }
.steps p { margin: 0; max-width: none; color: rgba(242, 234, 216, .85); font-size: 15.5px; }
.policy aside { border-left: 4px solid var(--gold); padding-left: 20px; }
.policy aside h3 { color: var(--paper); margin-bottom: 8px; }
.policy aside p { color: rgba(242, 234, 216, .85); font-size: 15.5px; }

/* ---------- find us ---------- */

.find-grid { display: grid; gap: 28px; }
@media (min-width: 860px) { .find-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 48px; align-items: start; } }
.address { font-style: normal; font-size: 18px; line-height: 1.5; margin-bottom: 16px; }
.address a { text-decoration: none; font-weight: 700; }
.address a:hover { text-decoration: underline; }
.hours { width: 100%; max-width: 380px; border-collapse: collapse; margin: 18px 0 22px; }
.hours th, .hours td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--paper-3); font-weight: 400; }
.hours th { font-weight: 700; padding-right: 20px; width: 50%; }
.hours tr.today th, .hours tr.today td { font-weight: 800; }
.hours tr.today th::after { content: "today"; display: inline-block; margin-left: 8px; padding: 1px 7px; border-radius: 999px; background: var(--gold); color: var(--black); font-size: 11.5px; font-weight: 800; vertical-align: middle; }
.hours .closed { color: var(--ink-2); }
.map { border-radius: 12px; overflow: hidden; background: var(--paper-2); aspect-ratio: 4 / 3; max-width: 100%; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.find-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- footer ---------- */

.site-footer { background: var(--black); color: var(--paper); padding-block: 40px 120px; font-size: 15px; }
@media (min-width: 760px) { .site-footer { padding-bottom: 40px; } }
.site-footer .wrap { display: grid; gap: 22px; }
@media (min-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr auto; align-items: center; } }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand .mark { width: 150px; height: auto; margin-bottom: 4px; }
.footer-brand span { color: rgba(242, 234, 216, .75); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--paper); text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.design-credit { grid-column: 1 / -1; color: rgba(242, 234, 216, .6); font-size: 13.5px; }
.design-credit a { color: rgba(242, 234, 216, .85); }

/* ---------- sticky mobile book bar ---------- */

.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  display: flex; gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.book-bar .btn-gold { flex: 1; }
.book-bar .btn-outline { flex: none; width: 52px; padding: 0; }
@media (min-width: 760px) { .book-bar { display: none; } }

/* ---------- booking drawer ---------- */

.drawer-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(0, 0, 0, .6); opacity: 0; transition: opacity .25s; }
.drawer-backdrop[hidden] { display: none; }
.drawer-backdrop.is-open { opacity: 1; }
.drawer {
  position: fixed; z-index: 61; inset: 0;
  display: flex; flex-direction: column;
  background: var(--paper); color: var(--ink);
  transform: translateY(100%); transition: transform .32s var(--ease); will-change: transform;
}
.drawer[hidden] { display: none; }
.drawer.is-open { transform: none; }
@media (min-width: 760px) {
  .drawer { inset: 0 0 0 auto; width: min(520px, 100%); transform: translateX(100%); box-shadow: -20px 0 60px rgba(0, 0, 0, .35); }
}
@media (prefers-reduced-motion: reduce) { .drawer, .drawer-backdrop { transition: none; } }
.drawer-head { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--black); color: var(--paper); flex: none; }
.drawer-head img { width: 36px; height: 36px; }
.drawer-head strong { font-family: var(--font-script); font-weight: 400; font-size: 24px; color: var(--gold); flex: 1; line-height: 1; }
.drawer-head .context { display: block; font-family: var(--font-body); font-size: 13px; color: rgba(242, 234, 216, .75); margin-top: 4px; }
.drawer-close { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(242, 234, 216, .35); background: transparent; color: var(--paper); font-size: 22px; line-height: 1; cursor: pointer; }
.drawer-close:hover { border-color: var(--paper); }
.drawer-body { flex: 1; min-height: 0; position: relative; background: var(--white); }
.drawer-body iframe { width: 100%; height: 100%; border: 0; display: block; }
.drawer-loading { position: absolute; inset: 0; display: grid; place-content: center; gap: 10px; text-align: center; color: var(--ink-2); font-size: 15px; background: var(--white); pointer-events: none; }
.drawer-loading[hidden] { display: none; }
.drawer-loading img { width: 64px; margin-inline: auto; opacity: .9; }
.drawer-panel { position: absolute; inset: 0; overflow: auto; padding: 28px 22px; background: var(--paper); }
.drawer-panel[hidden] { display: none; }
.drawer-panel h2 { font-size: 46px; margin-bottom: 14px; }
.drawer-panel .actions { display: grid; gap: 10px; margin-top: 22px; }
.drawer-panel .fine { font-size: 14.5px; color: var(--ink-2); margin-top: 22px; }
.drawer-foot { flex: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--paper-3); font-size: 13.5px; color: var(--ink-2); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.drawer-foot a { color: var(--ink); }
body.drawer-open { overflow: hidden; }
