/* BLACK DYE TATTOO — shared brand stylesheet
   Palette (from BRANDING_BRIEF 2024): #000000 / #FFFFFF / #757474
   Display: Michroma (geometric, "Space Age" spirit) · Body: Jost (Gotham-like geometric sans)
*/

:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --white: #ffffff;
  --gray: #757474;
  --gray-light: #b9b8b8;
  --gray-dark: #1c1c1c;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #FC4B08;
  --accent-bright: #ff6a2b;
  --font-display: "Michroma", sans-serif;
  --font-body: "Jost", sans-serif;
  --radius: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--near-black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  height: auto;
  width: clamp(180px, 26vw, 400px);
}
.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-mark-white {
  display: block;
  width: clamp(160px, 22vw, 280px);
  height: auto;
  border-radius: 10px;
}

.brand-sub {
  display: none;
  font-size: 10px;
  color: var(--gray-light);
  letter-spacing: 0.3em;
  margin-left: 4px;
}
@media (min-width: 640px) { .brand-sub { display: inline; } }

.btn {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-1px); }
.btn-solid { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-bright); border-color: var(--accent-bright); }

.btn-pulse { animation: btn-pulse 2.2s ease-in-out infinite; }
.btn-pulse:hover { animation-play-state: paused; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,75,8,0.55); }
  50% { box-shadow: 0 0 0 10px rgba(252,75,8,0); }
}
@media (prefers-reduced-motion: reduce) { .btn-pulse { animation: none; } }

/* ---------- Hero (full-page background photo + foreground artist portrait) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 30% 20%, #1a1a1a 0%, #050505 55%, #000 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-bg-img.loaded { opacity: 1; }

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-bg-video.loaded { opacity: 1; }

.hero::before {
  /* legibility gradient */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse at 10% 100%, rgba(252,75,8,0.25) 0%, rgba(252,75,8,0) 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 22vw 6vw 8vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap-reverse;
}
@media (min-width: 900px) { .hero-inner { padding: 0 5vw; min-height: 100vh; align-items: center; } }

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

.hero-fg-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(20px);
}
.hero-fg-img.loaded { opacity: 1; transform: translateY(0); }

.hero-empty-note {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.15em; color: var(--gray);
  padding: 0 10%;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--accent-bright);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.04;
  margin: 0 0 22px;
  position: relative;
  display: inline-block;
}

