@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Playpen+Sans+Arabic:wght@100..800&family=Sedgwick+Ave+Display&family=Slackey&display=swap');
:root {
  color-scheme: dark;
  --bg: #222222;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.34);
  --max: 1180px;
  --radius: 8px;
  --cursor-x: 50vw;
  --cursor-y: 20vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle 320px at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.12), transparent 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 56px 56px, 56px 56px, auto;
  color: var(--fg);
  font-family: "Bricolage Grotesque", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variation-settings: "wdth" 92;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--fg);
  color: var(--bg);
}

.topbar {
  position: fixed;
  inset: 12px 12px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: calc(100% - 24px);
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark.brand-pole {
  width: 42px;
  height: 52px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.brand-pole-cap,
.brand-pole-ring,
.brand-pole-body {
  display: block;
  flex: 0 0 auto;
}

.brand-pole-cap {
  width: 24px;
  height: 7px;
  border-radius: 999px;
  background: var(--fg);
}

.brand-pole-ring {
  width: 30px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.brand-pole-body {
  position: relative;
  width: 22px;
  height: 28px;
  border-inline: 1px solid rgba(255, 255, 255, 0.54);
  background-color: var(--bg);
  background-size: 28px 28px;
  background-image: linear-gradient(45deg, var(--fg) 25%, transparent 25%, transparent 50%, var(--fg) 50%, var(--fg) 75%, transparent 75%, transparent);
  animation: miniStripes 1.15s linear infinite;
  overflow: hidden;
}

.brand-pole-body span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

@keyframes miniStripes {
  to { background-position: 56px 0; }
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 1rem;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--fg);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-links,
.nav-cta {
  display: none;
}

body.menu-open .nav-links {
  position: fixed;
  inset: 76px 12px auto;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(34, 34, 34, 0.98);
}

.nav-links a {
  border-radius: 6px;
  padding: 15px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--soft);
  color: var(--fg);
  outline: none;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary,
.nav-cta {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: auto;
  padding: 112px 16px 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  opacity: 0.18;
  filter: grayscale(1);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-shade {
  z-index: -3;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.82), var(--bg) 88%);
}

.hero-noise {
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.044) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.65;
}

.hero-inner,
.section-heading,
.booking-layout,
.service-board,
.gallery-grid,
.reviews-layout,
.culture,
.site-footer,
.page-hero-copy,
.roster-grid,
.signal-strip {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  gap: 28px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.panel-label,
legend,
label,
.google-badge {
  color: var(--fg);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow,
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.55rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-lead,
.service-card p,
.roster-card p,
.culture-copy p,
.reviews-copy p,
.page-hero p,
.gallery-feature p,
.booking-summary > span,
.confirmation-text,
.site-footer address,
.google-card p,
.service-options small {
  color: var(--muted);
  line-height: 1.62;
}

.hero-lead {
  margin-bottom: 24px;
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.hero-panel {
  width: 100%;
}

.availability-panel,
.booking-summary,
.appointment-form,
.service-card,
.roster-card,
.google-card,
.gallery-feature,
.gallery-card,
.culture-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(34, 34, 34, 0.68);
}

.availability-panel {
  overflow: hidden;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-topline span,
.availability-panel dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-topline strong {
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.availability-panel dl {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
}

.availability-panel div {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.availability-panel div:last-child {
  border-bottom: 0;
}

.availability-panel dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(34, 34, 34, 0.68);
}

.signal-strip span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.signal-strip span:nth-child(2n) {
  border-right: 0;
}

.signal-strip span:last-child {
  grid-column: 1 / -1;
  border-bottom: 0;
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--fg);
  color: var(--bg);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 14px 0;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.ticker-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bg);
}

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

.section-pad {
  padding: 72px 16px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading h2,
.culture-copy h2,
.reviews-copy h2,
.site-footer h2,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.booking-section,
.services,
.preview-gallery,
.reviews-section,
.roster,
.gallery-page {
  background: transparent;
}

.booking-layout {
  display: grid;
  gap: 14px;
}

.booking-summary,
.appointment-form,
.service-card,
.roster-card,
.google-card,
.gallery-feature {
  padding: 20px;
}

.booking-summary {
  display: grid;
  gap: 18px;
}

.booking-summary strong {
  display: block;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
  font-weight: 760;
}

.price-row b {
  font-size: 1.7rem;
}

fieldset {
  min-width: 0;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
}

.service-options {
  display: grid;
  gap: 10px;
}

.service-options label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--fg);
}

.service-options strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-options b {
  font-weight: 900;
  white-space: nowrap;
}

.service-options label:hover,
.service-options label:has(input:checked),
.time-slot:hover,
.time-slot[aria-pressed="true"] {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 9px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  padding: 0 14px;
  outline: none;
}

textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--fg);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.time-slot {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--fg);
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.closed-copy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.submit-booking {
  width: 100%;
}

.service-board,
.gallery-grid,
.roster-grid,
.reviews-layout,
.culture {
  display: grid;
  gap: 14px;
}

.service-card,
.roster-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.service-card span {
  color: var(--muted);
  font-weight: 900;
}

.service-card h3,
.roster-card h3,
.gallery-feature h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-card strong,
.roster-card span {
  font-weight: 900;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform 500ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(34, 34, 34, 0.92));
}

