/* =============================================================================
   MG Tag & Title - QR Hub
   styles.css

   Design direction: "The Diagonal".
   The logo is a red M and a gold G split by a charcoal slash at about 62
   degrees. That slash is the signature and it runs through the whole page:
   the corner cut on every button, the kicker glyph, the accordion indicator,
   the slanted edge between sections, the stroke in the hero.

   Layout is a single 480px column. Phone first, always.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand. Red and gold come straight off the logo. */
  --red:        #C8102E;
  --red-deep:   #A60D26;
  --gold:       #FFC72C;
  --wa:         #25D366;

  /* Canvas is never pure white. It is warmed toward the gold in the mark. */
  --bg:         #FCFBF9;
  --bg-alt:     #F4F1EA;
  --card:       #FFFFFF;

  --ink:        #26262A;   /* headings                     15.4:1 on --bg */
  --ink-body:   #33333A;   /* body                         12.2:1 on --bg */
  --ink-soft:   #5E5E67;   /* secondary                     6.4:1 on --bg */
  --line:       #E2DED5;   /* hairlines, decorative only            */
  --line-hard:  #B9B3A6;   /* interactive borders           3.1:1  */

  --on-wa:      #10241A;   /* dark ink on WhatsApp green    7.2:1  */
  --on-red:     #FFFFFF;   /* white on brand red            5.9:1  */

  --focus:      #0B63CE;

  /* The slash, everywhere. */
  --cut-w:      9px;
  --cut-h:      17px;
  --slash-rot:  28deg;     /* a vertical bar tilted to ~62deg from horizontal */

  --wrap:       480px;
  --gut:        20px;
  --sp:         clamp(44px, 11vw, 60px);

  --r:          12px;
  --r-lg:       16px;

  --ease:       cubic-bezier(.22, .8, .3, 1);

  --shadow:     0 1px 2px rgba(38, 32, 20, .05),
                0 6px 18px -8px rgba(38, 32, 20, .16);
  --shadow-lg:  0 2px 4px rgba(38, 32, 20, .06),
                0 18px 40px -18px rgba(38, 32, 20, .28);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #141416;
    --bg-alt:    #1B1B1F;
    --card:      #202025;

    --ink:       #F2EFEA;
    --ink-body:  #DFDBD4;
    --ink-soft:  #A6A29B;   /* 6.6:1 on --bg */
    --line:      #33333A;
    --line-hard: #6A6670;

    --red-text:  #F0657C;   /* red is not readable as text on dark */
    --focus:     #7FB4FF;

    --shadow:    0 1px 2px rgba(0, 0, 0, .5),
                 0 6px 18px -8px rgba(0, 0, 0, .6);
    --shadow-lg: 0 2px 4px rgba(0, 0, 0, .5),
                 0 18px 40px -18px rgba(0, 0, 0, .8);
  }
}
:root { --red-text: var(--red); }
@media (prefers-color-scheme: dark) { :root { --red-text: #F0657C; } }

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-body);
  font: 400 17px/1.55 Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
a { color: inherit; }
svg { display: block; }
img { max-width: 100%; height: auto; }

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

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

/* Skip link ---------------------------------------------------------------- */
.skip {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 90;
  padding: 10px 16px;
  background: var(--red);
  color: var(--on-red);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .18s var(--ease);
}
.skip:focus { transform: none; }

/* --- The one environment layer -------------------------------------------- */
/* A whisper of warm paper grain behind everything, drifting very slowly. */
.paper {
  position: fixed;
  inset: -8%;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background:
    radial-gradient(1100px 620px at 78% -8%,  rgba(255, 199, 44, .13), transparent 62%),
    radial-gradient(900px  560px at 4% 104%, rgba(200, 16, 46, .07),  transparent 60%);
  animation: drift 78s ease-in-out infinite alternate;
}
.paper::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
  .paper { opacity: .85; }
  .paper::after { opacity: .3; }
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0)        scale(1);    }
  to   { transform: translate3d(-2.5%, 1.5%, 0) scale(1.06); }
}

/* --- Header --------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.5) blur(12px);
  -webkit-backdrop-filter: saturate(1.5) blur(12px);
}
@supports not (backdrop-filter: blur(4px)) { .hdr { background: var(--bg); } }

.hdr__in {
  height: 56px;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* The rule under the header carries one notch of the slash. */