/* signature ink-drip underline */
.ink-drip {
  position: relative;
  display: inline-block;
}
.ink-drip::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  animation: drip-fill 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.ink-drip::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -34px;
  width: 3px;
  height: 0px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  animation: drip-fall 1.8s ease-in 1.1s forwards;
}
@keyframes drip-fill { to { width: 60%; } }
@keyframes drip-fall { to { height: 22px; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ink-drip::after, .ink-drip::before { animation: none; width: 60%; }
}

.hero p.lede {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }



/* ---------- Sections ---------- */
.section { padding: 8vw 5vw; max-width: 1680px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.02em;
}
.section-note { color: var(--gray-light); font-size: 13px; letter-spacing: 0.08em; }

/* ---------- Portfolio grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 6px;
}
@media (max-width: 640px) { .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } }

.grid-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-dark);
  cursor: pointer;
}
.grid-item::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 0 var(--accent);
  transition: box-shadow 0.3s ease;
  pointer-events: none;
}
.grid-item:hover::after { box-shadow: inset 0 0 0 3px var(--accent); }
.grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(15%);
}
.grid-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

.center-row { display: flex; justify-content: center; margin-top: 44px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 22px; right: 5vw;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em;
  border: 1px solid var(--white); border-radius: var(--radius);
  padding: 10px 18px; background: transparent; color: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent-bright); }

/* ---------- WhatsApp floating bubble ---------- */
.wa-bubble {
  position: fixed !important;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  animation: wa-bounce 2.6s ease-in-out infinite;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.wa-bubble:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 4px rgba(37,211,102,0.35); animation-play-state: paused; }
.wa-bubble svg { width: 32px; height: 32px; }
@keyframes wa-bounce {
  0%, 74%, 100% { transform: translateZ(0) translateY(0); }
  80% { transform: translateZ(0) translateY(-10px); }
  86% { transform: translateZ(0) translateY(0); }
  92% { transform: translateZ(0) translateY(-5px); }
  97% { transform: translateZ(0) translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .wa-bubble { animation: none; } }

/* ---------- Modal / Booking form ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.78);
  display: none; align-items: center; justify-content: center;
  z-index: 90; padding: 4vw;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--near-black);
  border: 1px solid var(--line);
  border-radius: 18px;
  width: 100%; max-width: 560px;
  max-height: 88vh; overflow-y: auto;
  padding: 34px;
  position: relative;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: transparent; border: none; color: var(--gray-light);
  font-size: 22px; line-height: 1;
}
.modal h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 6px; }
.modal p.modal-sub { color: var(--gray-light); font-size: 13px; margin: 0 0 26px; }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.08em;
  color: var(--gray-light); margin-bottom: 8px; text-transform: uppercase;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  background: var(--gray-dark);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 90px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--gray-light);
  background: transparent;
}
.chip.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

.form-submit { width: 100%; margin-top: 8px; padding: 15px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  color: var(--gray-light); font-size: 12px; letter-spacing: 0.05em;
}
.socials { display: flex; gap: 16px; }
.socials a { transition: color 0.2s ease; }
.socials a:hover { color: var(--accent-bright); }

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.muted { color: var(--gray-light); }
.hide { display: none !important; }

/* ---------- Tattoo Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

.process-step {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 800px) {
  .process-step { padding: 48px 5vw 48px 0; }
  .process-step:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 5vw; }
  .process-step:nth-child(even) { padding-left: 5vw; }
}

.process-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.process-step p {
  color: var(--gray-light);
  line-height: 1.7;
  font-size: 0.98rem;
  max-width: 52ch;
  margin: 0 0 18px;
}

.process-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.process-tag {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 12px;
}

.process-cta {
  text-align: center;
  padding: 56px 5vw 8px;
}
.process-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.process-cta p {
  color: var(--gray-light);
  margin: 0 0 26px;
}

/* ---------- Booking hero photo gallery (up to 5 photos) ---------- */
.booking-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(140px, 26vw));
  gap: 4px;
  width: 100%;
  max-height: 70vh;
}
.booking-gallery .bg-item { position: relative; overflow: hidden; background: var(--gray-dark); }
.booking-gallery .bg-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.booking-gallery .bg-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.booking-gallery .bg-item:nth-child(2) { grid-column: 3 / 5; grid-row: 1 / 2; }
.booking-gallery .bg-item:nth-child(3) { grid-column: 3 / 4; grid-row: 2 / 3; }
.booking-gallery .bg-item:nth-child(4) { grid-column: 4 / 5; grid-row: 2 / 3; }
.booking-gallery .bg-item:nth-child(5) { display: none; }
@media (min-width: 900px) {
  .booking-gallery { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, minmax(160px, 22vw)); }
  .booking-gallery .bg-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
  .booking-gallery .bg-item:nth-child(2) { grid-column: 4 / 6; grid-row: 1 / 2; }
  .booking-gallery .bg-item:nth-child(3) { grid-column: 6 / 7; grid-row: 1 / 2; }
  .booking-gallery .bg-item:nth-child(4) { grid-column: 4 / 6; grid-row: 2 / 3; }
  .booking-gallery .bg-item:nth-child(5) { display: block; grid-column: 6 / 7; grid-row: 2 / 3; }
}
@media (max-width: 640px) {
  .booking-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 34vw); }
  .booking-gallery .bg-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .booking-gallery .bg-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .booking-gallery .bg-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .booking-gallery .bg-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .booking-gallery .bg-item:nth-child(5) { display: block; grid-column: 2 / 3; grid-row: 3 / 4; }
}

/* ================= Slide-out menu (shared across pages) ================= */
.menu-btn {
  background: transparent; border: 1px solid var(--line); color: var(--white);
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-left: 10px; font-size: 16px; flex-shrink: 0; transition: border-color 0.2s ease, color 0.2s ease;
}
.menu-btn:hover { border-color: var(--accent); color: var(--accent-bright); }
.header-actions { display: flex; align-items: center; gap: 0; }

