/* ==========================================================================
   GLOSS & GLOW — Beauty & Grooming Studio, Glendale CA
   One stylesheet. No framework, no build step.

   01 Tokens          06 Masthead & menu
   02 Base            07 Hero
   03 Type            08 Sections
   04 Buttons         09 Service menu (data-driven)
   05 Frames & badges 10 Contact  11 Footer  12 Motion  13 Responsive
   ========================================================================== */

/* 01 TOKENS =============================================================== */
:root {
  /* Matte black through warm ivory, with muted brass as the only accent.
     Deliberately no bright or yellow gold. */
  --ink: #131313;
  --charcoal: #1b1b1b;
  --carbon: #0d0d0d;
  --ivory: #f4f0ea;
  --cream: #e9e2d6;
  --oak: #c8b69b;
  --brass: #b49468;
  --brass-soft: #cbb18c;
  --brass-ink: #866a42;
  --muted: #9c9791;
  --slate: #55504a;
  --silver: #c7c7c7;

  --rule-warm: rgba(180, 148, 104, 0.26);
  --rule-light: rgba(244, 240, 234, 0.13);
  --rule-dark: rgba(19, 19, 19, 0.14);
  --rule-dot: rgba(19, 19, 19, 0.3);

  --font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --wrap-narrow: 800px;
  --gutter: clamp(20px, 5vw, 52px);
  --section-y: clamp(66px, 9vw, 130px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --speed: 0.4s;
}

/* 02 BASE ================================================================= */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.008em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.012em;
  margin: 0;
}

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

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -130%);
  background: var(--brass); color: var(--ink);
  padding: 12px 22px; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 200; transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

/* 03 TYPE ================================================================= */
.eyebrow {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}

.display { font-family: var(--font-display); font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.03; }
.display--lg { font-size: clamp(2.8rem, 8vw, 5.4rem); }
.display--sm { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }

.lede { font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.85; color: var(--oak); }

.amp { font-family: var(--font-display); color: var(--silver); font-style: italic; padding: 0 0.06em; }

.pillars { font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--oak); }

.rule { width: 54px; height: 1px; border: 0; margin: 26px 0; background: var(--rule-warm); }
.rule--center { margin-inline: auto; }

/* 04 BUTTONS ============================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 14px 28px;
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; text-align: center;
  border: 1px solid transparent; border-radius: 2px; cursor: pointer;
  transition: background-color var(--speed) var(--ease),
              color var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}
.btn--brass { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-soft); border-color: var(--brass-soft); }
.btn--ghost { border-color: var(--rule-warm); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-soft); }
.btn--dark { border-color: rgba(19, 19, 19, 0.3); color: var(--ink); }
.btn--dark:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

.link {
  position: relative; display: inline-block;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); padding-bottom: 4px;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0.22); transform-origin: left;
  transition: transform var(--speed) var(--ease);
}
.link:hover::after { transform: scaleX(1); }

/* 05 FRAMES & BADGES ====================================================== */
/* Photographs live in a .frame. If the file is not there yet the frame keeps
   a composed panel, so nothing renders as a broken image. Drop the real file
   in at the documented path and it simply appears. */
.frame {
  position: relative; overflow: hidden;
  background-color: var(--charcoal);
  background-image:
    radial-gradient(115% 88% at 24% 12%, rgba(180, 148, 104, 0.17) 0%, transparent 58%),
    radial-gradient(100% 80% at 84% 92%, rgba(200, 182, 155, 0.10) 0%, transparent 62%),
    linear-gradient(158deg, #212121 0%, #171717 54%, #101010 100%);
}
.frame > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.05s var(--ease), opacity 0.45s var(--ease);
}
.frame.is-empty > img { opacity: 0; }
.frame.is-empty::after {
  content: attr(data-label);
  position: absolute; inset: auto 0 18px; text-align: center;
  font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(200, 182, 155, 0.36);
}
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--wide { aspect-ratio: 16 / 10; }

/* Category emblems. A drawn fallback stands in for any badge not yet made. */
.badge { position: relative; display: block; width: 100%; color: var(--brass); }
.badge__img { width: 100%; height: auto; }
.badge__fallback { display: none; width: 100%; height: auto; }
.badge.is-empty .badge__img { display: none; }
.badge.is-empty .badge__fallback { display: block; }
.badge__word {
  font-family: var(--font-display); font-size: 30px; font-weight: 400;
  letter-spacing: 0.22em; fill: currentColor;
}

/* 06 MASTHEAD ============================================================= */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(19, 19, 19, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-light);
  transition: background-color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.masthead.is-scrolled { background: rgba(13, 13, 13, 0.95); border-bottom-color: var(--rule-warm); }

.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.masthead__inner > * { min-width: 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 62px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.05em; white-space: nowrap; }
.brand__sub { font-size: 8px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brass); margin-top: 5px; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative; display: inline-block;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oak); padding: 6px 0;
  transition: color var(--speed) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--speed) var(--ease);
}
.nav__link:hover { color: var(--ivory); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--brass); }

.nav__book { min-height: 40px; padding: 10px 22px; margin-left: 4px; }