.hdr__rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--line) 12%, var(--line) 62%, transparent 78%);
  position: relative;
}
.hdr__rule::after {
  content: "";
  position: absolute;
  right: max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut)));
  top: -5px;
  width: 2px;
  height: 12px;
  background: var(--red);
  transform: rotate(var(--slash-rot));
  border-radius: 2px;
}

/* Logo lockup, drawn live. No image file, crisp at every density. */
.mark {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  min-height: 44px;
}
.mark__mg {
  position: relative;
  display: flex;
  align-items: baseline;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  letter-spacing: .01em;
}
.mark__m { color: var(--red); }
.mark__g { color: var(--gold); margin-left: 7px; }
@media (prefers-color-scheme: dark) { .mark__m { color: var(--red-text); } }

.mark__slash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.8px;
  height: 30px;
  margin-left: -1px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(var(--slash-rot));
  transform-origin: center;
}
@media (prefers-color-scheme: dark) { .mark__slash { background: var(--ink-soft); } }

.mark__word {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.mark__word2 { letter-spacing: .09em; opacity: .75; }
@media (max-width: 340px) { .mark__word { display: none; } }

/* Language toggle ---------------------------------------------------------- */
.langs {
  position: relative;
  display: flex;
  padding: 3px;
  border: 1px solid var(--line-hard);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 70%, transparent);
}
.langs__pill {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--ink);
  transition: transform .28s var(--ease);
}
.langs[data-active="es"] .langs__pill { transform: translateX(100%); }

.langs__b {
  position: relative;
  z-index: 1;
  min-width: 44px;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  background: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .22s var(--ease);
}
.langs__b[aria-pressed="true"] { color: var(--bg); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(30px, 8vw, 46px) clamp(22px, 6vw, 30px);
  overflow: hidden;
}

/* The signature stroke, drawn once on load. */
.hero__slash {
  position: absolute;
  top: -12px;
  right: -26px;
  width: 132px;
  height: 218px;
  pointer-events: none;
  opacity: .5;
}
.hero__slash line {
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  animation: draw 1.5s var(--ease) .25s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (max-height: 520px) { .hero__slash { display: none; } }

.hero__in { position: relative; }

/* Open / Closed, live, computed in Eastern time. */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 6px 13px 6px 11px;
  border: 1px solid var(--line-hard);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 76%, transparent);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-soft);
  flex: none;
}
.status[data-open="yes"] .status__dot {
  background: #19A463;
  box-shadow: 0 0 0 0 rgba(25, 164, 99, .55);
  animation: pulse 2.6s ease-out infinite;
}
.status[data-open="no"] .status__dot { background: var(--line-hard); }
.status__now { font-weight: 700; color: var(--ink); }
.status__next::before { content: "·"; margin: 0 6px; opacity: .55; }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 7px rgba(25, 164, 99, 0); }
  100% { box-shadow: 0 0 0 0  rgba(25, 164, 99, 0); }
}

.hero__t {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(30px, 8.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -.014em;
  color: var(--ink);
  max-width: 15ch;
  text-wrap: balance;
}
.hero__s {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 34ch;
}
.hero__trust {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-body);
  flex-wrap: wrap;
}
.hero__rev {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.stars { display: inline-flex; gap: 2px; flex: none; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); }

/* --- Action buttons ------------------------------------------------------- */
.acts {
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
}

.act {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 13px 18px;
  border-radius: var(--r);
  text-decoration: none;
  box-shadow: var(--shadow);
  /* the slash, cut out of the top-right corner */
  clip-path: polygon(0 0, calc(100% - var(--cut-w)) 0, 100% var(--cut-h), 100% 100%, 0 100%);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
/* clip-path would eat an outline, so focus is drawn inside. */
.act:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--focus), var(--shadow);
}
.act:active { transform: translateY(1px) scale(.994); }
@media (hover: hover) {
  .act:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
}

/* the brand-coloured wedge that traces the cut */
.act__cut {
  position: absolute;
  top: 0; right: 0;
  width: var(--cut-w);
  height: var(--cut-h);
  background: var(--wedge, var(--gold));
}