.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-feature {
  min-height: 260px;
  align-content: end;
}

.gallery-feature svg {
  width: 34px;
  height: 34px;
}

.google-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--fg);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--fg);
  color: var(--bg);
}

.google-card strong {
  display: block;
  margin: 20px 0 10px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.82;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.culture-media {
  min-height: 320px;
  overflow: hidden;
}

.culture-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.culture-tags span,
.avatar {
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--fg);
  color: var(--bg);
}

.culture-tags span {
  padding: 9px 11px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 72px 16px 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 620px;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 56px 16px 64px;
  border-top: 1px solid var(--line);
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(34, 34, 34, 0.96);
  color: var(--fg);
  padding: 16px 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor textarea,
  body.has-custom-cursor label {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease, width 180ms ease, height 180ms ease, background 180ms ease;
  }

  body.has-custom-cursor .cursor-dot,
  body.has-custom-cursor .cursor-ring {
    opacity: 1;
  }

  .cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--fg);
    mix-blend-mode: difference;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    mix-blend-mode: difference;
  }

  body.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (min-width: 700px) {
  body {
    background-size: auto, 72px 72px, 72px 72px, auto;
  }

  .topbar {
    inset: 18px 24px auto;
    grid-template-columns: auto 1fr auto;
    width: min(calc(100% - 48px), calc(var(--max) + 48px));
    padding: 10px 12px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    justify-self: center;
    display: inline-flex;
    gap: 2px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-links a {
    padding: 10px 13px;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    min-height: 92svh;
    display: grid;
    align-items: center;
    padding: 124px 24px 38px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: end;
    gap: 42px;
  }

  h1 {
    font-size: 6rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .availability-panel dl {
    grid-template-columns: repeat(3, 1fr);
  }

  .availability-panel div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .availability-panel div:last-child {
    border-right: 0;
  }

  .signal-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 44px;
  }

  .signal-strip span,
  .signal-strip span:nth-child(2n),
  .signal-strip span:last-child {
    grid-column: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .signal-strip span:last-child {
    border-right: 0;
  }

  .section-pad {
    padding: 96px 24px;
  }

  .section-heading {
    grid-template-columns: 0.34fr 0.66fr;
    gap: 32px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .culture-copy h2,
  .reviews-copy h2,
  .site-footer h2,
  .page-hero h1 {
    font-size: 3.8rem;
  }

  .booking-layout {
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: 18px;
  }

  .booking-summary {
    position: sticky;
    top: 110px;
    align-self: start;
    min-height: 420px;
    padding: 30px;
  }

  .booking-summary strong {
    font-size: 3.4rem;
  }

  .appointment-form,
  .service-card,
  .roster-card,
  .google-card,
  .gallery-feature {
    padding: 30px;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-board,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reviews-layout,
  .culture,
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: center;
    gap: 34px;
  }

  .site-footer address {
    text-align: right;
  }

  .page-main {
    padding-top: 86px;
  }

  .page-hero {
    min-height: 520px;
    padding: 90px 24px 64px;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 8rem;
  }

  .section-heading h2,
  .culture-copy h2,
  .reviews-copy h2,
  .site-footer h2,
  .page-hero h1 {
    font-size: 4.7rem;
  }

  .service-board,
  .gallery-grid.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  h1 {
    font-size: 3.08rem;
  }

  .section-heading h2,
  .culture-copy h2,
  .reviews-copy h2,
  .site-footer h2,
  .page-hero h1 {
    font-size: 2.08rem;
  }

  .service-options label {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .service-options b {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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


/* mobile header safety */
.nav-cta { display: none; }
@media (min-width: 700px) {
  .nav-cta { display: inline-flex; }
}


/* v6 hero gif and mobile booking polish */
.brand-pole-cap {
  background: linear-gradient(180deg, #ffffff, #bdbdbd);
}

.brand-pole-ring {
  background: #1f45b8;
}

.brand-pole-ring.bottom {
  background: #d6d6d6;
}

.brand-pole-body {
  border-inline-color: rgba(255, 255, 255, 0.76);
  background-color: #c51f2a;
  background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 50%, #ffffff 50%, #ffffff 75%, transparent 75%, transparent);
}

.brand-pole-body span {
  background: rgba(255, 255, 255, 0.48);
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-self: end;
}

.hero-gif-card {
  display: grid;
  min-height: 168px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(34, 34, 34, 0.68);
}

.hero-gif-card img {
  width: min(100%, 250px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

@media (max-width: 699px) {
  .hero-panel {
    gap: 12px;
  }

  .hero-gif-card {
    width: min(100%, 280px);
    min-height: 154px;
    justify-self: center;
    background: rgba(255, 255, 255, 0.045);
  }

  .hero-gif-card img {
    width: min(100%, 220px);
    max-height: 176px;
  }

  .booking-section.section-pad {
    padding-top: 58px;
  }

  .booking-layout {
    gap: 18px;
  }

  .booking-summary {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  }

  .booking-summary::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: #ffffff;
  }

  .booking-summary strong {
    max-width: 10ch;
    font-size: 2.25rem;
  }

  .price-row {
    margin-top: 4px;
  }

  .appointment-form {
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.055);
  }

  .appointment-form fieldset {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(34, 34, 34, 0.76);
  }

  .appointment-form legend {
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 10px;
    border: 1px solid var(--fg);
    border-radius: 999px;
    background: var(--fg);
    color: var(--bg);
    font-size: 0.68rem;
  }

  .service-options {
    gap: 9px;
  }

  .service-options label {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 82px;
    padding: 15px 14px 15px 44px;
    background: rgba(255, 255, 255, 0.045);
  }

  .service-options input {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .service-options strong {
    font-size: 1rem;
  }

  .service-options small {
    display: block;
    max-width: 20ch;
    font-size: 0.82rem;
  }

  .service-options b {
    align-self: center;
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
  }

  .form-grid {
    gap: 10px;
    margin-bottom: 12px;
  }

  .form-grid label,
  .appointment-form > label {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(34, 34, 34, 0.76);
  }

  input,
  select,
  textarea {
    min-height: 54px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 1rem;
  }

  textarea {
    min-height: 108px;
  }

  .time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .time-slot {
    min-height: 46px;
    padding-inline: 4px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.92rem;
  }

  .submit-booking {
    min-height: 56px;
    margin-top: 12px;
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-options label {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 44px;
  }

  .service-options b {
    justify-self: start;
  }
}


/* v7 hero/header refinements */
.brand-mark.brand-pole {
  border: 0;
  background: transparent;
}

.hero-panel {
  align-self: center;
  gap: 0;
}

.hero-gif-card {
  min-height: 250px;
  margin-bottom: -6px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.hero-gif-card img {
  width: min(100%, 330px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.42));
}

@media (max-width: 699px) {
  .hero-gif-card {
    width: min(100%, 340px);
    min-height: 218px;
    margin: -6px auto -4px;
    border: 0;
    background: transparent;
  }

  .hero-gif-card img {
    width: min(100%, 292px);
    max-height: 250px;
  }

  .appointment-form {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .booking-summary,
  .appointment-form fieldset,
  .form-grid label,
  .appointment-form > label {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  }

  .appointment-form fieldset,
  .form-grid label,
  .appointment-form > label {
    background: rgba(255, 255, 255, 0.06);
  }

  .service-options label:has(input:checked) {
    background: #ffffff;
    color: #222222;
  }

  .service-options label:has(input:checked) small {
    color: rgba(34, 34, 34, 0.68);
  }

  .service-options label:has(input:checked) b {
    border-color: rgba(34, 34, 34, 0.18);
    background: #222222;
    color: #ffffff;
  }
}

@media (min-width: 700px) {
  .topbar {
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-links {
    border: 0;
    background: transparent;
  }

  .nav-links a {
    position: relative;
    color: #ffffff;
    background: transparent;
    overflow: hidden;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 180ms ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    background: transparent;
    color: #ffffff;
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after,
  .nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-cta {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px 0 16px;
    background: #ffffff;
    color: #222222;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  }

  .nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    align-items: center;
  }

  .hero-gif-card {
    min-height: 330px;
    transform: translateY(-24px);
  }

  .hero-gif-card img {
    width: min(100%, 455px);
    max-height: 420px;
  }
}

@media (min-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.48fr);
  }

  .hero-gif-card {
    min-height: 390px;
    transform: translateY(-42px);
  }

  .hero-gif-card img {
    width: min(100%, 520px);
    max-height: 480px;
  }
}


/* v8 google stars */
.stars {
  color: #fbbc04;
}


/* v9 font testing helpers */
:root {
  --font-ui: "Bricolage Grotesque", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-playpen: "Playpen Sans Arabic", cursive;
  --font-gochi: "Gochi Hand", cursive;
  --font-sedgwick: "Sedgwick Ave Display", cursive;
  --font-slackey: "Slackey", cursive;
}

.font-playpen { font-family: var(--font-playpen); }
.font-gochi { font-family: var(--font-gochi); }
.font-sedgwick { font-family: var(--font-sedgwick); }
.font-slackey { font-family: var(--font-slackey); }


/* v10 hero title font */
.hero h1 {
  font-family: "Sedgwick Ave Display", cursive;
  text-transform: none;
}


/* v11 body font */
body {
  font-family: "Playpen Sans Arabic", cursive;
}

.hero h1 {
  font-family: "Sedgwick Ave Display", cursive;
}


/* v12 section title font */
.section-heading h2,
.culture-copy h2,
.reviews-copy h2,
.site-footer h2,
.page-hero h1 {
  font-family: "Sedgwick Ave Display", cursive;
  text-transform: none;
}
