/* ================================================================
   NEKO INK — Ghost Theme v2
   Color theory: achromatic tonal rhythm
   Sections alternate light ↔ dark for visual breathing.
   Pure white (#FFF) and near-black (#141414) reserved for
   maximum contrast. Mid-gray (#888) as the connector.
   ================================================================

   PALETTE
   ────────────────────────────────────────────────────
   --white       #FFFFFF   hero text, CTAs on dark
   --near-white  #F0F0F0   light section backgrounds
   --light-gray  #D0D0D0   borders, dividers on light
   --mid-gray    #888888   body text, secondary labels
   --dark-gray   #444444   headings on light sections
   --charcoal    #2A2A2A   dark section backgrounds
   --near-black  #141414   deepest sections (FAQ, hero overlay)
   ──────────────────────────────────────────────────── */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --near-white:  #F0F0F0;
  --light-gray:  #D0D0D0;
  --mid-gray:    #888888;
  --dark-gray:   #444444;
  --charcoal:    #2A2A2A;
  --near-black:  #141414;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 70px;
  --section-pad: 112px;
  --container: 1280px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

/* Light — near-white, dark text */
.section--light { background: var(--near-white); }

/* White — pure white, dark text */
.section--white { background: var(--white); border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); }

/* Dark — charcoal, light text */
.section--dark { background: var(--charcoal); }

/* Near-black — deepest dark, lightest text */
.section--near-black { background: var(--near-black); }

/* Section head */
.section-head { margin-bottom: 64px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
}
.section-label--light { color: var(--mid-gray); }
.section-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}
.section-title--dark { color: var(--near-black); }
.section-title--light { color: var(--white); }
.section-sub { font-size: 16px; max-width: 540px; line-height: 1.7; }
.section-sub--dark { color: var(--mid-gray); }
.section-action { text-align: center; margin-top: 48px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.22s var(--ease);
}
/* White button — for use on dark backgrounds */
.btn--white {
  background: var(--white);
  color: var(--near-black);
}
.btn--white:hover { background: var(--near-white); }

