:root {
  --bg: #f4f0e6;
  --bg-2: #fffcf6;
  --ink: #161513;
  --muted: #5f5a50;
  --gold: #c49212;
  --gold-2: #e0b13a;
  --line: rgba(22, 21, 19, 0.1);
  --shadow: 0 18px 50px rgba(40, 30, 10, 0.1);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --nav-h: 4.6rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.6rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 80% -8%, rgba(196, 146, 18, 0.16), transparent 55%),
    radial-gradient(700px 380px at 0% 20%, rgba(196, 146, 18, 0.08), transparent 50%),
    var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
}

.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding: 0.45rem 1.4rem;
  background: #171614;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand img {
  width: 92px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #d8d2c6;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: #fff;
}

.nav-call {
  background: var(--gold);
  color: #111 !important;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #221f1c;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #f4f0e6;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: min(84vh, 780px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(17, 16, 14, 0.58) 0%,
      rgba(17, 16, 14, 0.28) 42%,
      rgba(17, 16, 14, 0.08) 68%,
      transparent 82%
    );
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  width: min(760px, calc(100% - 2.4rem));
  padding: 1.5rem 0;
}

.hero .eyebrow {
  color: var(--gold-2);
}

.hero h1 {
  max-width: 18ch;
  margin: 0 auto 0.2rem;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 36rem;
  margin-top: 0.85rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.hero .btn-ghost:hover {
  background: #fff;
  color: #111;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 24px rgba(196, 146, 18, 0.28);
}

.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.3rem;
  padding: 0.45rem 0.85rem 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b0aaa0;
  flex-shrink: 0;
}

.live-chip.is-open {
  background: #e7f8e6;
  border-color: #9ed39a;
  color: #146227;
}

.live-chip.is-closed {
  background: #fdecea;
  border-color: #f0b0a8;
  color: #9b1c16;
}

.live-chip.is-open .live-dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: live-pulse 1.5s ease-out infinite;
}

.live-chip.is-closed .live-dot {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: live-pulse-red 1.6s ease-out infinite;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.work-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #111;
}

.work-shot img {
  width: 100%;
  height: min(48vh, 460px);
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-shot:hover img {
  transform: scale(1.06);
}

.work-shot figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #171614;
  color: #fff;
  font-family: var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--gold-2);
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.85rem 0;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  animation: marquee 28s linear infinite;
}

.marquee-track span::before {
  content: "●";
  margin-right: 2.4rem;
  color: var(--gold);
}

.section {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 4.4rem 0;
  scroll-margin-top: calc(var(--nav-h) + 0.6rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

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

.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin: 0.3rem 0 0.7rem;
}

.section-head p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.need-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.need-group {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.need-group-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  padding: 0.15rem 0.2rem 0.95rem;
  border-bottom: 1px solid var(--line);
}

.need-group-head img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.need-group-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.need-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.need-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.15rem;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem;
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.need-card:hover,
.need-card.is-on {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 16px 28px rgba(196, 146, 18, 0.16);
}

.need-card.is-on {
  background: #fff8e8;
}

.need-icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #efe6cf;
  color: var(--ink);
}

.need-icon svg {
  width: 30px;
  height: 30px;
}

.need-card strong {
  grid-column: 2;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0;
  align-self: end;
}

.need-card > span:last-child {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.92rem;
}

.need-result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}

.need-result[hidden] {
  display: none;
}

.need-result span {
  color: #d8d2c6;
}

.need-result em {
  font-style: normal;
  color: var(--gold-2);
  font-weight: 800;
}

.book {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.55rem 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}

.book-block {
  display: grid;
  gap: 0.75rem;
}

.book > .book-block + .book-block,
.book > .book-when,
.book > .book-send {
  margin-top: 1.45rem;
}

