/*
Theme Name: Famous Dave's Tattoo
Theme URI: https://famousdaves.co.nz
Author: Famous Dave's Tattoo Studio
Author URI: https://famousdaves.co.nz
Description: A bold, dark editorial theme for Famous Dave's Tattoo — a father-son custom tattoo studio in Morrinsville, NZ.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: famous-daves
Tags: dark, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:          #0a0909;
  --bg-surface:  #111010;
  --bg-raised:   #1a1818;
  --accent:      #b8956a;
  --accent-dark: #8c6b45;
  --accent-glow: rgba(184, 149, 106, 0.15);
  --text:        #e8dfd4;
  --text-muted:  #8a8078;
  --text-faint:  #484440;
  --border:      rgba(184, 149, 106, 0.18);
  --border-soft: rgba(255,255,255,0.06);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-ui:      'Barlow', 'Helvetica Neue', sans-serif;
  --font-mono:    'Barlow Condensed', 'Helvetica Neue', sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);

  --radius:     4px;
  --radius-lg:  8px;

  --max-w:      1280px;
  --section-py: clamp(80px, 10vw, 140px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--text);
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 65ch;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section {
  padding-block: var(--section-py);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-block: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease-out);
  z-index: -1;
}

.btn:hover {
  color: var(--bg);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-solid {
  background: var(--accent);
  color: var(--bg);
}

.btn-solid::before {
  background: var(--text);
}

.btn-solid:hover {
  color: var(--bg);
  border-color: var(--text);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

#site-header.scrolled {
  background: rgba(10, 9, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
  transition: opacity 0.2s ease;
}

.site-logo:hover img {
  opacity: 0.8;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.site-logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.current::after {
  width: 100%;
}

.nav-book-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.nav-book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease-out);
  z-index: -1;
}

.nav-book-btn:hover {
  color: var(--bg);
}

.nav-book-btn:hover::before {
  transform: translateX(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 9, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.6);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 9, 0.2) 0%,
    rgba(10, 9, 9, 0.1) 40%,
    rgba(10, 9, 9, 0.7) 75%,
    rgba(10, 9, 9, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  width: 100%;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero-tagline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 40ch;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-meta-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: clamp(30px, 5vw, 50px);
  right: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ============================================================
   ABOUT INTRO SECTION
   ============================================================ */
.about-intro {
  padding-block: var(--section-py);
  position: relative;
}

.about-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.8);
}

.about-intro-image::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
}

.about-intro-text p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   GALLERY GRID (HOME PREVIEW)
   ============================================================ */
.gallery-preview {
  padding-block: var(--section-py);
  background: var(--bg-surface);
  position: relative;
}

.gallery-preview::before,
.gallery-preview::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.gallery-preview::before { top: 0; }
.gallery-preview::after  { bottom: 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 72px);
  flex-wrap: wrap;
  gap: 24px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}

.masonry-grid .grid-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
  filter: saturate(0.75) brightness(0.9);
}

.masonry-grid .grid-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

