/* =============================================
   BRANDON'S MOVING & DELIVERY
   Jujutsu Kaisen × Studio Ghibli
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Shippori+Mincho:wght@400;600;700&family=M+PLUS+1p:wght@400;700;800&display=swap');

/* ---------- TOKENS ---------- */
:root {
  /* JJK Cursed Void */
  --void:          #04000d;
  --deep:          #0b0520;
  --night:         #120a2e;
  --cursed-blue:   #00c8f5;
  --cursed-purple: #7c3aed;
  --cursed-pink:   #db2777;
  --cursed-glow:   rgba(0, 200, 245, 0.18);

  /* Ghibli Warmth */
  --ghibli-forest: #166534;
  --ghibli-sage:   #4ade80;
  --ghibli-sky:    #38bdf8;

  /* Dark surfaces (consistent dark-only theme) */
  --surface:  #0f0728;
  --card:     #170d3a;
  --card-alt: #110830;

  /* Text */
  --text-light:  #e2d9f3;
  --text-dim:    rgba(226,217,243,0.55);
  --text-muted:  rgba(226,217,243,0.35);
  --text-dark:   #1a0a30;
  --text-mid:    #3d2c5e;

  --font-display: 'Dela Gothic One', sans-serif;
  --font-elegant: 'Shippori Mincho', serif;
  --font-body:    'M PLUS 1p', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --glow-blue:   0 0 24px rgba(0,200,245,0.35), 0 0 60px rgba(0,200,245,0.12);
  --glow-purple: 0 0 24px rgba(124,58,237,0.4),  0 0 60px rgba(124,58,237,0.1);

  --shadow-lift: 0 4px 24px rgba(4,0,13,0.4);
  --shadow-bold: 0 8px 48px rgba(4,0,13,0.6);

  --transition: 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.18s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--void);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--cursed-purple); border-radius: 3px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.01em; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 800; }

.section-label {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--cursed-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ---------- CURSED ENERGY TEXTURE ---------- */
/* Reusable overlay for dark sections */
.cursed-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(124,58,237,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(0,200,245,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cursed-blue);
  color: var(--void);
  box-shadow: var(--glow-blue), 0 4px 0 #008aaa;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,200,245,0.5), 0 0 80px rgba(0,200,245,0.2), 0 7px 0 #008aaa;
}
.btn-primary:active { transform: translateY(1px); }

.btn-amber {
  background: var(--cursed-purple);
  color: #fff;
  box-shadow: var(--glow-purple), 0 4px 0 #4c1d95;
}
.btn-amber:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(124,58,237,0.55), 0 0 80px rgba(124,58,237,0.2), 0 7px 0 #4c1d95;
}

.btn-outline {
  background: transparent;
  color: var(--cursed-blue);
  border: 2px solid var(--cursed-blue);
  box-shadow: inset 0 0 0 0 var(--cursed-blue);
}
.btn-outline:hover {
  background: var(--cursed-blue);
  color: var(--void);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}

.btn-ghost-amber {
  background: transparent;
  color: var(--cursed-purple);
  border: 2px solid var(--cursed-purple);
}
.btn-ghost-amber:hover {
  background: var(--cursed-purple);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--glow-purple);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(11,5,32,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,200,245,0.15), 0 4px 24px rgba(4,0,13,0.5);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,200,245,0.5));
  transition: filter 0.3s ease;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0,200,245,0.8));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--cursed-blue);
  box-shadow: var(--glow-blue);
  transition: left 0.2s ease, right 0.2s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--cursed-blue); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0.85rem; right: 0.85rem; }
.nav-links a.active { color: var(--cursed-blue); }

.nav-cta {
  background: var(--cursed-blue) !important;
  color: var(--void) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 9999px !important;
  font-weight: 800 !important;
  box-shadow: var(--glow-blue) !important;
}
.nav-cta:hover { box-shadow: 0 0 40px rgba(0,200,245,0.6) !important; }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-light);
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-mobile a:hover {
  color: var(--cursed-blue);
  text-shadow: var(--glow-blue);
}
.nav-mobile .close-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--text-dim);
  background: none;
  border: none;
  transition: color 0.2s;
}
.nav-mobile .close-btn:hover { color: var(--cursed-blue); }