.masthead__mobile { display: flex; align-items: center; gap: 6px; }
.book-mini {
  min-height: 38px; padding: 9px 16px;
  font-size: 10.5px; letter-spacing: 0.18em;
  border: 1px solid var(--rule-warm); color: var(--brass-soft);
  border-radius: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center;
}

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 9px;
  background: none; border: 0; cursor: pointer;
}
.menu-toggle span { display: block; height: 1px; background: var(--ivory); transition: transform 0.34s var(--ease), opacity 0.2s var(--ease); }
.menu-toggle span:nth-child(2) { width: 68%; margin-left: auto; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-menu {
  position: fixed; inset: 0; z-index: 95;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--carbon); padding: 100px var(--gutter) 44px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease), visibility 0.34s;
  overflow-y: auto;
}
.site-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.site-menu__list a {
  display: block; font-family: var(--font-display);
  font-size: 30px; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid var(--rule-light);
}
.site-menu__list a[aria-current="page"] { color: var(--brass); }
.site-menu__foot { margin-top: 30px; }
.site-menu__meta { margin-top: 24px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.site-menu__meta a { display: block; margin-bottom: 8px; color: var(--oak); }
body.is-locked { overflow: hidden; }
body.is-locked .masthead {
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

/* 07 HERO ================================================================= */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(500px, 82vh, 800px);
  padding: 132px 0 clamp(48px, 8vw, 92px);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg > img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.24) 38%, rgba(13,13,13,0.92) 100%),
    linear-gradient(90deg, rgba(13,13,13,0.68) 0%, rgba(13,13,13,0.08) 72%);
}
.hero__inner { width: 100%; max-width: 700px; }
.hero__sub { font-size: 10.5px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--brass); margin-bottom: 22px; }

.hero--home { align-items: center; text-align: center; padding-top: 120px; }
.hero--home .hero__inner { max-width: 880px; margin-inline: auto; }
.hero__logo {
  width: clamp(250px, 48vw, 420px); height: auto;
  margin: 0 auto clamp(22px, 3.5vw, 34px);
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.6));
}
.hero__headline { margin: 22px 0 18px; }
.hero__place { margin-top: 20px; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* 08 SECTIONS ============================================================= */
.section { padding: var(--section-y) 0; }
.section--ivory { background: var(--ivory); color: var(--ink); }
.section--ivory .eyebrow { color: var(--brass-ink); }
.section--ivory .lede { color: var(--slate); }
.section--ivory .rule { background: var(--rule-dark); }
.section--ivory .link { color: var(--brass-ink); }
.section--ivory a:not(.btn):not(.link) {
  color: var(--brass-ink); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.section--ivory a:not(.btn):not(.link):hover { color: var(--ink); }
.section--charcoal { background: var(--charcoal); }
.section--charcoal .pillar { border-top-color: var(--rule-light); }
.section--charcoal .pillar:last-child { border-bottom-color: var(--rule-light); }
.section--charcoal .pillar p { color: var(--muted); }
.section--charcoal .menu-item { border-bottom-color: var(--rule-light); }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.head { max-width: 620px; margin-bottom: clamp(34px, 5vw, 58px); }
.head--center { margin-inline: auto; text-align: center; }
.head p { margin-top: 18px; }

.split { display: grid; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split > * { min-width: 0; }
.split__body h2 { margin-bottom: 18px; }

.pillar-grid { display: grid; grid-template-columns: 1fr; }
.pillar { padding: 24px 0; border-top: 1px solid var(--rule-dark); }
.pillar:last-child { border-bottom: 1px solid var(--rule-dark); }
.pillar h3 { font-size: 25px; margin: 0 0 6px; }
.pillar p { font-size: 14.5px; color: var(--slate); margin: 0; }

/* Service cards on the home page */
.card-grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 3vw, 32px); }
.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule-light); background: var(--charcoal);
  transition: border-color var(--speed) var(--ease);
}
.card:hover { border-color: var(--rule-warm); }
.card:hover .frame > img { transform: scale(1.04); }
.card__media { position: relative; }
.card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,13,0.26) 0%, rgba(13,13,13,0.04) 45%, rgba(13,13,13,0.5) 100%);
}
.card__badge {
    display: none;
}
.card__media.is-empty::after { z-index: 1; }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card__groups { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin: 0 0 8px; }
.card__tagline { font-size: 14.5px; color: var(--muted); margin: 0; }
.card__actions { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.card__actions .btn { flex: 1 1 128px; min-height: 44px; padding: 11px 14px; font-size: 10.5px; }

/* Editorial image strip */
.strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.strip figure { margin: 0; }
.strip figcaption { margin-top: 11px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.strip .frame:hover > img { transform: scale(1.04); }

.cta-band {
  padding: clamp(62px, 9vw, 108px) 0; background: var(--carbon); text-align: center;
  border-top: 1px solid var(--rule-warm); border-bottom: 1px solid var(--rule-warm);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); margin-bottom: 30px; }

.booking-note { font-size: 12.5px; color: var(--muted); margin-top: 18px; }
.booking-note[hidden] { display: none; }

/* 09 SERVICE MENU (rendered from assets/data/services.js) ================= */
.menu-group + .menu-group { margin-top: clamp(38px, 5vw, 62px); }
.menu-group__title {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-ink);
  margin: 0 0 6px; padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-dark);
}

