@charset "utf-8";

/* ==========================================================================
   KD Hair Design
   Grey, panel-based, logo-led. The woven texture on the panels is a CSS
   rebuild of the salon's existing background_grey.jpg crosshatch, so it
   stays crisp at any size and costs no extra request.
   ========================================================================== */

:root {
  --page:       #FFFFFF;
  --shade:      #F2F2EF;
  --panel:      #E2E2DE;
  --panel-deep: #3A3D41;
  --ink:        #1F2225;
  --body:       #464B51;
  --muted:      #5B6068;
  --line:       #D8D8D4;
  --line-deep:  #4E5257;
  --accent:     #2E9E14;
  --accent-ink: #1F6E0E;
  --btn:        #3A3D41;
  --btn-hover:  #1F2225;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --gap:    clamp(1rem, 2vw, 1.5rem);
  --bay:    clamp(3.5rem, 7vw, 6rem);

  --radius: 6px;
  --shadow: 0 1px 2px rgba(31, 34, 37, .05), 0 4px 12px rgba(31, 34, 37, .05);
  --ease:   cubic-bezier(.2, .6, .3, 1);

  /* The weave: two fine crosshatched rules, as on the salon's own texture. */
  --weave:
    repeating-linear-gradient(0deg,  rgba(31,34,37,.055) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(31,34,37,.045) 0 1px, transparent 1px 3px);
  --weave-deep:
    repeating-linear-gradient(0deg,  rgba(255,255,255,.045) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 3px);
}

/* --- reset ---------------------------------------------------------------- */

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

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

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol, address {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

img, iframe { max-width: 100%; display: block; }
img { height: auto; }

button, input, textarea, select { font: inherit; color: inherit; }

table { border-collapse: collapse; width: 100%; }

address { font-style: normal; }

/* --- base ----------------------------------------------------------------- */

body {
  background: var(--page);
  color: var(--body);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.2; }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  text-decoration: none;
}
.skip:focus { left: 0; }

.shell {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- typography ----------------------------------------------------------- */

.h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -.022em; text-wrap: balance; }
.h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -.016em; text-wrap: balance; }
.h3 { font-size: 1.125rem; letter-spacing: -.006em; }

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .75rem;
}

.lede { font-size: clamp(1.05rem, 1.3vw, 1.15rem); line-height: 1.6; }

.prose { max-width: 65ch; }
.prose p + p { margin-top: 1em; }

