/* ==========================================================================
   TATZ BY FATZ — Custom Tattoo Artist Portfolio
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
  --black: #08080a;
  --black-soft: #111114;
  --charcoal: #1a1a1e;
  --charcoal-light: #232328;
  --white: #f5f3ee;
  --off-white: #cfcbc2;
  --red: #c81c26;
  --red-bright: #e8222d;
  --gold: #d4af37;
  --gold-soft: #e8c968;
  --line: rgba(245, 243, 238, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;

  --container: 1240px;
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--red); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--charcoal-light); border-radius: 10px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-soft);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 14px 0 18px;
}
.section-title .accent { color: var(--red-bright); }

.section-lede {
  max-width: 620px;
  color: var(--off-white);
  font-weight: 300;
  font-size: 1.02rem;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

section { position: relative; padding: 110px 0; }
.section-alt { background: var(--black-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), background 0.3s, color 0.3s, border-color 0.3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(200, 28, 38, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(200, 28, 38, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245, 243, 238, 0.35);
}
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-3px); }

.hero-actions .btn-ghost { background: var(--black); border-color: rgba(245, 243, 238, 0.35); }
.hero-actions .btn-ghost:hover { background: var(--black-soft); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--black);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212, 175, 55, 0.45); }

.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark { text-align: center; }
.preloader-logo-img {
  width: 220px; max-width: 70vw; height: auto;
  opacity: 0; transform: scale(0.92);
  filter: drop-shadow(0 0 22px rgba(232,34,45,0.35));
  animation: logoIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes logoIn { to { opacity: 1; transform: scale(1); } }

/* ---------- Nav ---------- */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
#site-nav.scrolled {
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  height: 66px;
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo-img { height: 64px; width: auto; flex-shrink: 0; transition: height 0.4s ease; }
#site-nav.scrolled .brand-logo-img { height: 50px; }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--off-white); font-weight: 500; position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--red-bright); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-ig {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: border-color .3s, transform .3s;
}
.nav-ig:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.nav-ig svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; margin: -12px -10px; cursor: pointer; z-index: 20;
}
.nav-toggle span { height: 2px; background: var(--white); width: 24px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; padding: 0;
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--black); overflow: hidden; }
.hero-media::before {
  content: '';
  position: absolute; inset: -5%;
  background-image: url('../assets/brand/portrait-illustration.jpg');
  background-size: cover;
  background-position: center 12%;
  filter: blur(46px) brightness(0.4) saturate(1.15);
  transform: scale(1.1);
}
.hero-media video, .hero-media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain; object-position: center 6%;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.28) 30%, rgba(8,8,10,0.55) 68%, rgba(8,8,10,0.96) 100%),
    linear-gradient(90deg, rgba(8,8,10,0.75) 0%, rgba(8,8,10,0.1) 45%, rgba(8,8,10,0.1) 55%, rgba(8,8,10,0.75) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: calc(var(--nav-h) + 40px) 0 90px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 22px;
  opacity: 0; animation: heroFade 1s ease 0.3s forwards;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); animation: pulse 1.8s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(1.5);} }

.hero-title {
  font-size: clamp(3.4rem, 10vw, 8rem);
  color: var(--white);
  text-shadow: 0 8px 40px rgba(0,0,0,0.6);
  opacity: 0; animation: heroFade 1s ease 0.5s forwards;
}
.hero-title .line2 { color: transparent; -webkit-text-stroke: 1.5px var(--white); display: block; }
.hero-title .script-swash {
  display: block;
  font-family: var(--font-script); color: var(--red-bright); font-size: 0.42em;
  -webkit-text-stroke: 0; margin-top: -0.15em; text-transform: none;
}