/* ---------- HERO — Domain Expansion ---------- */
.hero {
  min-height: 100vh;
  background: var(--void);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

/* Cursed void gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(124,58,237,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 70%, rgba(0,200,245,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #0b0520 0%, #04000d 60%, #080018 100%);
}

/* Hex / infinity barrier pattern (Gojo's Six Eyes) */
.hero-hex {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(60deg, rgba(0,200,245,1) 0, rgba(0,200,245,1) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(120deg, rgba(0,200,245,1) 0, rgba(0,200,245,1) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(0deg, rgba(0,200,245,1) 0, rgba(0,200,245,1) 1px, transparent 0, transparent 50%);
  background-size: 60px 104px;
  animation: hex-drift 30s linear infinite;
}
@keyframes hex-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 104px); }
}

/* Cursed energy orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  right: -150px; top: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, rgba(4,0,13,0) 70%);
  animation: orb-float 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  left: -80px; bottom: -80px;
  background: radial-gradient(circle, rgba(0,200,245,0.12) 0%, rgba(4,0,13,0) 70%);
  animation: orb-float 18s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  right: 30%; top: 20%;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  animation: orb-float 22s ease-in-out infinite 4s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -35px) scale(1.06); }
  66%       { transform: translate(-20px, 20px) scale(0.96); }
}

/* Lightning streak — cursed energy */
.hero-lightning {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lightning::before,
.hero-lightning::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,200,245,0.4) 40%,
    rgba(124,58,237,0.5) 60%,
    transparent 100%
  );
  animation: lightning-drift 8s ease-in-out infinite;
}
.hero-lightning::before { left: 68%; animation-delay: 0s; }
.hero-lightning::after  { left: 72%; animation-delay: 3s; opacity: 0.5; }

@keyframes lightning-drift {
  0%, 100% { opacity: 0; transform: scaleY(0) translateX(0); }
  10%, 90%  { opacity: 0; }
  50%       { opacity: 1; transform: scaleY(1) translateX(4px); }
}

/* ---------- HERO CONTENT ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,200,245,0.08);
  border: 1px solid rgba(0,200,245,0.25);
  color: var(--cursed-blue);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0,200,245,0.1);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cursed-blue);
  border-radius: 50%;
  box-shadow: var(--glow-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* Domain expansion title treatment */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 60px rgba(226,217,243,0.08);
  letter-spacing: -0.02em;
}

.hero-title .accent {
  display: block;
  color: var(--cursed-blue);
  text-shadow: var(--glow-blue);
}

/* Technique name display — tagline styled like an anime technique card */
.hero-technique {
  display: inline-block;
  position: relative;
  margin: 1.2rem 0 2.5rem;
  padding: 0.5rem 1.2rem 0.5rem 1rem;
  border-left: 3px solid var(--cursed-blue);
}
.hero-technique::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,200,245,0.04);
  border-radius: 0 4px 4px 0;
}
.hero-technique p {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(226,217,243,0.8);
  font-weight: 400;
  position: relative;
}
.hero-technique strong {
  color: var(--cursed-blue);
  font-weight: 600;
  text-shadow: 0 0 20px rgba(0,200,245,0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,200,245,0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cursed-blue);
  text-shadow: var(--glow-blue);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- TICKER BAND ---------- */
.intro-band {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}
.intro-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface) 0%, transparent 8%, transparent 92%, var(--surface) 100%);
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-wrap .item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  letter-spacing: 0.08em;
}
.ticker-wrap .item::before {
  content: '◆';
  font-size: 0.45rem;
  color: var(--cursed-blue);
  opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 7rem 0;
  background: var(--surface);
  position: relative;
}

.services-section .section-label { color: var(--cursed-blue); }
.services-section .section-title { color: var(--text-light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4,0,13,0.4);
  transition: var(--transition);
  border: 1px solid rgba(0,200,245,0.08);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cursed-blue), var(--cursed-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  box-shadow: var(--glow-blue);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,200,245,0.12), var(--shadow-lift);
  border-color: rgba(0,200,245,0.25);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(124,58,237,0.2));
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-card .badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.7rem;
  background: rgba(124,58,237,0.08);
  color: var(--cursed-purple);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(124,58,237,0.2);
}

/* ---------- WHY — Dark cursed void ---------- */
.why-section {
  padding: 7rem 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(124,58,237,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(0,200,245,0.06) 0%, transparent 50%);
}

/* JJK slash mark decoration */
.why-section::after {
  content: '×';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(124,58,237,0.04);
  line-height: 1;
  pointer-events: none;
}

