/* Govind Kafle · The Purple G Bladz
   Direction: blade geometry + shop menu board
   Type: Syne (display) · Figtree (body)
   Media slots: 1–14 + video.mp4
*/

:root {
  --ink: oklch(0.145 0.02 305);
  --ink-2: oklch(0.18 0.022 300);
  --steel: oklch(0.24 0.018 295);
  --line: oklch(0.92 0.02 300 / 0.1);
  --line-strong: oklch(0.92 0.02 300 / 0.18);
  --chalk: oklch(0.96 0.012 95);
  --chalk-2: oklch(0.93 0.014 90);
  --ink-on-light: oklch(0.2 0.02 300);
  --muted: oklch(0.72 0.03 300);
  --muted-on-light: oklch(0.45 0.025 300);
  --violet: oklch(0.58 0.22 305);
  --lilac: oklch(0.82 0.09 310);
  --blade: oklch(0.94 0.01 100);
  --radius: 10px;
  --radius-sm: 6px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --max: 1080px;
  --ph-fg: oklch(0.78 0.08 310 / 0.55);
  --ph-bg: oklch(0.2 0.03 300);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 400;
  font-synthesis: none;
  color: var(--blade);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

em {
  font-style: italic;
  color: var(--lilac);
  font-weight: 500;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
  color: var(--lilac);
}

::selection {
  background: oklch(0.58 0.22 305 / 0.35);
  color: white;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Fixed purple blade edge down the viewport */
.blade-line {
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: max(0.75rem, calc(50% - 560px));
  width: 2px;
  z-index: 55;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--violet) 12%,
    var(--lilac) 50%,
    var(--violet) 88%,
    transparent 100%
  );
  opacity: 0.55;
  box-shadow: 0 0 18px oklch(0.58 0.22 305 / 0.35);
}

@media (max-width: 720px) {
  .blade-line {
    left: 0.5rem;
    opacity: 0.35;
  }
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Placeholders */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      oklch(0.92 0.02 300 / 0.03) 10px,
      oklch(0.92 0.02 300 / 0.03) 11px
    ),
    var(--ph-bg);
  isolation: isolate;
}

.ph::before {
  content: attr(data-n);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 4.2rem);
  letter-spacing: -0.04em;
  color: var(--ph-fg);
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.ph::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed oklch(0.82 0.09 310 / 0.28);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.ph img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  outline: 1px solid oklch(1 0 0 / 0.1);
  outline-offset: -1px;
  transition: opacity 0.25s var(--ease);
}

.ph.has-media img {
  opacity: 1;
}

.ph.has-media::before,
.ph.has-media::after {
  opacity: 0;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem;
  transition:
    background 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: oklch(0.145 0.02 305 / 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.nav-word {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

@media (max-width: 520px) {
  .nav-word {
    display: none;
  }
}

.ph-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px oklch(0.82 0.09 310 / 0.35);
}

.ph-logo::before {
  font-size: 0.95rem;
}

.ph-logo::after {
  inset: 4px;
  border-radius: 50%;
}

.ph-logo img {
  border-radius: 50%;
}

.nav-links {
  display: none;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--blade);
  opacity: 0.78;
  transition: opacity 0.2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    opacity: 1;
  }
}

@media (min-width: 920px) {
  .nav {
    padding: 0 1.75rem;
  }
  .nav-links {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.15s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  cursor: pointer;
  user-select: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn-sm {
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  font-size: 0.84rem;
}

.btn-fill {
  background: var(--blade);
  color: var(--ink);
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 0.08),
    0 10px 28px -14px oklch(0.58 0.22 305 / 0.55);
}

@media (hover: hover) and (pointer: fine) {
  .btn-fill:hover {
    background: white;
    box-shadow:
      0 0 0 1px oklch(1 0 0 / 0.12),
      0 0 0 4px oklch(0.58 0.22 305 / 0.18),
      0 12px 30px -12px oklch(0.58 0.22 305 / 0.5);
  }
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--blade);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    border-color: var(--lilac);
    color: white;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero-photo-a {
  clip-path: polygon(0 0, 56% 0, 44% 100%, 0 100%);
}

.hero-photo-b {
  clip-path: polygon(56% 0, 100% 0, 100% 100%, 44% 100%);
}

.hero-photo::before {
  font-size: clamp(3.5rem, 12vw, 8rem);
}

.hero-slash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 47.5%,
    oklch(0.58 0.22 305 / 0.85) 49.7%,
    oklch(0.82 0.09 310 / 0.95) 50%,
    oklch(0.58 0.22 305 / 0.85) 50.3%,
    transparent 52.5%
  );
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, oklch(0.4 0.14 305 / 0.28), transparent 70%),
    linear-gradient(180deg, oklch(0.145 0.02 305 / 0.4) 0%, oklch(0.145 0.02 305 / 0.55) 48%, oklch(0.145 0.02 305 / 0.94) 100%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.35rem 4.5rem;
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
  margin: 0 0 1.1rem;
}