.menu-item { padding: 17px 0; border-bottom: 1px solid var(--rule-dark); }
.menu-item:last-child { border-bottom: 0; }

.menu-item__head { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.menu-item__name {
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.25; color: var(--ink); flex: 0 1 auto;
}
.menu-item__name a { text-decoration: none !important; color: inherit !important; }
.menu-item__name a:hover { color: var(--brass-ink) !important; }
/* the leader dots between service name and price */
.menu-item__lead {
  flex: 1 1 auto; min-width: 14px; height: 1px;
  align-self: flex-end; margin-bottom: 6px;
  border-bottom: 1px dotted var(--rule-dot);
}
.menu-item__price {
  flex: 0 0 auto; font-family: var(--font-sans);
  font-size: 15px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--brass-ink); white-space: nowrap;
}
.menu-item__meta { margin: 2px 0 0; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #8a837a; }
.menu-item__cat { color: var(--brass-ink); }
.menu-item__desc { margin: 5px 0 0; font-size: 14px; line-height: 1.6; color: var(--slate); max-width: 52ch; }
.menu-item__addons { margin: 8px 0 0; font-size: 13.5px; color: var(--slate); }
.menu-item__addons li { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; }

.menu-note {
  margin-top: 26px; font-size: 12.5px; line-height: 1.7;
  color: #6f6960; max-width: 62ch;
}

/* 10 CONTACT ============================================================== */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 60px); }
.contact-grid > * { min-width: 0; }

.info-list { margin: 24px 0; }
.info-list li {
  display: flex; flex-wrap: wrap; gap: 4px 16px;
  padding: 14px 0; border-bottom: 1px solid var(--rule-dark);
  font-size: 15px; overflow-wrap: anywhere;
}
.info-list__key {
  flex: 0 0 92px; padding-top: 3px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-ink);
}

.map { border: 1px solid var(--rule-dark); background: var(--charcoal); aspect-ratio: 16 / 9; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(0.9) brightness(0.95); }

/* 11 FOOTER =============================================================== */
.colophon { background: var(--carbon); border-top: 1px solid var(--rule-light); padding: clamp(54px, 7vw, 86px) 0 38px; }
.colophon__grid { display: grid; gap: 38px; }
.colophon__logo { width: 168px; margin-bottom: 18px; }
.colophon h2 {
  font-family: var(--font-sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin: 0 0 16px;
}
.colophon ul li { margin-bottom: 9px; font-size: 14px; }
.colophon a { color: var(--oak); transition: color var(--speed) var(--ease); }
.colophon a:hover { color: var(--brass-soft); }
.colophon address { font-style: normal; font-size: 14px; color: var(--oak); }
.colophon__bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--rule-light);
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--rule-warm); border-radius: 50%; color: var(--brass);
  transition: background-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.social a:hover { background: var(--brass); color: var(--ink); }
.social a[hidden] { display: none; }
.social svg { width: 16px; height: 16px; }

/* 12 MOTION =============================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .frame > img { transition: none; }
}

/* 13 RESPONSIVE =========================================================== */
@media (min-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .strip { gap: 16px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .pillar-grid .pillar:nth-child(2) { border-bottom: 0; }
  .colophon__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: block; }
  .masthead__mobile { display: none; }
  .site-menu { display: none; }

  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .strip { grid-template-columns: repeat(4, 1fr); }
  .pillar-grid { grid-template-columns: repeat(4, 1fr); column-gap: 32px; }
  .pillar-grid .pillar { border-bottom: 0; }
  .card-grid--four { grid-template-columns: repeat(4, 1fr); }
  .colophon__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 46px; }
  .hero__inner { max-width: 640px; }
}

@media (min-width: 1180px) { .nav__list { gap: 34px; } }

/* On phones the brand collapses to the emblem plus the name — the service
   line underneath would otherwise push the header past the viewport. */
@media (max-width: 640px) {
  .masthead__inner { gap: 12px; }
  .brand__mark { width: 46px; }
  .brand__name { font-size: 21px; }
  .brand__sub { display: none; }
}

@media (max-width: 420px) {
  .info-list__key { flex: 0 0 100%; }
}

@media (max-width: 380px) {
  .brand__mark { width: 40px; }
  .brand__name { font-size: 20px; }
  .brand__sub { font-size: 7px; letter-spacing: 0.24em; }
  .book-mini { padding: 9px 12px; letter-spacing: 0.14em; }
  .btn { padding: 13px 20px; letter-spacing: 0.16em; }
  .card__actions .btn { flex: 1 1 100%; }
  .site-menu__list a { font-size: 25px; }
  .menu-item__lead { display: none; }
  .menu-item__head { justify-content: space-between; }
}

@media print {
  .masthead, .site-menu, .hero__bg { display: none; }
  body { background: #fff; color: #000; }
}
