/* ===== Variables ===== */
:root {
  --bg: #0c0c0c;
  --bg-elevated: #141414;
  --text: #f5f2ed;
  --text-muted: #a39e94;
  --accent: #c9a962;
  --accent-hover: #d4b872;
  --border: rgba(245, 242, 237, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --header-h: 72px;
}

/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

main>section:not(:first-child):not(.about) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  border-color: var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-header .logo img {
  height: 44px;
}

.site-footer .footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-xs);
}

.site-footer .logo {
  display: block;
}

.site-footer .logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav {
  position: absolute;
  top: 50%;
  left: var(--space-md);
  right: var(--space-md);
  z-index: 1;
  display: flex;
  justify-content: center;
  width: auto;
  max-width: none;
  transform: translateY(-50%);
}

.nav>ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, var(--space-lg));
  width: 100%;
  white-space: nowrap;
}

.nav>ul>li:last-child {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.25rem; /* Larger hit area */
  margin: -0.5rem -0.25rem; /* Offset padding to maintain alignment */
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
  color: var(--accent);
}

.nav-chevron {
  font-size: 0.5rem;
  opacity: 0.8;
  transition: transform 0.2s;
  pointer-events: none; /* Icon won't steal clicks from the button */
}

.nav-item-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  min-width: 240px;
  padding: 0.75rem 0;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.3s, 
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
}

.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.5rem);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 169, 98, 0.1);
  color: var(--accent);
  padding-left: 1.75rem;
}

/* For Desktop: Open on Hover */
@media (min-width: 901px) {
  .nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0.5rem);
  }
  .nav-item-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
  }
}

.btn-nav {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--accent-hover);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) var(--space-md) var(--space-2xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(12, 12, 12, 0.6) 0%, rgba(12, 12, 12, 0.35) 35%, rgba(12, 12, 12, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-title {
  margin: 0 0 var(--space-lg);
  line-height: 1;
}

.hero-title .hero-logo {
  display: block;
  width: 100%;
  max-width: min(400px, 94vw);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin: 0 0 var(--space-lg);
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-actions .btn {
  min-width: 140px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.hero-actions .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  border-radius: 1px;
}

/* ===== Sections ===== */
section {
  padding: var(--space-2xl) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}

.section-title--center {
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 var(--space-lg);
  max-width: 640px;
}

.section-title--center+.section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== SEO content pages ===== */
.content-page {
  padding-top: var(--header-h);
}

.seo-hero {
  min-height: 58vh;
  padding-bottom: var(--space-xl);
}

.seo-hero .hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.content-section {
  background: var(--bg);
}

.compact-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.content-section.alt {
  background: var(--bg-elevated);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: var(--space-xl);
  align-items: start;
}

.content-copy {
  max-width: 760px;
}

.compact-copy {
  display: grid;
  gap: var(--space-md);
}

.content-copy p,
.content-copy li,
.drawer-copy p,
.drawer-copy li,
.style-intro p,
.booking-prep li {
  color: var(--text-muted);
}

.content-copy p {
  margin: 0 0 var(--space-md);
}

.compact-copy>p {
  max-width: 68ch;
  margin-bottom: 0;
}

.content-copy h2,
.content-copy h3 {
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.content-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 var(--space-md);
}

.content-copy h3 {
  font-size: 1.2rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.content-copy ul,
.drawer-copy ul,
.booking-prep ul {
  display: grid;
  gap: 0.65rem;
  list-style: disc;
  padding-left: 1.2rem;
}

.content-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.content-card h2,
.content-card h3 {
  margin-top: 0;
  font-weight: 500;
  letter-spacing: 0;
}

.content-card p {
  color: var(--text-muted);
}

.compact-card .link-cloud {
  margin-top: var(--space-md);
}

.content-actions,
.portfolio-style-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}

.link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.link-cloud a:hover {
  border-color: rgba(201, 169, 98, 0.45);
  color: var(--accent);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.copy-drawer {
  margin-top: var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(245, 242, 237, 0.03);
  overflow: hidden;
}

.copy-drawer summary,
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 52px;
  padding: 0.95rem 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.copy-drawer summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.copy-drawer summary::after,
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 999px;
  color: var(--accent);
  line-height: 1;
}

.copy-drawer[open] summary::after,
.faq-item[open] summary::after {
  content: "-";
}

.drawer-copy {
  padding: 0 var(--space-md) var(--space-md);
}

.drawer-copy h3 {
  margin: var(--space-md) 0 var(--space-xs);
}

.drawer-copy p {
  margin: 0 0 var(--space-sm);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0 var(--space-md);
}

.step-tile {
  min-height: 150px;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(245, 242, 237, 0.03);
}

.step-tile span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: var(--space-sm);
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.14);
  color: var(--accent);
  font-weight: 700;
}

.step-tile h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step-tile p {
  margin: 0;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0 0 var(--space-sm);
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-item p {
  margin: 0;
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-muted);
}

.faq-item[open] {
  border-color: rgba(201, 169, 98, 0.3);
}

.style-intro {
  max-width: 780px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.style-intro p {
  margin: 0 0 var(--space-sm);
}

.booking-prep {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius);
}

.booking-prep h3 {
  margin: 0 0 var(--space-sm);
  font-weight: 500;
}

.artist-name-title .artist-role {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
}

.artist-intro {
  margin: var(--space-md) 0;
  color: var(--text-muted);
}

.artist-intro a {
  color: var(--accent);
}

@media (max-width: 760px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

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

/* ===== About ===== */
.about {
  background: var(--bg-elevated);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-text .lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--text-muted);
  margin: 0 0 var(--space-sm);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 0.75rem;
}

.link-arrow::after {
  content: '→';
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 4.5rem;
}

.tattoo-slider {
  position: relative !important;
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden !important;
  background: var(--bg);
  border: 1px solid var(--border);
  /* Fix Safari border-radius/overflow bug and stacking context */
  z-index: 1;
  transform: translateZ(0);
}

.slider-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block !important;
}