.eyebrow.center,
.eyebrow.social-eye {
  display: flex;
  justify-content: center;
}

.eyebrow.tight {
  margin-bottom: 0.35rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px oklch(0.58 0.22 305 / 0.2);
}

.hero h1 {
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.h1-brand {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lilac);
}

.h1-name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 11vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: white;
  text-shadow: 0 12px 40px oklch(0 0 0 / 0.55);
}

.hero-tag {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: oklch(0.92 0.01 100 / 0.88);
  margin: 0 0 1.85rem;
  font-weight: 400;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--lilac));
}

.scroll-hint span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lilac);
  margin-left: -2px;
  animation: drip 1.8s var(--ease) infinite;
}

@keyframes drip {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}

/* Sections */
.section {
  padding: clamp(3.75rem, 9vw, 6.5rem) 0;
}

.section-title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.2rem 0 0;
  text-wrap: balance;
  color: white;
}

.kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
}

.section-head {
  margin-bottom: 2rem;
}

.split-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.head-aside {
  max-width: 240px;
  text-align: end;
}

.center-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.center-head .section-title {
  margin-top: 0.35rem;
}

.lead {
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  color: oklch(0.94 0.01 100 / 0.94);
  margin: 0 0 1rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.muted {
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* Intro */
.intro {
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  gap: 1.5rem 3rem;
}

@media (min-width: 820px) {
  .intro-grid {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
  }
}

.intro-copy {
  max-width: 58ch;
}

/* Reel */
.reel {
  padding-top: clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(ellipse 65% 55% at 50% 30%, oklch(0.4 0.14 305 / 0.16), transparent 70%),
    var(--ink);
}

.video-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow:
    0 0 0 1px var(--line),
    0 28px 50px -30px oklch(0 0 0 / 0.85);
}

.video-ph video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  z-index: 2;
}

.video-ph.has-media video {
  opacity: 1;
}

.video-ph-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1.5rem;
  margin: 12px;
  border: 1px dashed oklch(0.82 0.09 310 / 0.28);
  border-radius: var(--radius);
  transition: opacity 0.25s var(--ease);
}

.video-ph.has-media .video-ph-fallback {
  opacity: 0;
  pointer-events: none;
}

.video-ph-play {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: oklch(0.58 0.22 305 / 0.15);
  border: 1px solid oklch(0.82 0.09 310 / 0.4);
  color: var(--lilac);
  font-size: 1rem;
  padding-left: 3px;
}

.video-ph-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  color: white;
}

.video-ph-file {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services — menu board */
.services {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 45%, var(--ink) 100%);
  border-block: 1px solid var(--line);
}

.menu-board {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: oklch(0.16 0.02 300);
}

.menu-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}

.menu-row:last-child {
  border-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .menu-row:hover {
    background: oklch(0.2 0.03 305 / 0.65);
  }
}

.menu-row-accent {
  grid-template-columns: 1fr auto;
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, oklch(0.58 0.22 305 / 0.18), transparent 55%),
    oklch(0.17 0.03 305);
}

.menu-thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  flex: 0 0 auto;
}

.menu-thumb::before {
  font-size: 1.5rem;
}

.menu-body {
  min-width: 0;
}

.menu-body.full-span {
  min-width: 0;
}

.menu-top {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.menu-top h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: white;
  white-space: nowrap;
}

.menu-dots {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted oklch(0.82 0.09 310 / 0.35);
  transform: translateY(-0.3em);
}

.price {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 1.15rem;
  color: var(--lilac);
  white-space: nowrap;
}

.price.inquire {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
  text-wrap: pretty;
}

.dur {
  color: oklch(0.8 0.03 300 / 0.75);
  font-size: 0.86em;
}

.menu-book {
  flex: 0 0 auto;
}

@media (max-width: 700px) {
  .menu-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "thumb body"
      "book book";
  }
  .menu-thumb {
    width: 72px;
    height: 72px;
    grid-area: thumb;
  }
  .menu-body {
    grid-area: body;
  }
  .menu-book {
    grid-area: book;
    width: 100%;
  }
  .menu-row-accent {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "book";
  }
  .menu-top h3 {
    white-space: normal;
  }
  .menu-dots {
    display: none;
  }
  .head-aside {
    text-align: start;
  }
}

/* Work gallery */
.work {
  background: var(--chalk);
  color: var(--ink-on-light);
}

.on-light .section-title,
.work .section-title {
  color: var(--ink-on-light);
}

.on-light .kicker {
  color: var(--violet);
}

.on-light .muted,
.work .muted {
  color: var(--muted-on-light);
}