.why-section .section-label { color: var(--cursed-blue); }
.why-section .section-title { color: var(--text-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(0,200,245,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--cursed-blue), var(--cursed-purple));
  box-shadow: var(--glow-blue);
  transition: height 0.35s ease;
}

.why-card:hover {
  background: rgba(0,200,245,0.04);
  border-color: rgba(0,200,245,0.2);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(0,200,245,0.08);
}
.why-card:hover::before { height: 100%; }

.why-card-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }

.why-card h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 800;
}
.why-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ---------- REVIEWS ---------- */
.reviews-section {
  padding: 7rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.reviews-section .section-label { color: var(--cursed-blue); }
.reviews-section .section-title { color: var(--text-light); }

/* Manga panel quote mark */
.reviews-section::before {
  content: '"';
  position: absolute;
  font-family: var(--font-elegant);
  font-size: 28rem;
  color: rgba(0,200,245,0.04);
  top: -4rem;
  right: -2rem;
  line-height: 1;
  pointer-events: none;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0,200,245,0.1);
  box-shadow: var(--shadow-lift);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 20px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  border-left: 1px solid rgba(0,200,245,0.1);
}

.review-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 16px 40px rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--cursed-blue);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(0,200,245,0.4);
}

.review-text {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cursed-purple), var(--cursed-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--glow-purple);
}

.reviewer-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-light);
}

.reviewer-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-mid);
  font-style: italic;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem 1.2rem;
  border: 2px solid rgba(26,10,48,0.15);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition-fast);
}
.google-badge:hover {
  background: var(--deep);
  color: var(--cursed-blue);
  border-color: var(--cursed-blue);
  box-shadow: var(--glow-blue);
}

/* ---------- GALLERY PREVIEW ---------- */
.gallery-preview {
  padding: 7rem 0;
  background: var(--void);
  position: relative;
}

.gallery-preview .section-title { color: var(--text-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--night);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0,200,245,0.08);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,5,32,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(0,200,245,0.2);
  border-radius: var(--radius-md);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(0,200,245,0.25);
  font-size: 0.78rem;
}
.gallery-placeholder .icon { font-size: 2rem; opacity: 0.3; }

/* ---------- CTA BAND — Domain Expansion style ---------- */
.cta-band {
  padding: 6rem 0;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0,200,245,0.08) 0%, transparent 50%);
}

/* Domain expansion lines */
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(0,200,245,0.02) 0.3deg,
    transparent 0.6deg
  );
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-light);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-band .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  text-shadow: var(--glow-blue);
  transition: var(--transition-fast);
}
.cta-band .phone-link:hover {
  color: var(--cursed-blue);
  text-shadow: 0 0 40px rgba(0,200,245,0.6);
}

/* ---------- PAGE HERO (shared) ---------- */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--void);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(124,58,237,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 30%, rgba(0,200,245,0.06) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    60deg, rgba(0,200,245,1) 0, rgba(0,200,245,1) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(
    120deg, rgba(0,200,245,1) 0, rgba(0,200,245,1) 1px, transparent 0, transparent 50%);
  background-size: 60px 104px;
  opacity: 0.025;
}

.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--text-light);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 80px rgba(226,217,243,0.08);
}
.page-hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ---------- ABOUT ---------- */
.about-content {
  padding: 7rem 0;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.editable-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(124,58,237,0.06);
  border-left: 4px solid var(--cursed-purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.highlight-box {
  background: var(--deep);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(0,200,245,0.1);
}
.highlight-box h3 {
  color: var(--cursed-blue);
  margin-bottom: 1rem;
  text-shadow: var(--glow-blue);
}

.highlight-list { display: flex; flex-direction: column; gap: 0.75rem; }
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.highlight-list li::before {
  content: '◆';
  color: var(--cursed-blue);
  font-size: 0.5rem;
  flex-shrink: 0;
  text-shadow: var(--glow-blue);
}

/* ---------- SERVICES PAGE ---------- */
.services-full { padding: 5rem 0; background: var(--surface); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-icon {
  font-size: 6rem;
  text-align: center;
  filter: drop-shadow(0 4px 20px rgba(124,58,237,0.25));
}

.service-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.service-block .price-note {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--cursed-blue);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.service-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.2rem 0;
}
.service-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-dim);
  font-size: 0.96rem;
}
.service-block ul li::before {
  content: '✓';
  color: var(--ghibli-forest);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,200,245,0.08);
  box-shadow: var(--shadow-lift);
}
.blog-card:hover {
  transform: translateY(-6px) rotate(0.3deg);
  box-shadow: 0 20px 50px rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.25);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--cursed-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body { padding: 1.5rem; }