.hero-tagline {
  display: inline-block; width: fit-content;
  margin-top: 22px; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--off-white);
  max-width: 560px; font-weight: 300;
  background: rgba(8,8,10,0.6); backdrop-filter: blur(6px);
  padding: 0.6em 1em; border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  opacity: 0; animation: heroFade 1s ease 0.7s forwards;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 20px;
  opacity: 0; animation: heroFade 1s ease 0.85s forwards;
}
.hero-chip {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid rgba(245,243,238,0.28); border-radius: 30px;
  color: var(--off-white); backdrop-filter: blur(6px); background: rgba(245,243,238,0.04);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px;
  opacity: 0; animation: heroFade 1s ease 1s forwards;
}
@keyframes heroFade { to { opacity: 1; } }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--off-white); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0; animation: heroFade 1s ease 1.3s forwards;
}
.scroll-cue .stick { width: 1px; height: 40px; background: linear-gradient(var(--gold-soft), transparent); position: relative; overflow: hidden; }
.scroll-cue .stick::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: linear-gradient(var(--white), transparent);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue { to { top: 40px; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red-bright);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  position: relative;
  z-index: 3;
}
.marquee-track { display: inline-flex; animation: marquee 32s linear infinite; }
.marquee span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee span::after { content: '\2726'; font-size: 0.8rem; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- About ---------- */
#about .about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center;
}
.about-media { position: relative; }
.about-media-main {
  position: relative;
  z-index: 1;
  border-radius: 4px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  background: var(--black-soft);
}
.about-media-main::before {
  content: '';
  position: absolute; inset: -8%;
  background-image: url('../assets/brand/portrait-illustration.jpg');
  background-size: cover;
  background-position: center 15%;
  filter: blur(30px) brightness(0.4) saturate(1.15);
}
.about-media-main img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center 4%; }
.about-media-float {
  position: absolute; z-index: 2; width: 46%; aspect-ratio: 4/5; bottom: -34px; right: -34px;
  border: 6px solid var(--black-soft); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow);
}
.about-media-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -22px; left: -22px; z-index: 3;
  width: 108px; height: 108px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-badge .ring {
  position: absolute; inset: 0; border-radius: 50%;
  animation: spin 22s linear infinite;
}
.about-badge .core {
  position: absolute; width: 74%; height: 74%; border-radius: 50%; background: var(--red-bright);
  display: flex; align-items: center; justify-content: center; text-align: center;
  flex-direction: column; gap: 2px;
  box-shadow: 0 12px 30px rgba(200,28,38,0.45);
  color: var(--white); font-family: var(--font-display); letter-spacing: 0.04em;
}
.about-badge .core .small { font-size: 0.62rem; letter-spacing: 0.1em; }
.about-badge .core .star { color: var(--gold-soft); font-size: 1.1rem; line-height: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.about-copy p { color: var(--off-white); margin-bottom: 18px; font-size: 1.02rem; }
.about-copy p:first-of-type { font-size: 1.18rem; color: var(--white); font-weight: 400; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
.about-stats .stat { border-left: 2px solid var(--red-bright); padding-left: 16px; }
.about-stats .stat b { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--white); }
.about-stats .stat span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--off-white); }

.about-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.about-list li {
  list-style: none; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 30px; color: var(--off-white);
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card {
  background: var(--black); padding: 46px 34px; position: relative; overflow: hidden;
  transition: background 0.4s ease;
}
.service-card:hover { background: var(--black-soft); }
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red-bright);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.45s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon { width: 46px; height: 46px; color: var(--gold-soft); margin-bottom: 22px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: 0.03em; }
.service-card p { color: var(--off-white); font-size: 0.92rem; }
.service-card.not-offered { opacity: 0.55; }
.service-card.not-offered h3 { text-decoration: line-through; text-decoration-color: var(--red-bright); }

/* ---------- Portfolio ---------- */
.portfolio-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.p-tab {
  padding: 10px 22px; border: 1px solid var(--line); border-radius: 30px;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--off-white);
  cursor: pointer; background: transparent; transition: all 0.3s ease;
}
.p-tab:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.p-tab.active { background: var(--red-bright); border-color: var(--red-bright); color: var(--white); }

.portfolio-grid {
  columns: 3 320px; column-gap: 18px;
}
.p-item {
  position: relative; break-inside: avoid; margin-bottom: 18px; border-radius: 3px;
  overflow: hidden; cursor: pointer; background: var(--charcoal); border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.p-item:hover { transform: translateY(-6px); }
.p-item img, .p-item video { width: 100%; display: block; height: auto; transition: transform 0.6s ease; }
.p-item:hover img, .p-item:hover video { transform: scale(1.06); }
.p-item .p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,10,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.35s ease;
}
.p-item:hover .p-overlay { opacity: 1; }
.p-overlay .p-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.03em; }
.p-overlay .p-tag { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; display:block; }
.p-motion-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  background: rgba(8,8,10,0.7); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,243,238,0.25); border-radius: 30px;
  padding: 6px 12px; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.p-motion-badge .rec { width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); animation: pulse 1.6s ease infinite; }