.act__ico { flex: none; width: 26px; height: 26px; }
.act__ico svg { width: 100%; height: 100%; }
.act__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.act__lab { font-size: 16.5px; font-weight: 700; letter-spacing: -.005em; line-height: 1.25; }
.act__help { font-size: 12.5px; font-weight: 500; opacity: .78; line-height: 1.3; }

.act--wa   { background: var(--wa);  color: var(--on-wa);  --wedge: #0E3F2A; }
.act--book { background: var(--red); color: var(--on-red); --wedge: var(--gold); }
.act--out {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--line-hard);
  --wedge: var(--red);
}
.act--out .act__help { color: var(--ink-soft); opacity: 1; }
@media (prefers-color-scheme: dark) { .act--out { --wedge: var(--red-text); } }

/* --- Section furniture ---------------------------------------------------- */
.band {
  position: relative;
  padding-block: var(--sp);
}
/* The slanted edge. Same direction as the logo slash, every time. */
.band--docs,
.band--rev {
  background: var(--bg-alt);
  margin-top: -24px;
  padding-top: calc(var(--sp) + 24px);
  clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
}
.band--book { padding-top: calc(var(--sp) - 8px); }
.band--rev  { padding-bottom: calc(var(--sp) + 6px); }

.kick {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kick__s {
  width: 2px;
  height: 13px;
  flex: none;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(var(--slash-rot));
}
@media (prefers-color-scheme: dark) { .kick__s { background: var(--red-text); } }

.h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(25px, 6.6vw, 30px);
  line-height: 1.16;
  letter-spacing: -.012em;
  color: var(--ink);
  max-width: 17ch;
  text-wrap: balance;
}
.lede {
  margin-top: 11px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 40ch;
}

/* --- Accordion ------------------------------------------------------------ */
.acc {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.acc__it { border-bottom: 1px solid var(--line); }

.acc__b {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 2px 15px 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.32;
  color: var(--ink);
  transition: color .18s var(--ease);
}
.acc__b:focus-visible { outline: 3px solid var(--focus); outline-offset: -3px; }
@media (hover: hover) { .acc__b:hover { color: var(--red-text); } }

.acc__n {
  flex: none;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-top: 3px;
  min-width: 20px;
}
.acc__name { flex: 1 1 auto; }

/* The slash again: it stands up when the item opens. */
.acc__i {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-hard);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.acc__i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 12px;
  margin: -6px 0 0 -1px;
  border-radius: 2px;
  background: var(--ink-soft);
  transform: rotate(var(--slash-rot));
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
.acc__b[aria-expanded="true"] .acc__i {
  border-color: var(--red);
  background: var(--red);
}
.acc__b[aria-expanded="true"] .acc__i::before {
  background: #fff;
  transform: rotate(90deg);
}

.acc__p {
  overflow: hidden;
  height: 0;
  transition: height .32s var(--ease);
}
.acc__inner { padding: 0 0 22px 34px; }

.acc__list { display: grid; gap: 9px; }
.acc__li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-body);
}
/* each bullet is a small slash */
.acc__li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .55em;
  width: 2px;
  height: 11px;
  margin-top: -5px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(var(--slash-rot));
}

.note {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, var(--card));
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-body);
}
@media (prefers-color-scheme: dark) {
  .note { background: color-mix(in srgb, var(--gold) 9%, var(--card)); }
}
.note__l {
  display: block;
  margin-bottom: 3px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.foot-note {
  margin-top: 13px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
}

.acc__ask {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  min-height: 44px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--red-text);
  text-decoration: none;
  border-bottom: 1.5px solid color-mix(in srgb, var(--red) 40%, transparent);
  align-self: start;
}