.slider-img.active {
  opacity: 1 !important;
  z-index: 2;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  width: 100%;
}

.about-card {
  flex: 1;
  max-width: 180px;
  height: 120px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.4);
}

.about-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ===== Why ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.why-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
  text-align: left;
}

.why-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  flex-shrink: 0;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}

.why-card-text {
  min-width: 0;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Portfolio ===== */
.portfolio {
  background: var(--bg-elevated);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.portfolio-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--border);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

.portfolio .btn-outline {
  margin: 0;
  display: inline-flex;
}

/* ===== Artists ===== */
.artists {
  text-align: center;
}

/* Centers the headings globally for this section */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  text-align: left;
  /* Restores left alignment for the internal artist cards */
}

.artist-card {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.artist-card:hover {
  border-color: var(--accent);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  min-height: 0;
  display: block;
}

.artist-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-md);
  background: var(--bg-elevated);
  position: relative;
  z-index: 1;
}

.artist-card:hover .artist-name {
  color: var(--text);
}

/* ===== Updates ===== */
.updates {
  background: var(--bg);
}

.updates-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.update-card {
  display: block;
  max-width: 360px;
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.update-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
}

.update-date {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.update-card h3 {
  font-size: 1.15rem;
  margin: 0 0 var(--space-sm);
}

.update-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Reviews ===== */
.reviews {
  background: var(--bg-elevated);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0 var(--space-lg);
}

.review-card {
  padding: var(--space-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 0;
}

.review-card p {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 var(--space-sm);
  font-style: italic;
}

.review-card cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

.review-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.reviews .btn-outline {
  margin: 0;
  display: inline-flex;
}

/* ===== Contact ===== */
.contact {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.contact-inner {
  max-width: 480px;
  margin: 0 auto;
}

.contact .lead {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ===== Footer ===== */
.site-footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .footer-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.5;
}

.footer-info h3,
.footer-social h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-md);
}

.footer-info-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info-item address {
  font-style: normal;
  line-height: 1.5;
}

.footer-social-links {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-social-link {
  color: var(--text-muted);
  transition: transform 0.2s;
}

.footer-social-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.btn-footer-book {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 999px;
  width: fit-content;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

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

/* ===== About page ===== */
.page-main {
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);
}

.about-page {
  background: var(--bg-elevated);
}

.about-page-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-lg);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.about-page-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.about-page-content p {
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.7;
}

.about-page-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-page-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.about-page-stats {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-page-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ===== Lightbox ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
  transition: color 0.2s;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {

  /* Tablet large */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    justify-content: flex-start;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-image {
    order: -1;
    max-height: 460px;
  }

  .about-page-image img {
    min-height: 280px;
  }
}

@media (max-width: 900px) {

  /* Site-wide headings and subheadings centering for handheld devices */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero-sub,
  .section-sub,
  .lead,
  .about-page-subtitle,
  .artist-name-title,
  .update-date {
    text-align: center !important;
  }

  /* Center footer logo and submenus for handhelds */
  .footer-brand,
  .footer-links {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links ul {
    align-items: center;
  }

  /* Tablet medium */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 900px) {

  /* Mobile */
  .nav {
    display: none;
  }

  .nav.open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    max-width: none;
    transform: none;
    background-color: var(--bg);
    z-index: 999;
    padding: var(--space-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
  }

  .nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: var(--space-md);
  }

  .nav.open>ul>li:last-child {
    position: static;
    transform: none;
  }

  .nav.open .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    box-shadow: none;
    background: transparent;
    padding-left: var(--space-md);
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav.open .nav-item-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav.open .nav-dropdown-menu a {
    color: var(--text-muted);
  }

  .nav.open .nav-dropdown-menu a:hover {
    background: transparent;
    color: var(--text);
  }

  .menu-toggle {
    display: flex;
  }

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

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

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

  .reviews-slider {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