.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.blog-tag {
  background: rgba(124,58,237,0.1);
  color: var(--cursed-purple);
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(124,58,237,0.2);
}
.blog-date { font-size: 0.78rem; color: #9d8cb0; }

.blog-card h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }

/* Blog post view */
.blog-post-view {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}
.blog-post-view h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.blog-post-view .post-meta {
  display: flex;
  gap: 1.5rem;
  color: #9d8cb0;
  font-size: 0.88rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(124,58,237,0.1);
}
.blog-post-view .post-body h2 {
  font-size: 1.7rem;
  color: var(--text-dark);
  margin: 2rem 0 0.75rem;
}
.blog-post-view .post-body p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1.02rem;
}
.blog-post-view .post-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-mid);
}
.blog-post-view .post-body ul li { margin-bottom: 0.4rem; line-height: 1.7; }
.blog-post-view .post-body strong { color: var(--text-dark); font-weight: 800; }
.blog-post-view .post-body a { color: var(--cursed-purple); text-decoration: underline; }
.blog-post-view .post-body hr { border: none; border-top: 2px solid rgba(124,58,237,0.1); margin: 2rem 0; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cursed-blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  transition: gap 0.2s, text-shadow 0.2s;
}
.back-btn:hover { gap: 0.8rem; text-shadow: var(--glow-blue); }

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 7rem 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  margin-bottom: 1rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(0,200,245,0.08);
}
.contact-detail:hover {
  transform: translateX(5px);
  border-color: rgba(0,200,245,0.25);
  box-shadow: var(--glow-blue);
}

.contact-detail-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(0,200,245,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(124,58,237,0.15);
}
.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9d8cb0;
  font-weight: 700;
}
.contact-detail-value {
  font-weight: 800;
  color: var(--text-light);
  font-size: 1rem;
}

.contact-form {
  background: var(--deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-bold), 0 0 0 1px rgba(0,200,245,0.1);
  border: 1px solid rgba(0,200,245,0.1);
}
.contact-form h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-form .form-subtitle {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0,200,245,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--cursed-blue);
  box-shadow: 0 0 0 3px rgba(0,200,245,0.12), var(--glow-blue);
}
input::placeholder, textarea::placeholder { color: rgba(226,217,243,0.25); }
select option { background: var(--deep); color: var(--text-light); }

textarea { min-height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
}

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.visible { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ---------- AREA BADGE ---------- */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,245,0.08);
  border: 1px solid rgba(0,200,245,0.2);
  color: var(--cursed-blue);
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ---------- AUDIO PLAYER ---------- */
.audio-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(11,5,32,0.93);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,200,245,0.08);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.45);
  padding: 0.35rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.audio-player.ready { transform: translateY(0); }

.audio-player-art {
  width: 28px; height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--cursed-purple), var(--cursed-blue));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

.audio-player-info { flex: 1; min-width: 0; }
.audio-track-name {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-track-sub { display: none; }

.audio-controls { display: flex; align-items: center; gap: 0.5rem; }

.audio-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.audio-btn:hover { background: rgba(0,200,245,0.1); color: var(--cursed-blue); }

.audio-btn.play-btn {
  background: rgba(0,200,245,0.15);
  color: var(--cursed-blue);
  width: 30px; height: 30px;
  font-size: 0.85rem;
  border: 1px solid rgba(0,200,245,0.25);
}
.audio-btn.play-btn:hover {
  background: rgba(0,200,245,0.25);
  border-color: var(--cursed-blue);
}

.audio-btn.mute-btn { font-size: 0.85rem; }

.audio-dismiss {
  color: var(--text-dim);
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  transition: color 0.2s;
  opacity: 0.6;
}
.audio-dismiss:hover { color: var(--cursed-pink); opacity: 1; }

/* ---------- AUDIO NUDGE ---------- */
.audio-nudge {
  position: fixed;
  bottom: 58px;
  right: 1.1rem;
  z-index: 900;
  background: rgba(11,5,32,0.96);
  border: 1px solid rgba(0,200,245,0.35);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
  animation: nudge-float 3s ease-in-out infinite, nudge-in 0.4s ease both;
  box-shadow: 0 4px 20px rgba(0,200,245,0.12);
}

.audio-nudge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 1.8rem;
  width: 10px; height: 10px;
  background: rgba(11,5,32,0.96);
  border-right: 1px solid rgba(0,200,245,0.35);
  border-bottom: 1px solid rgba(0,200,245,0.35);
  transform: rotate(45deg);
}