/* Varied grid sizing */
.masonry-grid .grid-item:nth-child(1)  { grid-column: span 3; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(2)  { grid-column: span 2; aspect-ratio: 3/4; grid-row: span 2; }
.masonry-grid .grid-item:nth-child(3)  { grid-column: span 1; aspect-ratio: 1/1; }
.masonry-grid .grid-item:nth-child(4)  { grid-column: span 1; aspect-ratio: 1/1; }
.masonry-grid .grid-item:nth-child(5)  { grid-column: span 2; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(6)  { grid-column: span 2; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(7)  { grid-column: span 2; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(8)  { grid-column: span 2; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(9)  { grid-column: span 2; aspect-ratio: 3/4; grid-row: span 2; }
.masonry-grid .grid-item:nth-child(10) { grid-column: span 2; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(11) { grid-column: span 2; aspect-ratio: 4/3; }
.masonry-grid .grid-item:nth-child(12) { grid-column: span 3; aspect-ratio: 16/9; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  padding-block: var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(16rem, 30vw, 28rem);
  line-height: 1;
  color: var(--bg-raised);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   VISIT / CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-block: clamp(50px, 7vw, 90px);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}

.contact-strip-block h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.contact-strip-block p,
.contact-strip-block address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-strip-block a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-strip-block a:hover {
  color: var(--accent);
}

.contact-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  padding-top: 160px;
  padding-bottom: clamp(50px, 7vw, 90px);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 18ch;
}

/* ============================================================
   PRICING / PROCESS PAGE
   ============================================================ */
.process-steps {
  padding-block: var(--section-py);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.step-card {
  background: var(--bg-surface);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transition: background 0.3s ease;
}

.step-card:hover {
  background: var(--bg-raised);
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: var(--accent-dark);
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.95rem;
}

.contact-form-section {
  padding-block: var(--section-py);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.form-info h2 {
  margin-bottom: 1.5rem;
}

.form-info p {
  margin-bottom: 2rem;
  line-height: 1.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-method .method-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.wpcf7-form,
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-raised);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}

.wpcf7-submit,
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  width: fit-content;
}

.wpcf7-submit:hover,
.form-submit-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.artist-section {
  padding-block: var(--section-py);
}

.artist-section + .artist-section {
  border-top: 1px solid var(--border-soft);
}

.artist-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.artist-grid.reverse {
  grid-template-columns: 7fr 5fr;
}

.artist-grid.reverse .artist-images {
  order: 2;
}

.artist-grid.reverse .artist-text {
  order: 1;
}

.artist-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.artist-images .img-primary {
  grid-column: span 2;
  aspect-ratio: 4/3;
}

.artist-images .img-secondary {
  aspect-ratio: 3/4;
}

.artist-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 0.4s ease;
}

.artist-images img:hover {
  filter: saturate(1);
}

.artist-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.artist-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.artist-bio {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.artist-bio p + p {
  margin-top: 1.2rem;
}

.artist-quote {
  margin-top: 2rem;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: var(--bg-raised);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

.artist-contact {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artist-contact-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.artist-contact-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-intro {
  padding-top: 40px;
  padding-bottom: var(--section-py);
}

.portfolio-grid {
  columns: 3;
  column-gap: 6px;
}

.portfolio-grid .portfolio-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.portfolio-grid .portfolio-item img {
  width: 100%;
  display: block;
  filter: saturate(0.75) brightness(0.9);
  transition: transform 0.5s var(--ease-out), filter 0.4s ease;
}

.portfolio-grid .portfolio-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  animation: lightboxIn 0.3s var(--ease-out);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.footer-brand .site-logo {
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  max-width: none;
}

.footer-bottom a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-nav,
  .nav-book-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .about-intro-grid,
  .form-grid,
  .artist-grid,
  .artist-grid.reverse {
    grid-template-columns: 1fr;
  }

  .artist-grid.reverse .artist-images,
  .artist-grid.reverse .artist-text {
    order: unset;
  }

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

  .masonry-grid .grid-item:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 1/1;
    grid-row: span 1;
  }

  .portfolio-grid {
    columns: 2;
  }

  .contact-strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-scroll-hint {
    display: none;
  }
}

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

  .masonry-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WPFORMS OVERRIDES
   ============================================================ */
.wpforms-container .wpforms-form .wpforms-field-label,
.wpforms-container .wpforms-form .wpforms-field-label-inline,
.wpforms-container .wpforms-form legend.wpforms-field-label,
.wpforms-container .wpforms-form .wpforms-field-description {
  color: var(--text-muted) !important;
}

.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form input[type="number"],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
  background: var(--bg-raised) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 0 !important;
  color: var(--text) !important;
  font-family: var(--font-ui) !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  padding: 14px 18px !important;
  box-shadow: none !important;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: none !important;
}

.wpforms-container .wpforms-form input::placeholder,
.wpforms-container .wpforms-form textarea::placeholder {
  color: var(--text-faint) !important;
}

.wpforms-container .wpforms-form .wpforms-field {
  padding: 0 !important;
  margin-bottom: 20px !important;
}

.wpforms-container .wpforms-form button[type="submit"],
.wpforms-container .wpforms-form .wpforms-submit {
  background: transparent !important;
  border: 1px solid var(--accent) !important;
  border-radius: 0 !important;
  color: var(--accent) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 16px 40px !important;
  box-shadow: none !important;
  transition: all 0.3s var(--ease-out) !important;
  cursor: pointer !important;
}

.wpforms-container .wpforms-form button[type="submit"]:hover,
.wpforms-container .wpforms-form .wpforms-submit:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
}

.wpforms-container .wpforms-form .wpforms-required-label {
  color: var(--accent) !important;
}

.wpforms-container .wpforms-form label.wpforms-error {
  color: #e07070 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  margin-top: 6px !important;
}