.book-when {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.book-when .book-block {
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.book-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.book-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-service {
  min-height: 54px;
  padding: 0.85rem 1rem;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  color: inherit;
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}

.book-service.is-on {
  border-color: var(--gold);
  background: #fff8e8;
  box-shadow: 0 16px 28px rgba(196, 146, 18, 0.16);
}

.book-cal {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  width: 100%;
}

.book-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.book-cal-nav strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-cal-shift {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.book-cal-shift:hover:not(:disabled) {
  border-color: var(--gold);
  background: #fff8e8;
}

.book-cal-shift:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.book-cal-dow {
  padding: 0.2rem 0 0.45rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-cal-day {
  appearance: none;
  aspect-ratio: 1;
  min-height: 42px;
  border: 1.5px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.book-cal-day:hover:not(:disabled) {
  border-color: var(--line);
  background: var(--bg);
}

.book-cal-day.is-today:not(.is-on) {
  box-shadow: inset 0 0 0 1.5px var(--gold);
}

.book-cal-day.is-on {
  border-color: var(--gold);
  background: #fff8e8;
}

.book-cal-day:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.book-cal-day.is-outside {
  opacity: 0.28;
}

.book-cal-choice {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.book-slots-hint {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  grid-column: 1 / -1;
  padding: 0.85rem 0.2rem;
}

.book-slot {
  appearance: none;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  min-height: 46px;
  font-weight: 800;
  font-size: 0.88rem;
}

.book-slot.is-on {
  border-color: var(--gold);
  background: #fff8e8;
}

.book-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: start;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  min-height: 100%;
}

.book-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.book-field {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.book-field input {
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.book-field input:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.book-slot:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

.book-send {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}

.book-send span {
  display: block;
  color: #d8d2c6;
  margin-top: 0.25rem;
}

.book-send .btn-gold:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hours-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.1rem;
}

.clock-card,
.signboard,
.contact-card,
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.clock-card {
  padding: 1.5rem;
  display: grid;
  align-content: center;
  min-height: 280px;
}

.clock {
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.clock-day {
  color: var(--muted);
  font-weight: 700;
  margin: 0.3rem 0 1rem;
}

.status-lg {
  justify-self: start;
  margin-top: 0.35rem;
}

.signboard {
  overflow: hidden;
}

.signboard-top {
  padding: 1.2rem 1.3rem 1rem;
  background: #efe6cf;
}

.signboard-top p {
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.signboard-top small {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hours-table {
  list-style: none;
  margin: 0;
  padding: 0.4rem 1.3rem 0.2rem;
}

.hours-table li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-table li.is-today {
  background: linear-gradient(90deg, rgba(196, 146, 18, 0.12), transparent);
  margin: 0 -1.3rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.hours-table span {
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 1.1rem;
}

.signboard-phone {
  display: block;
  padding: 1.1rem 1.3rem 1.3rem;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq details {
  padding: 0 1.2rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 1.15rem 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.4rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--muted);
  padding-bottom: 1.1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.1rem;
}

.contact-card {
  padding: 1.3rem;
}

.copy-line,
.contact-line {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
  cursor: pointer;
}

.copy-line span,
.contact-line span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.copied {
  margin-top: 0.8rem;
  color: #1c5b28;
  font-weight: 800;
}

.map-wrap {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 0.6rem);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 5.45rem;
  z-index: 45;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #171614;
  color: #fff;
  border: 1.5px solid rgba(224, 177, 58, 0.7);
  box-shadow: 0 12px 28px rgba(23, 22, 20, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.to-top.is-on:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
}

.fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  box-shadow: 0 12px 28px rgba(196, 146, 18, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}

.fab svg {
  width: 24px;
  height: 24px;
}

.footer {
  margin-top: 1rem;
  padding: 2.4rem 1.4rem 6rem;
  background: #171614;
  color: #c8c2b6;
  text-align: center;
}

.footer img {
  width: 180px;
  margin: 0 auto 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s ease forwards;
}

.work-shot.reveal:nth-child(2),
.need-group.reveal:nth-child(2) { animation-delay: 0.12s; }

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes live-pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.82; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 860px) {
  .need-groups,
  .hours-layout,
  .contact-grid,
  .work-strip,
  .book-services,
  .book-fields,
  .book-when {
    grid-template-columns: 1fr;
  }

  .book-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .book-cal-day,
  .book-cal-pad {
    min-height: 38px;
  }

  .work-shot img {
    height: 220px;
  }

  .hero {
    min-height: 70vh;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #171614;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1.3rem;
  }

  .nav-call {
    margin: 0.3rem 1.3rem 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .fab,
  .marquee-track,
  .live-dot {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