.audio-nudge.hiding {
  animation: nudge-out 0.35s ease forwards;
}

@keyframes nudge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
@keyframes nudge-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nudge-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(6px); }
}

/* Pulse ring on mute button while nudge is visible */
.audio-btn.mute-btn.mute-nudge {
  position: relative;
}
.audio-btn.mute-btn.mute-nudge::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,200,245,0.6);
  animation: mute-ring 1.4s ease-out infinite;
}
@keyframes mute-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- GALLERY FULL ---------- */
.gallery-section {
  padding: 5rem 0;
  background: var(--void);
}
.gallery-section .section-label { color: var(--cursed-blue); }
.gallery-section .section-title { color: var(--text-light); }

.gallery-full-grid {
  columns: 3;
  column-gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-full-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,200,245,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gallery-full-item:hover {
  border-color: rgba(0,200,245,0.25);
  box-shadow: var(--glow-blue);
}
.gallery-full-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-full-item:hover img { transform: scale(1.04); }

/* Staggered gallery entry */
.gallery-full-item:nth-child(1)  { animation: gallery-in 0.6s ease both 0.05s; }
.gallery-full-item:nth-child(2)  { animation: gallery-in 0.6s ease both 0.1s; }
.gallery-full-item:nth-child(3)  { animation: gallery-in 0.6s ease both 0.15s; }
.gallery-full-item:nth-child(4)  { animation: gallery-in 0.6s ease both 0.2s; }
.gallery-full-item:nth-child(5)  { animation: gallery-in 0.6s ease both 0.25s; }
.gallery-full-item:nth-child(6)  { animation: gallery-in 0.6s ease both 0.3s; }
.gallery-full-item:nth-child(7)  { animation: gallery-in 0.6s ease both 0.35s; }
.gallery-full-item:nth-child(8)  { animation: gallery-in 0.6s ease both 0.4s; }
.gallery-full-item:nth-child(9)  { animation: gallery-in 0.6s ease both 0.45s; }
.gallery-full-item:nth-child(10) { animation: gallery-in 0.6s ease both 0.5s; }
.gallery-full-item:nth-child(11) { animation: gallery-in 0.6s ease both 0.55s; }

@keyframes gallery-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4,0,13,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-bold), 0 0 60px rgba(0,200,245,0.1);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--text-dim);
  font-size: 2rem;
  transition: color 0.2s, text-shadow 0.2s;
}
.lightbox-close:hover { color: var(--cursed-blue); text-shadow: var(--glow-blue); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--void);
  border-top: 1px solid rgba(0,200,245,0.08);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand img {
  height: 80px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(0,200,245,0.4));
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  color: var(--text-dim);
}
.footer-heading {
  font-family: var(--font-display);
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.07em;
  text-shadow: 0 0 20px rgba(226,217,243,0.1);
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer ul li a:hover { color: var(--cursed-blue); text-shadow: var(--glow-blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(226,217,243,0.2);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: var(--cursed-blue); }

/* ---------- SERVICE LIST (home page) ---------- */
.service-list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  border: 1px solid rgba(0,200,245,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(0,200,245,0.08);
  transition: background 0.2s ease;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: rgba(0,200,245,0.04); }

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(0,200,245,0.3);
  line-height: 1;
  flex-shrink: 0;
}

.service-row-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.service-row-content p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
}
.service-row-content .note {
  color: var(--cursed-blue);
  font-size: 0.8rem;
  opacity: 0.7;
}

.service-row-cta {
  color: var(--cursed-blue);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, text-shadow 0.2s;
  flex-shrink: 0;
}
.service-row-cta:hover {
  gap: 0.6rem;
  text-shadow: var(--glow-blue);
}