.prose a, .textlink {
  color: var(--accent-ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s var(--ease);
}
.prose a:hover, .textlink:hover { color: var(--ink); }

.muted { color: var(--muted); }
.note  { font-size: .9rem; line-height: 1.6; color: var(--muted); max-width: 60ch; }

.stack-s { margin-top: 1rem; }
.stack-m { margin-top: 1.5rem; }
.stack-l { margin-top: 2rem; }

/* --- panels: the recurring device ----------------------------------------- */

.panel {
  position: relative;
  background-color: var(--panel);
  background-image: var(--weave);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.panel--plain {
  background-color: var(--page);
  background-image: none;
  box-shadow: var(--shadow);
}

.panel--deep {
  background-color: var(--panel-deep);
  background-image: var(--weave-deep);
  border-color: var(--line-deep);
  color: #D3D6D9;
}
.panel--deep h1, .panel--deep h2, .panel--deep h3 { color: #fff; }
.panel--deep .eyebrow { color: #A9AEB3; }

.band {
  background-color: var(--shade);
  background-image: var(--weave);
  border-block: 1px solid var(--line);
}

/* --- masthead ------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--page);
  border-bottom: 1px solid var(--line);
}

.masthead__in {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding-block: .9rem;
}

.logo { display: block; margin-right: auto; }
.logo img { width: 185px; height: auto; }

.nav ul { display: flex; gap: clamp(.9rem, 2vw, 1.9rem); flex-wrap: wrap; }
/* Padded to a 44px hit area for touch; the underline is a pseudo-element so
   it stays tight under the text instead of dropping to the padding edge. */
.nav a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--body);
  padding-block: .82rem;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + .68em);
  height: 2px;
  background: transparent;
  transition: background .2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { background: var(--line); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { background: var(--accent); }

/* --- mobile drawer -------------------------------------------------------- */

.navtoggle {
  display: none;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .5rem .8rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.navtoggle:hover { border-color: var(--ink); background: var(--shade); }
.navtoggle svg { width: 20px; height: 20px; }

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(20rem, 84vw);
  max-width: none;
  max-height: none;
  height: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  background-color: var(--page);
  color: var(--body);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer::backdrop { background: rgba(31,34,37,.45); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.drawer__title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -.6rem;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.drawer__close:hover { background: var(--shade); }
.drawer__close svg { width: 22px; height: 22px; }

.drawer__nav { padding: .5rem 0; }
.drawer__nav a {
  display: block;
  padding: .85rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.drawer__nav a:hover { background: var(--shade); }
.drawer__nav a[aria-current="page"] { border-left-color: var(--accent); background: var(--shade); }

.drawer__foot {
  padding: 1.25rem;
  border-top: 1px solid var(--line);
  margin-top: .5rem;
}
.drawer__foot .btn { width: 100%; }
.drawer__foot address {
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .7rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn--primary { background: var(--btn); color: #fff; }
.btn--primary:hover { background: var(--btn-hover); }
/* White ground so it still reads as a button when it sits on a grey panel. */
.btn--ghost { background: var(--page); border-color: #C7C7C2; color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--shade); }
.btn--onDeep { background: #fff; color: var(--ink); }
.btn--onDeep:hover { background: var(--shade); color: var(--btn-hover); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

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

/* Full-bleed image, text on the same left edge as every other section. */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(23rem, 32vw, 30rem);
  overflow: hidden;
  background: var(--shade);
  border-bottom: 1px solid var(--line);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}

/* The salon photograph is high key, so the veil is light and the text stays
   dark — a dark scrim would fight the room. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    98deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.93) 32%,
    rgba(255,255,255,.66) 55%,
    rgba(255,255,255,.22) 78%,
    rgba(255,255,255,0)  100%
  );
}

.hero__inner { position: relative; padding-block: clamp(2.5rem, 5vw, 4rem); }
.hero__inner > * { max-width: 36rem; }
.hero__inner .h1 { margin-bottom: .85rem; max-width: 42rem; }
.hero__inner .lede { max-width: 34rem; }
.hero__inner .btn-row { margin-top: 1.75rem; }

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

.bay { padding-block: var(--bay); }

.sect-head { margin-bottom: clamp(1.75rem, 3.2vw, 2.5rem); max-width: 60ch; }
.sect-head .h2 + .note { margin-top: .75rem; }
.sect-head .eyebrow { margin-bottom: .6rem; }

/* Anchored links shouldn't land under the sticky bar. */
:target { scroll-margin-top: 6rem; }

.page-head { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.page-head .lede { margin-top: 1rem; max-width: 60ch; }

/* --- card grids ----------------------------------------------------------- */

.grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 46rem) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 40rem) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
/* Cards that link somewhere lift slightly; static ones stay put. */
.card:has(a:hover), a.card:hover {
  border-color: #C2C2BC;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card .h3 { margin-bottom: .5rem; }
.card p { font-size: .9375rem; }
.card__foot { margin-top: auto; padding-top: 1.25rem; }
.card__price {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* --- prices --------------------------------------------------------------- */

.pricelist { display: grid; gap: var(--gap); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 46rem) { .pricelist--pair { grid-template-columns: 1fr 1fr; } }

.prices caption {
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--ink);
}
.prices th, .prices td {
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
  font-weight: 400;
  text-align: left;
  font-size: .9375rem;
}
.prices thead th {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .8rem;
}
.prices thead th + th, .prices tbody td { text-align: right; }
.prices thead th + th { padding-left: .75rem; }
.prices tbody td {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  padding-left: .75rem;
}
.prices tbody th { padding-right: .5rem; color: var(--body); }
.prices tbody tr:last-child th, .prices tbody tr:last-child td { border-bottom: 0; }
.prices .is-quote { color: var(--muted); font-weight: 400; font-variant-numeric: normal; white-space: normal; }

/* Services priced by stylist open into named rows instead of stylist columns:
   two columns throughout, so a range and a three-way split can sit in the same
   table without one pretending to be the other. */
.prices__group th {
  padding-top: 1.5rem;
  padding-bottom: .3rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 0;
}
.prices--grouped tbody tr:first-child .prices__group th,
.prices__group:first-child th { padding-top: .65rem; }

.prices th.is-tier {
  padding-left: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.prices__group + tr th,
.prices__group + tr td { border-top: 1px solid var(--line); }

/* --- team ----------------------------------------------------------------- */

.member { display: flex; flex-direction: column; }
.member__portrait {
  width: 100%;
  max-width: 8.5rem;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--shade);
  margin-bottom: 1rem;
}
.member__role {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

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

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
@media (min-width: 48rem) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.gallery button {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shade);
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.gallery button:hover img { transform: scale(1.03); }

.lightbox {
  border: 0; padding: 0; background: transparent;
  max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; overflow: hidden;
}
.lightbox::backdrop { background: rgba(24, 27, 30, .94); }
.lightbox__stage {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: clamp(1rem, 4vw, 3rem);
}
.lightbox__stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius); }
.lightbox__btn {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  color: #fff;
  width: 44px; height: 44px;
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev  { top: 50%; left: 1rem;  transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 1rem; transform: translateY(-50%); }

/* --- form ----------------------------------------------------------------- */

.form { max-width: 34rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field input, .field textarea {
  display: block; width: 100%;
  min-height: 44px;
  padding: .7rem .85rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field textarea:focus {
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(58,61,65,.16);
  outline-offset: 1px;
}
.field .note { margin-top: .35rem; }

.captcha { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.captcha img { border: 1px solid var(--line); border-radius: var(--radius); }
.captcha input { max-width: 9rem; }

.msg {
  padding: .9rem 1.15rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  border-radius: var(--radius);
  font-size: .9375rem;
}
.msg p { margin: 0; }
.msg p + p { margin-top: .3rem; }
.msg--error   { border-color: #E4B4B1; background: #FCF2F1; color: #8C1D18; }
.msg--success { border-color: #B7DFAB; background: #F1F9EE; color: var(--accent-ink); }

/* --- visit ---------------------------------------------------------------- */

.visit { display: grid; gap: var(--gap); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 52rem) { .visit { grid-template-columns: 1fr 1fr; } }

.mapframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--shade);
}
.mapframe--wide { aspect-ratio: 16 / 10; }
.mapframe iframe { width: 100%; height: 100%; border: 0; }

.hours { width: 100%; }
.hours__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9375rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row dt { font-weight: 500; color: var(--ink); }
.hours__row dd { font-variant-numeric: tabular-nums; }
.hours__row.is-shut { color: var(--muted); }
.hours__row.is-shut dt { font-weight: 400; color: var(--muted); }

.factlist { font-size: .9375rem; }
.factlist div { padding: .5rem 0; border-bottom: 1px solid var(--line); }
.factlist div:last-child { border-bottom: 0; }
.factlist dt { font-weight: 600; color: var(--ink); }

/* --- call band ------------------------------------------------------------ */

.callband { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.callband__text { max-width: 46ch; }
.callband__text p { margin-top: .6rem; }
.callband__num {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

/* --- colophon ------------------------------------------------------------- */

.colophon {
  background-color: var(--panel-deep);
  background-image: var(--weave-deep);
  color: #C4C8CC;
  border-top: 1px solid var(--line-deep);
  margin-top: var(--bay);
}
.colophon a { color: #C4C8CC; text-decoration: none; }
.colophon a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.colophon :focus-visible { outline-color: #fff; }
.colophon .eyebrow { color: #A9AEB3; }
.colophon .hours__row { border-color: var(--line-deep); }
.colophon .hours__row dt { color: #E4E7E9; }
.colophon .hours__row.is-shut, .colophon .hours__row.is-shut dt { color: #969B9F; }

.colophon__in {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  padding-block: var(--bay);
}
@media (min-width: 44rem) { .colophon__in { grid-template-columns: repeat(3, 1fr); } }

.colophon__logo { margin-bottom: 1.25rem; }
/* The logo is a JPEG on white. Inverting turns that ground black; screening
   drops the black out so only the mark shows on the dark panel. */
.colophon__logo img {
  width: 165px;
  height: auto;
  filter: invert(1) brightness(1.35);
  mix-blend-mode: screen;
}
.colophon address { line-height: 1.8; }
.colophon__contact { margin-top: .9rem; line-height: 1.8; }
.colophon__nav li { padding: .18rem 0; }

.colophon__foot {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-deep);
  font-size: .8125rem;
  color: #969B9F;
}

/* --- motion: subtle only -------------------------------------------------- */

.js .reveal { opacity: 0; transform: translateY(12px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

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

/* --- small screens -------------------------------------------------------- */

@media (max-width: 48rem) {
  .masthead__in { padding-block: .8rem; gap: .5rem; flex-wrap: nowrap; }
  .logo img { width: 130px; }

  /* The horizontal bar gives way to the drawer. */
  .nav { display: none; }
  .navtoggle {
    display: inline-flex;
    justify-content: center;
    width: 44px;
    padding: .5rem;
  }
  /* Kept in the accessibility tree so the button is still named "Menu". */
  .navtoggle span {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .masthead__call { padding: .5rem .7rem; font-size: .8125rem; gap: .35rem; }
  .masthead__call svg { width: 16px; height: 16px; }

  /* A 16:10 frame leaves the Street View controls almost no room on a phone. */
  .mapframe--wide { aspect-ratio: 4 / 3; }

  .hero { min-height: 24rem; }
  .hero__scrim {
    background: linear-gradient(178deg,
      rgba(255,255,255,.94) 0%,
      rgba(255,255,255,.90) 55%,
      rgba(255,255,255,.85) 100%);
  }

  /* Full-width buttons in content, but never in the header bar. */
  .btn { width: 100%; }
  .masthead .btn { width: auto; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
}

/* The drawer is a small-screen device only. */
@media (min-width: 48.0625rem) {
  .drawer, .drawer::backdrop { display: none; }
}

@media print {
  .masthead, .gallery, .lightbox, .mapframe { display: none; }
  body { background: #fff; color: #000; }
  .panel, .band, .colophon { background: none; border: 0; color: #000; }
}
