/* ============================================================
   THE TATTOO LOUNGE DERRY — style.css
   ============================================================ */

:root {
  --black:      #080808;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #242424;
  --red:        #c0392b;
  --red-light:  #e74c3c;
  --red-glow:   rgba(192, 57, 43, 0.25);
  --teal:       #2a9d8f;
  --teal-light: #3bbfb0;
  --gold:       #d4a843;
  --white:      #ffffff;
  --white-80:   rgba(255,255,255,0.8);
  --white-50:   rgba(255,255,255,0.5);
  --white-20:   rgba(255,255,255,0.12);
  --white-08:   rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.08);

  --font-heading: 'Cinzel', serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;

  --section-pad: 100px;
  --container: 1200px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
details > summary { cursor: pointer; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  width: 100%;
}
textarea { resize: vertical; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white-50);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: var(--white-08);
  transform: translateY(-2px);
}
.btn-nav {
  padding: 10px 22px;
  font-size: 0.78rem;
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-nav:hover {
  background: var(--red-light);
}
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION HEADERS ───────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--red);
  opacity: 0.6;
}
.section-tag::before { right: 100%; margin-right: -14px; }
.section-tag::after  { left: 100%;  margin-left: -14px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.section-title em {
  font-style: normal;
  color: var(--red);
}
.section-sub {
  margin-top: 16px;
  color: var(--white-50);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.96);
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-80);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.98);
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: var(--white-80);
}
.mobile-cta {
  margin-top: 16px;
  background: var(--red);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(192,57,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(42,157,143,0.06) 0%, transparent 60%),
    var(--black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.7) 50%, rgba(8,8,8,0.4) 100%);
}
.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: smokeDrift 12s ease-in-out infinite alternate;
}
.smoke-1 {
  width: 600px; height: 600px;
  background: var(--red);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.smoke-2 {
  width: 400px; height: 400px;
  background: var(--teal);
  bottom: -50px; right: 200px;
  animation-delay: -5s;
}
@keyframes smokeDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(42,157,143,0.4);
  border-radius: 100px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-title-top {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.18em;
  color: var(--white-80);
}
.hero-title-main {
  font-size: clamp(3.5rem, 9vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--white);
}
.hero-title-main em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 60px rgba(192,57,43,0.6);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-50);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--white-50);
  text-transform: uppercase;
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-logo-wrap {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: min(480px, 45vw);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(192,57,43,0.3));
}
.hero-logo-img { width: 100%; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white-50));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   URGENCY STRIP
   ============================================================ */
.urgency-strip {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.urgency-dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--black-3);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--black-4); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, #1a0a09, var(--black-3));
  border-color: rgba(192,57,43,0.3);
}
.service-card.featured::after { transform: scaleX(1); }
.service-icon {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 18px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.service-cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: var(--transition);
  display: inline-block;
}
.service-cta:hover { color: var(--red-light); border-color: var(--red-light); }

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-tag { text-align: left; }
.why-text .section-tag::before { display: none; }
.why-text .section-title { text-align: left; margin-bottom: 20px; }
.why-intro {
  color: var(--white-50);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.8;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-top: 2px;
}
.why-list li strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.why-list li p {
  font-size: 0.88rem;
  color: var(--white-50);
  margin: 0;
}
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-stack {
  position: relative;
  width: 340px; height: 340px;
}
.why-stat-card {
  position: absolute;
  padding: 20px 24px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 130px;
}
.why-stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.why-stat-card .stat-label {
  font-size: 0.72rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.card-1 { top: 0; left: 0; }
.card-2 { top: 0; right: 0; border-color: rgba(42,157,143,0.3); }
.card-2 .stat-num { color: var(--teal-light); }
.card-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.why-logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--black);
}
.why-logo-center img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ARTISTS
   ============================================================ */
#artists {
  padding: var(--section-pad) 0;
  background: var(--black-2);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 32px;
}
.artist-card {
  background: var(--black-3);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.artist-card:hover { transform: translateY(-4px); border-color: rgba(192,57,43,0.3); }
.artist-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.artist-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--black-4), var(--black-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white-20);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
}
.artist-info { padding: 28px; }
.artist-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.artist-style {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.artist-bio {
  font-size: 0.88rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 20px;
}
.artist-book {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  display: inline-block;
  transition: var(--transition);
}
.artist-book:hover { color: var(--red-light); }
.artists-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--white-50);
  font-style: italic;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--black-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--white-20);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.gallery-item:hover .gallery-placeholder { border-color: var(--red); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  padding: 24px 16px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-80);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gallery-cta p {
  font-size: 0.88rem;
  color: var(--white-50);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  position: relative;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,57,43,0.4), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--black-3);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card.featured-review {
  background: linear-gradient(135deg, #0e0a0a, var(--black-3));
  border-color: rgba(192,57,43,0.25);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
blockquote {
  font-size: 0.93rem;
  color: var(--white-80);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--white-50);
}
.reviews-link { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item[open] {
  background: var(--black-4);
  border-color: rgba(192,57,43,0.25);
}
.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.8;
}

/* ============================================================
   BOOKING
   ============================================================ */
#booking {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  position: relative;
}
#booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.booking-left .section-tag { text-align: left; }
.booking-left .section-tag::before { display: none; }
.booking-left .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.booking-left > p {
  color: var(--white-50);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.booking-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--white-50);
}
.bci-item svg { flex-shrink: 0; color: var(--red); }
.booking-form {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.93rem;
  color: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  outline: none;
}
.form-group select option {
  background: var(--black-4);
  color: var(--white);
}
.form-check {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--red);
  background: var(--black-4);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--white-50);
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-body);
  font-weight: 400;
  cursor: pointer;
}
.form-note {
  font-size: 0.78rem;
  color: var(--white-20);
  text-align: center;
  margin-top: -8px;
}
.form-success {
  background: rgba(42,157,143,0.1);
  border: 1px solid rgba(42,157,143,0.4);
  color: var(--teal-light);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: none;
}

/* ============================================================
   CONTACT / MAP
   ============================================================ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-tag::before { display: none; }
.contact-info .section-title { text-align: left; margin-bottom: 36px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.88rem;
  color: var(--white-50);
  line-height: 1.7;
}
.contact-item a {
  color: var(--teal-light);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--teal); }
.map-embed {
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(60%) invert(90%) hue-rotate(180deg);
  transition: filter 0.4s ease;
}
.map-embed:hover {
  filter: grayscale(0%) invert(0%) hue-rotate(0deg);
}
.map-embed iframe { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(192,57,43,0.1) 0%, transparent 70%),
    var(--black-2);
  border-top: 1px solid rgba(192,57,43,0.2);
}
.final-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-logo {
  width: 160px;
  opacity: 0.9;
}
.final-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
}
.final-cta-inner h2 em {
  font-style: normal;
  color: var(--red);
}
.final-cta-inner p {
  color: var(--white-50);
  font-size: 1rem;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 900; letter-spacing: 0.1em; }
.footer-brand .logo-sub { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.35em; color: var(--red); }
.footer-brand p { font-size: 0.85rem; color: var(--white-50); max-width: 260px; }
.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong, .footer-legal strong {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--white-50);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-legal span { font-size: 0.8rem; color: var(--white-20); line-height: 1.6; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--white-20); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}
.sticky-btn {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.sticky-call {
  background: var(--black-4);
  color: var(--white);
  border: 1px solid var(--border);
}
.sticky-book {
  background: var(--red);
  color: var(--white);
}
.sticky-book:hover { background: var(--red-light); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-visual { display: none; }
  .booking-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-logo-wrap { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-trust { gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .urgency-inner span { font-size: 0.68rem; }
}