/* Google reviews band */
.google-reviews-band {
  background: var(--card);
  border-top: 1px solid rgba(0,200,245,0.08);
  border-bottom: 1px solid rgba(0,200,245,0.08);
  padding: 3rem 0;
  text-align: center;
}
.google-reviews-band h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.google-reviews-band p {
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---------- DARK SECTION TEXT OVERRIDES ---------- */
/* Used for services area badge strip (dark bg) */
.dark-strip {
  background: var(--deep);
  padding: 5rem 0;
  position: relative;
}
.dark-strip .section-label { color: var(--cursed-blue); }
.dark-strip .section-title { color: var(--text-light); }
.dark-strip p { color: var(--text-dim); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-block-icon { font-size: 4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .gallery-full-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 6rem 0 3rem; }
  .audio-player { gap: 0.6rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gallery-full-grid { columns: 1; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* =============================================
   EXTENDED STYLES — Phase 2 Enhancements
   ============================================= */

/* ---------- HERO STATS REDESIGN ---------- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,200,245,0.12);
  justify-content: flex-start;
  align-items: stretch;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 2rem;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,200,245,0.3), transparent);
}

.stat-icon-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,200,245,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  background: rgba(0,200,245,0.05);
  box-shadow: 0 0 16px rgba(0,200,245,0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cursed-blue);
  text-shadow: var(--glow-blue);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

/* ---------- ANIME HERO SILHOUETTE ---------- */
.hero-silhouette-wrap {
  flex-shrink: 0;
  width: 420px;
  align-self: center;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  animation: sil-float 6s ease-in-out infinite;
}

@keyframes sil-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-22px); }
}

.hero-silhouette-wrap svg { width: 100%; height: auto; display: block; }

@media (max-width: 1100px) {
  .hero-silhouette-wrap { width: 320px; }
}
@media (max-width: 850px) {
  .hero-silhouette-wrap { width: 240px; opacity: 0.7; }
}
@media (max-width: 700px) {
  .hero-silhouette-wrap { display: none; }
}

/* ---------- GOOGLE TRUST BAND ---------- */
.google-trust-band {
  padding: 6rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle radial glow behind the stars */
.google-trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,200,245,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.google-trust-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 520px;
  margin: 0 auto;
}

.google-trust-stars {
  font-size: 2.4rem;
  color: var(--cursed-blue);
  text-shadow: var(--glow-blue);
  letter-spacing: 6px;
  line-height: 1;
}

.google-trust-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-light);
  line-height: 1.1;
  margin: 0;
}

.google-trust-sub {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.google-trust-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- GALLERY HOMEPAGE ENHANCED ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
  margin-top: 3rem;
}

.gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(6) { display: none; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,0,13,0.85) 0%, rgba(4,0,13,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-shadow: var(--glow-blue);
}

/* ---------- GHIBLI DECORATIVE ART ---------- */
.ghibli-tree-divider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.ghibli-nature-strip {
  background: var(--void);
  overflow: hidden;
  position: relative;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Floating Ghibli particle animation */
.ghibli-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cursed-blue);
  opacity: 0;
  animation: ghibli-drift 8s ease-in-out infinite;
}
.ghibli-particle:nth-child(2) { animation-delay: -2s; width: 4px; height: 4px; left: 20%; background: var(--cursed-purple); }
.ghibli-particle:nth-child(3) { animation-delay: -4s; width: 5px; height: 5px; left: 60%; }
.ghibli-particle:nth-child(4) { animation-delay: -6s; width: 3px; height: 3px; left: 80%; background: var(--cursed-purple); }

@keyframes ghibli-drift {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5) rotate(180deg); }
}

/* Ghibli forest silhouette (SVG-based section divider) */
.ghibli-forest {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  opacity: 0.06;
}

/* ---------- BLOG AUTHOR COMMENTARY ---------- */
.author-commentary {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(124,58,237,0.06);
  border: 1.5px solid rgba(0,200,245,0.18);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.author-commentary::before {
  content: 'BRANDON'S CORNER';
  position: absolute;
  top: -0.6rem; left: 1.5rem;
  background: var(--surface);
  padding: 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--cursed-blue);
  letter-spacing: 0.15em;
  text-shadow: var(--glow-blue);
}

.author-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,200,245,0.4);
  box-shadow: 0 0 16px rgba(0,200,245,0.25);
  flex-shrink: 0;
}

.author-bubble {
  flex: 1;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cursed-blue);
  margin-bottom: 0.3rem;
  text-shadow: var(--glow-blue);
}

.author-bubble p {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- GHIBLI TRUCK DECORATION ---------- */
.ghibli-truck-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0 0;
  opacity: 0.7;
  pointer-events: none;
}

/* ---------- HERO FLOATING PARTICLES ---------- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.h-particle {
  position: absolute;
  border-radius: 50%;
  animation: h-float linear infinite;
  opacity: 0;
}

@keyframes h-float {
  0%   { opacity: 0; transform: translateY(100%) scale(0.5); }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.2); }
}