/* Ghost white — transparent, white border, for dark backgrounds */
.btn--ghost-white {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* Black — for use on light/white backgrounds */
.btn--black {
  background: var(--near-black);
  color: var(--white);
}
.btn--black:hover { background: var(--charcoal); }

/* Dark outline — border only, for light backgrounds */
.btn--dark-outline {
  border: 1px solid var(--dark-gray);
  color: var(--dark-gray);
}
.btn--dark-outline:hover { border-color: var(--near-black); color: var(--near-black); }

.btn--full { width: 100%; text-align: center; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
/* Over hero: transparent */
.nav--transparent { background: transparent; }
/* Scrolled: near-black with border */
.nav.scrolled {
  background: rgba(20,20,20,0.96);
  border-bottom-color: #333;
  backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__book {
  border: 1px solid rgba(255,255,255,0.35) !important;
  padding: 7px 18px;
  color: var(--white) !important;
  transition: all 0.2s !important;
}
.nav__book:hover { background: var(--white) !important; color: var(--near-black) !important; border-color: var(--white) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.28s; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* The image layer — covers full hero */
.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero__image--fallback {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 40%, #111 100%);
}
/* Vignette overlay — keeps text legible without covering image */
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.1) 70%, transparent 100%),
    linear-gradient(to right, rgba(10,10,10,0.5) 0%, transparent 60%);
}
/* Content floats above image */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 860px;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
/* The signature element: huge italic + roman pairing */
.hero__title {
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}
.hero__title span {
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  margin-left: 0.06em;
}
.hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.8; }
}

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee {
  background: var(--near-black);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  animation: marqueeScroll 28s linear infinite;
}
.marquee__sep { color: #444; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}
.service-item {
  background: var(--near-white);
  padding: 40px 32px;
  transition: background 0.25s;
}
.service-item:hover { background: var(--white); }
.service-item__icon {
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 20px;
}
.service-item__title {
  font-size: 22px;
  color: var(--near-black);
  margin-bottom: 10px;
}
.service-item__desc { font-size: 14px; color: var(--mid-gray); line-height: 1.72; }

/* ── ARTISTS ─────────────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.artist-card { display: flex; flex-direction: column; }
.artist-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 20px;
}
.artist-card__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #333, #222);
  color: var(--mid-gray);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.artist-card__style {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 6px;
}
.artist-card__name {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
}
.artist-card__bio { font-size: 14px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 14px; }
.artist-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.artist-card__link:hover { color: var(--white); }

/* ── PORTFOLIO ───────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--near-white);
  display: block;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: rgba(20,20,20,0.55);
  display: flex; align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.28s;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay span {
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-display);
}
.portfolio-item--empty {
  display: flex; align-items: center; justify-content: center;
  background: var(--near-white);
  cursor: default;
}
.portfolio-item--empty p {
  font-size: 13px;
  color: var(--light-gray);
  text-align: center;
  padding: 20px;
}

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--near-white);
  padding: 44px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.pricing-card--featured {
  background: var(--white);
  box-shadow: 0 0 0 2px var(--near-black) inset;
}
.pricing-card__badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--near-black);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 18px;
}
.pricing-card__tier {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid-gray);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--near-black);
  line-height: 1;
}
.pricing-card__price span { font-size: 28px; }
.pricing-card__size { font-size: 13px; color: var(--mid-gray); }
.pricing-card__list {
  flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px;
}
.pricing-card__list li {
  font-size: 14px; color: var(--dark-gray);
  padding-left: 18px; position: relative;
}
.pricing-card__list li::before { content: '—'; position: absolute; left: 0; color: var(--light-gray); }
.pricing-note { font-size: 13px; color: var(--mid-gray); text-align: center; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid #2a2a2a; }
.faq-item { border-bottom: 1px solid #2a2a2a; }
.faq-item__q {
  width: 100%; text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 21px;
  color: rgba(255,255,255,0.85);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-item__q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 18px; color: var(--mid-gray);
  transition: transform 0.28s; flex-shrink: 0;
}
.faq-item__q:hover { color: var(--white); }
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { display: none; padding-bottom: 22px; }
.faq-item.open .faq-item__a { display: block; }
.faq-item__a p { font-size: 15px; color: var(--mid-gray); line-height: 1.78; }

/* ── BOOKING ─────────────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.booking-info__title {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--near-black);
  margin: 12px 0 16px;
}
.booking-info__desc { font-size: 15px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 36px; }
.booking-info__details { display: flex; flex-direction: column; gap: 16px; }
.booking-info__row { display: flex; flex-direction: column; gap: 3px; }
.booking-info__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid-gray);
}
.booking-info__val { font-size: 15px; color: var(--dark-gray); }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid-gray);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--near-white);
  border: 1px solid var(--light-gray);
  color: var(--near-black);
  padding: 12px 14px;
  width: 100%; outline: none;
  font-size: 14px;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--dark-gray); background: var(--white); }
.form-field input[type="file"] { padding: 10px 14px; cursor: pointer; color: var(--mid-gray); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--mid-gray); text-align: center; }

/* ── BLOG GRID ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--light-gray);
  transition: border-color 0.2s, transform 0.25s var(--ease);
}
.blog-card:hover { border-color: var(--dark-gray); transform: translateY(-3px); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--near-white); }
.blog-card__img--empty { background: var(--near-white); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__date {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid-gray);
}
.blog-card__title { font-size: 20px; color: var(--near-black); }
.blog-card__excerpt { font-size: 14px; color: var(--mid-gray); line-height: 1.65; flex: 1; }
.blog-card__more {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark-gray); margin-top: 6px;
}

/* ── POST PAGE ───────────────────────────────────────────────── */
.post-page { background: var(--white); }
.post-hero {
  position: relative;
  height: 70vh; min-height: 480px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.post-hero__vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
}
.post-hero__content {
  position: relative; z-index: 2;
  padding: 0 64px 56px;
  max-width: 900px;
}
.post-hero__tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.post-hero__title { font-size: clamp(32px, 5vw, 60px); color: var(--white); margin-bottom: 10px; }
.post-hero__date { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; }
.post-header { padding: 140px 64px 48px; max-width: 900px; margin: 0 auto; border-bottom: 1px solid var(--light-gray); }
.post-header__tag { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 12px; }
.post-header__title { font-size: clamp(32px, 5vw, 58px); color: var(--near-black); margin-bottom: 12px; }
.post-header__date { font-size: 12px; color: var(--mid-gray); }
.post-header__excerpt { font-size: 18px; color: var(--mid-gray); font-style: italic; font-family: var(--font-display); }
.post-body { max-width: 820px; margin: 0 auto; padding: 56px 64px 80px; }
.post-body__excerpt { font-size: 19px; color: var(--dark-gray); font-style: italic; font-family: var(--font-display); margin-bottom: 36px; border-left: 3px solid var(--light-gray); padding-left: 20px; }
.post-content { font-size: 17px; color: var(--dark-gray); line-height: 1.8; }
.post-content h2, .post-content h3 { color: var(--near-black); margin: 40px 0 16px; }
.post-content p { margin-bottom: 22px; }
.post-content img { margin: 32px 0; }
.post-content a { color: var(--near-black); text-decoration: underline; text-underline-offset: 3px; }
.post-footer { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--light-gray); }

