/* ==========================================================================
   Liana Hair Studio — stylesheet
   Palette: warm neutrals & earth tones
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  /* Neutrals — warm, paper-like */
  --cream: #faf7f2;
  --linen: #f3ece3;
  --sand: #e8ddd0;
  --stone: #d5c8b8;

  /* Earth accents */
  --clay: #a97f5d;
  --clay-dark: #8c6647;
  --olive: #7c8471;
  --taupe: #8f8578;

  /* Ink */
  --espresso: #2f2b26;
  --bark: #4a4339;
  --muted: #736b5f;

  --white: #fff;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --page: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 11vw, 8.5rem);

  --radius: 2px;
  --radius-lg: 4px;

  --shadow-sm: 0 1px 2px rgba(47, 43, 38, 0.06), 0 4px 14px rgba(47, 43, 38, 0.05);
  --shadow-md: 0 10px 40px rgba(47, 43, 38, 0.1);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 74px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--clay-dark);
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p {
  margin: 0 0 1.15em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

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

::selection {
  background: var(--sand);
  color: var(--espresso);
}

/* --- Layout primitives --------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: 760px;
}

.section {
  padding-block: var(--section-y);
}

.section--tint {
  background: var(--linen);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

/* --- Section headings ---------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.125rem, 5.5vw, 3.25rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--muted);
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--stone);
  border: 0;
  margin: 0 0 1.75rem;
}

.section-head--center .rule {
  margin-inline: auto;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.btn--ghost {
  background: transparent;
  border-color: var(--stone);
  color: var(--espresso);
}

.btn--ghost:hover {
  border-color: var(--espresso);
  background: rgba(255, 255, 255, 0.45);
}

.btn--light {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--espresso);
}

.btn--light:hover {
  background: var(--white);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(250, 247, 242, 0.5);
  color: var(--cream);
}

.btn--outline-light:hover {
  border-color: var(--cream);
  background: rgba(250, 247, 242, 0.1);
}

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

.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Header -------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.is-stuck {
  border-bottom-color: var(--sand);
  box-shadow: 0 1px 12px rgba(47, 43, 38, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* Wordmark */
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--espresso);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.06em;
}

.brand__sub {
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.375rem;
}

/* Desktop nav */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: block;
  padding-block: 0.375rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--espresso);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.header__cta {
  padding: 0.625rem 1.375rem;
  min-height: 42px;
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -0.75rem;
  background: none;
  border: 0;
  padding: 0;
}

.nav-toggle__bars {
  position: relative;
  width: 24px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle__bars span:nth-child(1) {
  top: 0;
}
.nav-toggle__bars span:nth-child(2) {
  top: 5px;
}
.nav-toggle__bars span:nth-child(3) {
  top: 10px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  background: var(--cream);
  padding: 2rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease),
    visibility 0.28s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-nav__list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.mobile-nav__list li + li {
  border-top: 1px solid var(--sand);
}

.mobile-nav__link {
  display: block;
  padding: 1.125rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--espresso);
}

.mobile-nav__foot {
  border-top: 1px solid var(--sand);
  padding-top: 1.75rem;
}

.mobile-nav__foot .btn {
  width: 100%;
}

.mobile-nav__meta {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(88vh, 760px);
  padding-block: clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
  background: var(--espresso);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(30, 27, 23, 0.9) 0%,
      rgba(38, 34, 29, 0.78) 42%,
      rgba(47, 43, 38, 0.5) 100%
    ),
    linear-gradient(to top, rgba(30, 27, 23, 0.55), transparent 55%);
}

.hero__inner {
  max-width: 640px;
}

.hero__eyebrow {
  color: var(--stone);
}

.hero__title {
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  color: var(--cream);
  margin-bottom: 0.35em;
}

.hero__title em {
  font-style: italic;
  color: var(--sand);
}

.hero__text {
  font-size: clamp(1.0625rem, 1.9vw, 1.25rem);
  color: rgba(243, 236, 227, 0.82);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.75rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250, 247, 242, 0.18);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 227, 0.72);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta .icon {
  color: var(--clay);
  width: 1.05em;
  height: 1.05em;
}

/* --- Marquee strip ------------------------------------------------------- */
.strip {
  background: var(--espresso);
  color: var(--sand);
  padding-block: 1.125rem;
  overflow: hidden;
}

.strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.strip__list li {
  position: relative;
}

.strip__list li + li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--clay);
  transform: translateY(-50%);
}

/* --- About --------------------------------------------------------------- */
.about__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.portrait {
  position: relative;
  /* <figure> defaults to `margin: 1em 40px` — that indent would break the grid. */
  margin: 0;
  max-width: 460px;
  /* Contain the offset frame below, so its negative z-index stays inside .portrait. */
  isolation: isolate;
}

.portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.portrait__caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
}

.prose > p + p {
  margin-top: 0;
}

.prose .pull {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--espresso);
  border-left: 2px solid var(--clay);
  padding-left: 1.5rem;
  margin: 2.25rem 0;
}