.portfolio-cta { text-align: center; margin-top: 56px; }

/* ---------- Process ---------- */
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.process-video { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 9/16; max-height: 640px; margin: 0 auto; position: relative; }
.process-video video { width: 100%; height: 100%; object-fit: cover; }
.process-steps { counter-reset: step; }
.process-step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.process-step:first-child { padding-top: 0; }
.process-step .num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--red-bright); flex-shrink: 0; width: 60px;
}
.process-step h4 { font-size: 1.25rem; margin-bottom: 6px; }
.process-step p { color: var(--off-white); font-size: 0.94rem; }
.process-thumbs { display: flex; gap: 14px; margin-top: 30px; }
.process-thumbs img { width: 84px; height: 84px; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); filter: grayscale(0.3); transition: filter .3s, transform .3s; }
.process-thumbs img:hover { filter: grayscale(0); transform: translateY(-4px); }

/* ---------- Instagram CTA ---------- */
.ig-banner {
  position: relative; padding: 90px 0; text-align: center; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,28,38,0.18), transparent 60%), var(--black);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ig-banner .eyebrow { justify-content: center; }
.ig-banner .eyebrow::before { display:none; }
.ig-banner h2 { margin: 14px 0 26px; }
.ig-handle { font-family: var(--font-script); font-size: 2.6rem; color: var(--gold-soft); display: block; margin: 6px 0 30px; }

/* ---------- Booking ---------- */
.booking-wrap { display: grid; grid-template-columns: 1fr 0.95fr; gap: 60px; align-items: flex-start; }
.booking-frame-shell {
  position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: var(--charcoal); min-height: 600px;
}
.booking-frame-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--black-soft);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--off-white);
}
.booking-frame-head a { color: var(--gold-soft); }
.booking-frame-head a:hover { color: var(--white); }
.live-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); margin-right: 8px; vertical-align: middle; animation: pulse 1.8s ease infinite; }
.consult-step-counter { font-variant-numeric: tabular-nums; }

/* ---- Interactive consult wizard (replaces the old calendar embed) ---- */
.consult-wizard { position: relative; padding: 40px 32px 34px; min-height: 551px; display: flex; flex-direction: column; }
.consult-progress { height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; margin-bottom: 36px; flex-shrink: 0; }
.consult-progress-fill { height: 100%; width: 20%; background: linear-gradient(90deg, var(--red-bright), var(--gold-soft)); transition: width 0.5s cubic-bezier(.2,.8,.2,1); }