/* the WhatsApp line under the accordion */
.ask {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1.5px dashed color-mix(in srgb, var(--wa) 62%, var(--line-hard));
  background: color-mix(in srgb, var(--wa) 8%, var(--card));
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
@media (hover: hover) {
  .ask:hover {
    background: color-mix(in srgb, var(--wa) 16%, var(--card));
    transform: translateY(-1px);
  }
}
.ask__ico { flex: none; width: 24px; height: 24px; color: #128C7E; }
@media (prefers-color-scheme: dark) { .ask__ico { color: var(--wa); } }
.ask__ico svg { width: 100%; height: 100%; }

/* --- Booking -------------------------------------------------------------- */
.cal {
  margin-top: 22px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
.cal iframe { display: block; width: 100%; min-height: 700px; border: 0; }

.cal__fall {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  min-height: 44px;
  line-height: 44px;
}

/* the state before the GHL calendar is wired in */
.soon {
  position: relative;
  margin-top: 22px;
  padding: 24px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.soon::after {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 4px; height: 150px;
  background: var(--gold);
  opacity: .5;
  transform: rotate(var(--slash-rot));
}
.soon__t { font-size: 17px; font-weight: 700; color: var(--ink); }
.soon__l { margin-top: 8px; font-size: 15px; color: var(--ink-soft); max-width: 36ch; }
.soon__row { display: grid; gap: 10px; margin-top: 18px; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - var(--cut-w)) 0, 100% var(--cut-h), 100% 100%, 0 100%);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: translateY(1px); }
@media (hover: hover) { .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } }

.btn--solid { background: var(--red); color: var(--on-red); --wedge: var(--gold); }
.btn--gold  { background: var(--ink); color: var(--bg);      --wedge: var(--gold); }
.btn--wa    { background: var(--wa);  color: var(--on-wa);   --wedge: #0E3F2A; }
.btn--ghost {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--line-hard);
  --wedge: var(--red);
}
@media (prefers-color-scheme: dark) { .btn--ghost { --wedge: var(--red-text); } }

/* --- Info ----------------------------------------------------------------- */
.facts {
  margin-top: 22px;
  margin-bottom: 24px;
  display: grid;
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.fact {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 15px 17px;
  background: var(--card);
}
/* Hours carries two long strings per row, so it takes the whole card width
   with its label above. "Lunes a viernes" does not fit beside a time range. */
.fact--stack { grid-template-columns: 1fr; gap: 9px; }
.fact__k {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.fact__v { font-size: 15.5px; line-height: 1.5; color: var(--ink-body); }
.fact__v a { color: var(--red-text); font-weight: 600; text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--red) 35%, transparent); }
.fact__v a:hover { border-bottom-color: currentColor; }
.fact__v--addr a { color: var(--ink); border-bottom-color: var(--line-hard); }
.hrow { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.hrow + .hrow { margin-top: 6px; }
.hrow--off { color: var(--ink-soft); }
.hrow--today { font-weight: 700; color: var(--ink); }
.hrow__d { flex: 1 1 auto; }
.hrow__t { flex: none; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* --- Review card ---------------------------------------------------------- */
.revcard {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.revcard::before {
  content: "";
  position: absolute;
  top: -40px; left: 50%;
  width: 3px; height: 120px;
  margin-left: -1.5px;
  background: linear-gradient(var(--gold), transparent);
  transform: rotate(var(--slash-rot));
  opacity: .45;
}
.revcard__stars { display: inline-flex; gap: 3px; margin-bottom: 12px; }
.revcard__stars svg { width: 19px; height: 19px; fill: var(--gold); }
.revcard__t {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
}
.revcard__l { margin: 9px 0 20px; font-size: 15px; color: var(--ink-soft); }

/* --- Footer --------------------------------------------------------------- */
.foot {
  padding-block: 34px 44px;
  padding-bottom: max(44px, calc(34px + env(safe-area-inset-bottom)));
  text-align: center;
  border-top: 1px solid var(--line);
}
.foot__slash {
  display: block;
  width: 2px;
  height: 22px;
  margin: 0 auto 20px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(var(--slash-rot));
  opacity: .6;
}
.foot__site {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--red);
}
.foot__dis { margin-top: 12px; font-size: 13px; line-height: 1.5; color: var(--ink-soft); max-width: 36ch; margin-inline: auto; }
.foot__c   { margin-top: 14px; font-size: 12px; color: var(--ink-soft); opacity: .8; }

/* --- Entrances ------------------------------------------------------------ */
.rise {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.rise.in { opacity: 1; transform: none; }

/* --- Coarse pointers ------------------------------------------------------ */
@media (pointer: coarse) {
  .act { min-height: 72px; }
  .acc__b { min-height: 64px; }
}

/* --- Reduced motion ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__slash line { stroke-dashoffset: 0; }
  .rise { opacity: 1; transform: none; }
  .acc__p { transition: none; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .hdr, .paper, .acts, .skip { display: none !important; }
  .acc__p { height: auto !important; }
  body { background: #fff; color: #000; }
}