/* --- Services ------------------------------------------------------------ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.tab {
  min-height: 44px;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid var(--stone);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.22s var(--ease);
}

.tab:hover {
  border-color: var(--taupe);
  color: var(--espresso);
}

.tab[aria-selected="true"] {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

.panel[hidden] {
  display: none;
}

.panel__note {
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 2.75rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}

.menu-group + .menu-group {
  margin-top: 3.25rem;
}

.menu-group__title {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  padding-bottom: 0.875rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--sand);
}

.menu-group__intro {
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(213, 200, 184, 0.42);
}

.menu__body {
  flex: 1 1 auto;
  min-width: 0;
}

.menu__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3125rem;
  color: var(--espresso);
  line-height: 1.3;
}

.menu__desc {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.menu__price {
  flex: none;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--bark);
  white-space: nowrap;
  padding-left: 0.5rem;
}

.menu__price--quote {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--clay);
  white-space: normal;
  text-align: right;
  max-width: 8.5rem;
}

.fineprint {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.5rem;
}

.section--tint .fineprint {
  background: rgba(255, 255, 255, 0.6);
}

.fineprint h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.fineprint p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* --- Location ------------------------------------------------------------ */
.location__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

.map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(1.02);
}

.info-block + .info-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}

.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}

.address {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  font-style: normal;
  line-height: 1.45;
  color: var(--espresso);
}

/* The building name reads as a label above the street address, not part of it. */
.address__venue {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

/* Wayfinding callout — clients regularly can't find the suite. */
.note {
  padding: 1.5rem 1.625rem;
  background: var(--linen);
  border-left: 2px solid var(--clay);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.section--tint .note {
  background: rgba(255, 255, 255, 0.6);
}

.note p + p {
  margin-top: 0.875rem;
}

.note strong {
  font-weight: 400;
  color: var(--espresso);
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(213, 200, 184, 0.42);
  font-size: 1rem;
}

.hours dt,
.hours .day {
  color: var(--espresso);
}

.hours .time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours li.is-closed .day,
.hours li.is-closed .time {
  color: var(--taupe);
}

.hours__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* --- Contact ------------------------------------------------------------- */
.contact {
  background: var(--espresso);
  color: rgba(243, 236, 227, 0.78);
}

.contact .eyebrow {
  color: var(--clay);
}

.contact .section-title {
  color: var(--cream);
}

.contact .lede {
  color: rgba(243, 236, 227, 0.72);
}

.contact .rule {
  background: rgba(250, 247, 242, 0.25);
}

.contact__cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.card {
  padding: 2rem 1.75rem;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

a.card:hover {
  background: rgba(250, 247, 242, 0.09);
  border-color: rgba(250, 247, 242, 0.3);
  transform: translateY(-2px);
}

.card .icon {
  width: 22px;
  height: 22px;
  color: var(--clay);
  margin: 0 auto 1.125rem;
  stroke-width: 1.3;
}

.card__label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.625rem;
}

.card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--cream);
  line-height: 1.3;
}

.card__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(243, 236, 227, 0.55);
}

.contact__cta {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
}

.contact__cta p {
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.contact__cta .btn-row {
  justify-content: center;
}

/* --- Footer -------------------------------------------------------------- */
.footer {
  background: #262320;
  color: rgba(243, 236, 227, 0.5);
  padding-block: 3rem 2.5rem;
  font-size: 0.875rem;
}

.footer__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.footer .brand__name {
  color: var(--cream);
  font-size: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav a {
  color: rgba(243, 236, 227, 0.6);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}

.footer__nav a:hover {
  color: var(--cream);
}

.footer__legal {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  font-size: 0.8125rem;
  color: rgba(243, 236, 227, 0.38);
}

/* --- Reveal on scroll ---------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- No-JS fallbacks ----------------------------------------------------- */
html:not(.js) .tabs,
html:not(.js) .nav-toggle {
  display: none;
}

html:not(.js) .panel[hidden] {
  display: block;
}

html:not(.js) .panel + .panel {
  margin-top: 3.25rem;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

/* --- 600px: small tablets ------------------------------------------------ */
@media (min-width: 600px) {
  .contact__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .fineprint {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* --- 900px: desktop nav + two-column sections ---------------------------- */
@media (min-width: 900px) {
  :root {
    --header-h: 88px;
  }

  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none;
  }

  .about__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .location__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer__inner {
    grid-template-columns: auto 1fr;
    justify-items: end;
  }

  .footer__inner .brand {
    justify-items: start;
  }
}

/* --- 1024px: roomier service menu --------------------------------------- */
@media (min-width: 1024px) {
  .menu {
    column-count: 2;
    column-gap: 3.5rem;
  }

  .menu li {
    break-inside: avoid;
  }

  .menu--single {
    column-count: 1;
    max-width: 720px;
  }
}

/* --- Motion & print ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .header,
  .mobile-nav,
  .hero,
  .strip,
  .map,
  .tabs {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .panel[hidden] {
    display: block !important;
  }
}