.consult-steps { position: relative; flex: 1; min-height: 320px; }
.consult-step {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden; transform: translateX(28px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
.consult-step.active { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }

.consult-kicker { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.consult-q { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.01em; margin: 10px 0 28px; text-transform: none; }

.consult-options { display: flex; flex-wrap: wrap; gap: 12px; }
.consult-chip {
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 400; color: var(--white);
  background: var(--black-soft); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 20px; cursor: pointer; text-align: left; flex: 1 1 calc(50% - 12px); min-width: 150px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  position: relative;
}
.consult-chip em { color: var(--off-white); font-style: normal; font-size: 0.82em; opacity: 0.65; }
.consult-chip:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.consult-chip.selected { border-color: var(--red-bright); background: rgba(200,28,38,0.14); }
.consult-chip.selected::after {
  content: '✓'; position: absolute; top: 10px; right: 12px; color: var(--red-bright); font-size: 0.85rem;
}

.consult-input, .consult-textarea {
  width: 100%; background: var(--black-soft); border: 1px solid var(--line); border-radius: 8px;
  color: var(--white); font-family: var(--font-body); font-size: 1rem; padding: 14px 16px; margin-bottom: 14px;
  resize: vertical;
}
.consult-input:focus, .consult-textarea:focus { outline: none; border-color: var(--gold-soft); }
.consult-input::placeholder, .consult-textarea::placeholder { color: rgba(207,203,194,0.45); }

.consult-summary {
  background: var(--black-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: 20px 22px; margin: 4px 0 22px; font-size: 0.9rem; color: var(--off-white); max-height: 190px; overflow-y: auto;
}
.consult-summary-row { padding: 8px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; }
.consult-summary-row:first-child { border-top: none; padding-top: 0; }
.consult-summary-row b { color: var(--white); font-weight: 500; text-align: right; }

.consult-send-actions { display: flex; flex-direction: column; gap: 12px; }
.consult-send-actions .btn { justify-content: center; }
.consult-restart { display: block; margin: 18px auto 0; background: none; border: none; color: var(--off-white); font-size: 0.78rem; letter-spacing: 0.04em; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.consult-restart:hover { color: var(--gold-soft); }

.consult-back {
  position: absolute; top: 40px; right: 32px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--off-white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.consult-back.show { opacity: 1; visibility: visible; }
.consult-back:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.consult-back svg { width: 16px; height: 16px; }

.booking-side { }
.contact-card {
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 6px; padding: 34px; margin-bottom: 22px;
}
.contact-card-primary { border-color: rgba(200,28,38,0.35); }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.contact-card-lede { color: var(--off-white); font-size: 0.9rem; margin-bottom: 22px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.contact-row {
  display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line);
}
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(200,28,38,0.12); color: var(--red-bright);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .icon svg { width: 19px; height: 19px; }
.contact-row .label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--off-white); display: block; }
.contact-row .value { font-size: 1.02rem; color: var(--white); word-break: break-word; }
.contact-row a.value:hover { color: var(--gold-soft); }

.deposit-note {
  display: flex; gap: 14px; padding: 22px; border: 1px dashed rgba(212,175,55,0.4); border-radius: 6px;
  background: rgba(212,175,55,0.06); color: var(--gold-soft); font-size: 0.88rem; align-items: flex-start;
}
.deposit-note svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

/* ---------- Footer ---------- */
footer { background: var(--black-soft); border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo-img { height: 64px; width: auto; }
.footer-brand p { color: var(--off-white); margin-top: 16px; max-width: 300px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: border-color .3s, transform .3s;
}
.footer-social a:hover { border-color: var(--red-bright); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.9rem; color: var(--off-white); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--off-white); letter-spacing: 0.02em;
}
.footer-bottom a { color: var(--off-white); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Lightbox ---------- */
#lightbox {
  position: fixed; inset: 0; background: rgba(4,4,5,0.96); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox .lb-content { max-width: 900px; max-height: 86vh; width: 100%; text-align: center; }
#lightbox img, #lightbox video { max-height: 78vh; margin: 0 auto; border-radius: 4px; box-shadow: var(--shadow); }
#lightbox .lb-caption { margin-top: 18px; font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.03em; }
#lightbox .lb-close {
  position: absolute; top: 28px; right: 32px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .3s, transform .3s;
}
#lightbox .lb-close:hover { border-color: var(--red-bright); transform: rotate(90deg); }
#lightbox .lb-close svg { width: 18px; height: 18px; }

/* ---------- Back to top ---------- */
#to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%; background: var(--red-bright); color: var(--white);
  display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s;
}
#to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#to-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  #about .about-grid, .booking-wrap, .process-wrap { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 40px; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-side { position: static; }
  .portfolio-grid { columns: 2 260px; }
}

@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 0; top: 0; height: 100vh; background: var(--black); flex-direction: column;
    justify-content: center; gap: 30px; transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.8,.2,1); z-index: 15; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-ig { display: none; }
  section { padding: 74px 0; }
  .section-head { margin-bottom: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-media { max-width: none; }
  .about-media-float { width: 62%; right: -10px; bottom: -28px; border-width: 4px; }
  .about-badge { width: 104px; height: 104px; top: -16px; left: -16px; }
  .about-badge .core .small { font-size: 0.68rem; }
  .about-badge .core .star { font-size: 1.3rem; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.5) 22%, rgba(8,8,10,0.8) 55%, rgba(8,8,10,0.97) 100%);
  }
  .hero-tagline, .hero-meta, .hero-eyebrow { text-shadow: 0 2px 14px rgba(8,8,10,0.9); }
  .hero-chip { background: rgba(8,8,10,0.55); border-color: rgba(245,243,238,0.4); }
  .portfolio-grid { columns: 2 140px; column-gap: 10px; }
  .p-item { margin-bottom: 10px; }
  .p-item .p-overlay { padding: 12px; opacity: 1; background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,0.94) 100%); }
  .p-overlay .p-name { font-size: 0.92rem; }
  .p-overlay .p-tag { font-size: 0.6rem; }
  .p-motion-badge { top: 8px; right: 8px; padding: 4px 9px; font-size: 0.56rem; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 5rem); }
}