/* ── KOENIG EDITOR REQUIRED ──────────────────────────────────── */
.kg-width-wide {
  margin-left: calc(50% - 50vw + 64px);
  margin-right: calc(50% - 50vw + 64px);
  max-width: none;
  width: calc(100vw - 128px);
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  width: 100vw;
}
.kg-image { max-width: 100%; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 4px; margin: 24px 0; }
.kg-gallery-row { display: flex; gap: 4px; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kg-bookmark-card { border: 1px solid var(--light-gray); padding: 20px; display: flex; gap: 20px; margin: 24px 0; }
.kg-bookmark-title { color: var(--near-black); font-weight: 600; margin-bottom: 4px; }
.kg-bookmark-description { font-size: 13px; color: var(--mid-gray); }
.kg-bookmark-thumbnail { width: 120px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card { background: var(--near-white); border-left: 3px solid var(--dark-gray); padding: 20px 24px; margin: 24px 0; display: flex; gap: 16px; }
.kg-video-card, .kg-audio-card, .kg-embed-card { margin: 24px 0; }
.kg-video-card video { width: 100%; }
.kg-button-card { text-align: center; margin: 24px 0; }
.kg-button-card a { display: inline-block; background: var(--near-black); color: var(--white); padding: 12px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.kg-divider-card { border: none; border-top: 1px solid var(--light-gray); margin: 40px 0; }
.kg-code-card { background: var(--near-white); border: 1px solid var(--light-gray); padding: 20px; margin: 24px 0; overflow-x: auto; font-family: monospace; font-size: 14px; color: var(--dark-gray); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--near-black); border-top: 1px solid #2a2a2a; }
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid #2a2a2a;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__tagline { font-size: 14px; color: var(--mid-gray); font-style: italic; font-family: var(--font-display); }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); transition: color 0.2s; }
.footer__nav a:hover { color: var(--white); }
.footer__social-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 14px; }
.footer__social-links { display: flex; flex-direction: column; gap: 10px; }
.footer__social-links a { font-size: 13px; color: var(--mid-gray); transition: color 0.2s; }
.footer__social-links a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 12px; color: #444; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container--narrow { padding: 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(14,14,14,0.98);
    padding: 40px 32px; gap: 22px; z-index: 199;
  }
  .nav__links.open a { font-size: 15px; }
  .nav__toggle { display: flex; }
  .nav__inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__content { padding: 0 24px; }
  .hero__title { font-size: clamp(56px, 16vw, 100px); }
  .post-hero__content { padding: 0 24px 40px; }
  .post-body { padding: 40px 24px 60px; }
  .post-header { padding: 120px 24px 40px; }
  .footer__top { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 24px; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
}