.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 190; display: none; }
.menu-overlay.open { display: block; }
.menu-panel {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 85vw);
  background: var(--near-black); border-left: 1px solid var(--line); z-index: 200;
  transform: translateX(100%); transition: transform 0.3s ease;
  padding: 90px 30px 30px; overflow-y: auto;
}
.menu-panel.open { transform: translateX(0); }
.menu-close {
  position: absolute; top: 22px; right: 22px; background: transparent; border: none;
  color: var(--gray-light); font-size: 22px; line-height: 1;
}
.menu-panel .menu-section-label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.15em; color: var(--accent-bright);
  margin: 26px 0 10px;
}
.menu-panel .menu-section-label:first-child { margin-top: 0; }
.menu-panel a {
  display: block; padding: 16px 0; border-bottom: 1px solid var(--line);
  color: var(--white); font-family: var(--font-display); font-size: 17px; letter-spacing: 0.01em;
}
.menu-panel a:hover { color: var(--accent-bright); }

/* ================= Legal / info page shared layout ================= */
.legal-hero { padding: 16vw 5vw 6vw; max-width: 900px; margin: 0 auto; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .legal-hero { padding: 8vw 5vw 5vw; } }
.legal-hero .eyebrow { margin-bottom: 16px; }
.legal-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.6rem); margin: 0 0 14px; }
.legal-hero p.sub { color: var(--gray-light); max-width: 60ch; }
.legal-hero .updated { font-size: 12px; color: var(--gray); margin-top: 18px; }

.legal-wrap { max-width: 900px; margin: 0 auto; padding: 6vw 5vw 10vw; }
.content-box {
  background: var(--gray-dark); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px; margin-bottom: 22px;
}
.content-box h2 {
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-bright); margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.content-box h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--white); }
.content-box h3:first-of-type { margin-top: 0; }
.content-box p { color: var(--gray-light); font-size: 14px; line-height: 1.85; margin: 0 0 14px; }
.content-box p:last-child { margin-bottom: 0; }
.content-box ul, .content-box ol { color: var(--gray-light); font-size: 14px; line-height: 1.85; padding-left: 20px; margin: 0 0 14px; }
.content-box li { margin-bottom: 6px; }
.content-box a { color: var(--accent-bright); }
.content-box strong { color: var(--white); }

.callout {
  background: rgba(252,75,8,0.08); border-left: 3px solid var(--accent);
  padding: 16px 20px; margin: 18px 0; border-radius: 0 8px 8px 0;
}
.callout p { color: var(--white); font-size: 13px; margin: 0; }

.callout-warn {
  background: rgba(204,51,51,0.08); border: 1px solid rgba(204,51,51,0.3);
  padding: 18px 22px; border-radius: 8px; margin: 18px 0; display: flex; gap: 14px; align-items: flex-start;
}
.callout-warn p { color: var(--gray-light); font-size: 13px; margin: 0; line-height: 1.8; }
.callout-warn strong { color: #e2857a; display: block; margin-bottom: 6px; }

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 16px; border-radius: 10px; overflow: hidden; }
@media (max-width: 600px) { .amount-grid { grid-template-columns: 1fr; } }
.amount-card { background: var(--near-black); padding: 26px 18px; text-align: center; }
.amount-val { font-family: var(--font-display); font-size: 2.2rem; color: var(--accent-bright); display: block; line-height: 1; margin-bottom: 8px; }
.amount-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); }
.amount-sub { font-size: 12px; color: var(--gray); margin-top: 6px; }