.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .g-lg {
    grid-row: span 2;
  }
  .g-wide {
    grid-column: 2 / span 2;
  }
}

.g-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: oklch(0.88 0.02 300);
  min-height: 240px;
  box-shadow: 0 1px 0 oklch(0 0 0 / 0.06);
}

.g-ph {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: inherit;
  --ph-bg: oklch(0.88 0.025 300);
  --ph-fg: oklch(0.45 0.12 305 / 0.55);
}

.g-lg .g-ph {
  min-height: 100%;
  height: 100%;
}

.g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.5rem 0.95rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(transparent, oklch(0 0 0 / 0.72));
}

.work-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.work-cta p {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.work-cta a {
  color: var(--violet);
}

.work .btn-ghost {
  border-color: oklch(0.2 0.02 300 / 0.22);
  color: var(--ink-on-light);
}

@media (hover: hover) and (pointer: fine) {
  .work .btn-ghost:hover {
    border-color: var(--violet);
    color: var(--violet);
  }
}

/* Reviews */
.reviews {
  background: var(--chalk-2);
  color: var(--ink-on-light);
  border-top: 1px solid oklch(0.2 0.02 300 / 0.08);
}

.reviews .section-title {
  color: var(--ink-on-light);
}

.review-grid {
  display: grid;
  gap: 0;
  border: 1px solid oklch(0.2 0.02 300 / 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

@media (min-width: 800px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .review-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review {
  margin: 0;
  padding: 1.35rem 1.2rem 1.5rem;
  border-right: 1px solid oklch(0.2 0.02 300 / 0.1);
  border-bottom: 1px solid oklch(0.2 0.02 300 / 0.1);
  background: oklch(0.995 0.005 95);
}

.review p {
  font-size: 1.02rem;
  line-height: 1.45;
  margin: 0 0 1.1rem;
  color: var(--ink-on-light);
  text-wrap: pretty;
}

.review footer {
  font-size: 0.84rem;
  color: var(--muted-on-light);
  font-weight: 600;
}

.stars {
  margin-top: 1.75rem;
  color: var(--violet);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.stars span {
  letter-spacing: 0;
  color: var(--muted-on-light);
  font-size: 0.9rem;
  margin-left: 0.45rem;
  font-variant-numeric: tabular-nums;
}

.center {
  text-align: center;
}

/* Social */
.social-band {
  background: var(--ink);
  text-align: center;
  padding: clamp(3.75rem, 9vw, 5.5rem) 1.5rem;
  border-block: 1px solid var(--line);
}

.social-logo-ph {
  width: min(100%, 340px);
  aspect-ratio: 16 / 7;
  margin: 0 auto 1.35rem;
  border-radius: var(--radius-sm);
}

.social-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-band h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  margin: 0 0 0.4rem;
  color: white;
}

.social-sub {
  color: var(--muted);
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
}

/* Visit */
.visit {
  background: var(--ink);
}

.visit-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.75rem;
    align-items: start;
  }
}

.info-block {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.info-block h3 {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
  font-weight: 600;
}

.info-block p {
  margin: 0;
  font-size: 1.05rem;
}

.info-block a {
  color: var(--blade);
}

.text-link {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--lilac) !important;
  font-size: 0.92rem;
  font-weight: 600;
}

.visit-card {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 0 0 1px var(--line);
}

.visit-ph {
  width: 100%;
  height: 250px;
  border-radius: 0;
}

.visit-card-body {
  padding: 1.4rem;
}

.visit-card-body h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
  color: white;
}

.visit-card-body p {
  color: var(--muted);
  margin: 0 0 1.15rem;
}

/* Footer */
.footer {
  background: oklch(0.11 0.018 305);
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 5.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer {
    padding-bottom: 1.5rem;
  }
}

.footer-mark-wrap {
  display: inline-block;
  margin-bottom: 0.7rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-mark-wrap::before {
  font-size: 1.05rem;
}

.footer-mark-wrap::after {
  inset: 5px;
  border-radius: 50%;
}

.footer-mark {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.footer-name {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: white;
}

.footer h4 {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.78 0.05 145);
  font-weight: 600;
}

.footer p {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .footer a:hover {
    color: var(--blade);
  }
}

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Mobile sticky book */
.mobile-book {
  position: fixed;
  z-index: 45;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blade);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow:
    0 12px 30px -10px oklch(0 0 0 / 0.55),
    0 0 0 4px oklch(0.58 0.22 305 / 0.2);
  transition: transform 0.15s var(--ease);
}

.mobile-book:active {
  transform: scale(0.96);
}

@media (min-width: 760px) {
  .mobile-book {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .scroll-hint span {
    animation: none;
  }
  .btn,
  .menu-row,
  .ph img {
    transition: none;
  }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--lilac);
  outline-offset: 3px;
}