.step-card { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step-card:last-child { border-bottom: none; }
.step-card .num { font-family: var(--font-display); color: var(--accent-bright); font-size: 0.85rem; flex-shrink: 0; width: 30px; }

/* Aftercare specific */
.check-list { list-style: none; padding: 0; margin: 0 0 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--gray-light); line-height: 1.75; margin-bottom: 10px; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.check-yes { background: rgba(74,140,92,0.15); color: #6fae7c; border: 1px solid rgba(74,140,92,0.3); }
.check-no { background: rgba(204,51,51,0.1); color: #e2857a; border: 1px solid rgba(204,51,51,0.3); }

.avoid-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 600px) { .avoid-grid { grid-template-columns: 1fr; } }
.avoid-card { background: var(--near-black); border: 1px solid var(--line); border-radius: 8px; padding: 16px; display: flex; gap: 12px; align-items: flex-start; }
.avoid-card .icon { font-size: 20px; flex-shrink: 0; }
.avoid-card strong { font-size: 13px; color: var(--white); display: block; margin-bottom: 3px; }
.avoid-card p { font-size: 12px; color: var(--gray-light); line-height: 1.6; margin: 0; }

.tl-item { display: grid; grid-template-columns: 90px 1fr; border-bottom: 1px solid var(--line); }
.tl-item:last-child { border-bottom: none; }
.tl-day { padding: 16px; background: var(--near-black); border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.tl-day-num { font-family: var(--font-display); font-size: 1.2rem; color: var(--accent-bright); line-height: 1; }
.tl-day-label { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); margin-top: 4px; }
.tl-content { padding: 16px 20px; }
.tl-content strong { font-size: 13px; color: var(--white); display: block; margin-bottom: 4px; }
.tl-content p { font-size: 13px; color: var(--gray-light); line-height: 1.7; margin: 0; }

.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 640px) { .tips-grid { grid-template-columns: 1fr; } }
.tip-card { background: var(--near-black); border: 1px solid var(--line); border-radius: 8px; padding: 20px; text-align: center; }
.tip-card .icon { font-size: 22px; margin-bottom: 10px; }
.tip-card .title { font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--white); margin-bottom: 6px; text-transform: uppercase; }
.tip-card .desc { font-size: 12px; color: var(--gray-light); line-height: 1.6; }

.legal-cta { text-align: center; padding: 46px 5vw 0; }
.legal-cta h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 12px; }
.legal-cta p { color: var(--gray-light); margin: 0 0 24px; }
.legal-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================= Link tree ================= */
.linktree-page { position: relative; min-height: 100vh; overflow: hidden; }
.linktree-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: 0; transition: opacity 0.6s ease;
}
.linktree-bg-img.loaded { opacity: 0.55; }
.linktree-page::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.95) 100%);
}

.linktree-wrap { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 10vw 6vw 12vw; text-align: center; }
@media (min-width: 700px) { .linktree-wrap { padding: 5vw 6vw 6vw; } }
.linktree-avatar { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 2px solid var(--line); background: var(--gray-dark); }

.linktree-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}
@media (min-width: 640px) { .linktree-list { grid-template-columns: repeat(2, 1fr); } }

.link-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  border: 1px solid var(--link-color, var(--line)); border-radius: 14px;
  background: var(--gray-dark);
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.link-card:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--link-color, var(--accent)) 14%, var(--gray-dark));
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.link-card .link-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--link-color, rgba(255,255,255,0.08));
  overflow: hidden;
}
.link-card .link-icon svg { width: 22px; height: 22px; }
.link-card .link-icon img { width: 100%; height: 100%; object-fit: cover; }
.link-card .link-label { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.02em; }
.link-card .link-sub { font-size: 11px; color: var(--gray-light); margin-top: 2px; }

/* ================= Full-page background photo (booking page) ================= */
.booking-page-bg { position: relative; }
.booking-page-bg > * { position: relative; z-index: 1; }
.booking-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: 0; transition: opacity 0.6s ease;
}
.booking-bg-img.loaded { opacity: 0.38; }
.booking-page-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.98) 100%);
}

/* ================= Sponsors / discount codes ================= */
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.sponsor-card {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--gray-dark); display: flex; flex-direction: column;
}
.sponsor-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--near-black); }
.sponsor-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sponsor-name { font-family: var(--font-display); font-size: 1rem; }
.sponsor-desc { font-size: 13px; color: var(--gray-light); line-height: 1.7; flex: 1; }
.sponsor-code-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px dashed var(--accent); border-radius: 8px; padding: 10px 14px; margin-top: 6px;
  background: rgba(252,75,8,0.08);
}
.sponsor-code { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.08em; color: var(--accent-bright); }
.sponsor-copy-btn {
  background: var(--accent); color: var(--white); border: none; border-radius: var(--radius);
  padding: 8px 16px; font-size: 11px; letter-spacing: 0.08em; font-family: var(--font-display);
}
.sponsor-copy-btn:hover { background: var(--accent-bright); }
.sponsor-copy-btn.copied { background: #4a8c5c; }
.sponsor-link { font-size: 12px; color: var(--gray-light); margin-top: 2px; }
.sponsor-link a { color: var(--accent-bright); }
