/* ============================================
   ALIZA NADINE TATTOOS — Main Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #B31217;
  --red-light: #e02020;
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --glass:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text:      #f0f0f0;
  --muted:     #888;
  --radius:    14px;
  --nav-h:     70px;
  /* Mouse spotlight position — updated by JS */
  --mx: 50%;
  --my: 50%;
}

/* ---------- Global mouse spotlight ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    900px circle at var(--mx) var(--my),
    rgba(179, 18, 23, 0.07),
    transparent 60%
  );
  transition: background 0.05s;
}

/* Grain texture removed — was causing constant repaints, hurting Core Web Vitals */

/* ---------- Gradient text utility ---------- */
.grad-text {
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-red {
  background: linear-gradient(135deg, #e02020, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ensure all page content sits above the particle canvas */
.nav, main, footer { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Utility ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.red { color: var(--red-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(179,18,23,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  box-shadow: 0 6px 28px rgba(179,18,23,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--glass-border);
}
.btn-outline:hover {
  border-color: var(--red-light);
  color: var(--red-light);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--red-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(179,18,23,0.12), transparent 70%);
  overflow: hidden;
}

/* subtle static dot grid — no animation (was causing continuous repaints) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-light);
  box-shadow: 0 0 8px var(--red-light);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.hero-title { margin-bottom: 20px; }
.hero-title em {
  font-style: normal;
  color: var(--red-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--red), transparent 60%);
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 80% 15%; /* face is upper-right in the source photo */
}
.hero-img-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg3);
  border: 1px dashed var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto; /* don't force full-screen on tablets/phones — avoids gap above portfolio */
    padding: calc(var(--nav-h) + 30px) 0 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { max-width: 420px; margin: 0 auto; }
}

/* ---------- Featured Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--bg3);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-card-placeholder {
  width: 100%; height: 100%;
  background: var(--bg3);
  border: 1px dashed var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.work-card:hover img { transform: scale(1.06); }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay h3 { font-size: 0.95rem; }
.work-overlay p  { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.work-footer {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px dashed var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; }
.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.specialty-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}
.specialty-card:hover {
  border-color: rgba(179,18,23,0.4);
  background: rgba(179,18,23,0.05);
}
.specialty-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 5px;
}
.specialty-card-title span { font-size: 1rem; }
.specialty-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.specialty-card-arrow {
  display: block;
  font-size: 0.72rem;
  color: var(--red-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

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

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap::after { display: none; }
}

/* ---------- Reviews ---------- */
.reviews-bg { background: var(--bg2); }
.stars { color: #f5c518; font-size: 1.1rem; letter-spacing: 2px; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.rating-num { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.rating-detail { text-align: left; }
.rating-detail .stars { font-size: 1.3rem; }
.rating-count { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg3);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-date { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.review-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.review-text em { color: var(--text); font-style: normal; }

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

/* ---------- Booking / Contact ---------- */
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
  height: 100%;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card p  { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg3);
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(179,18,23,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179,18,23,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: #4ade80;
  font-weight: 600;
}

@media (max-width: 768px) {
  .booking-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Map / Location ---------- */
.location-bg { background: var(--bg2); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.location-info h2 { margin-bottom: 16px; }
.location-info p  { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.location-info address {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.7;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .location-inner { grid-template-columns: 1fr; }
}

/* ---------- ICE Banner on homepage ---------- */
.ice-banner {
  background: linear-gradient(135deg, rgba(179,18,23,0.1), rgba(179,18,23,0.05));
  border: 1px solid rgba(179,18,23,0.3);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ice-banner-text h3 { font-size: 1.2rem; margin-bottom: 8px; }
.ice-banner-text p  { color: var(--muted); font-size: 0.9rem; max-width: 500px; }
.ice-banner-text .red-flag {
  display: inline-block;
  background: rgba(179,18,23,0.15);
  border: 1px solid rgba(179,18,23,0.3);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .ice-banner {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--glass-border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(179,18,23,0.1), transparent 70%);
}
.gallery-hero p { color: var(--muted); margin-top: 12px; font-size: 0.95rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 32px;
}
.filter-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(179,18,23,0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-bottom: 80px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  background: var(--bg3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }

@media (max-width: 900px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: min(90vw, 780px);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================
   ICE ENCOUNTERS PAGE
   ============================================ */
.ice-hero {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(179,18,23,0.14), transparent 70%);
}
.ice-hero p { color: var(--muted); margin-top: 14px; font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.ice-alert {
  background: rgba(179,18,23,0.08);
  border: 1px solid rgba(179,18,23,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.ice-alert strong { color: var(--red-light); }

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.rights-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}
.rights-card:hover { border-color: rgba(179,18,23,0.3); }
.rights-num {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(179,18,23,0.15);
  border: 1px solid rgba(179,18,23,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red-light);
  margin-bottom: 14px;
}
.rights-card h3 { font-size: 1rem; margin-bottom: 8px; }
.rights-card p  { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.phrases-section { background: var(--bg2); padding: 60px 0; }
.phrases-section h2 { text-align: center; margin-bottom: 12px; }
.phrases-section .intro { text-align: center; color: var(--muted); margin-bottom: 40px; font-size: 0.92rem; }

.phrase-list { display: flex; flex-direction: column; gap: 14px; max-width: 700px; margin: 0 auto; }
.phrase-item {
  background: var(--glass);
  border: 1px solid rgba(179,18,23,0.2);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 14px;
}
.phrase-icon { font-size: 1.2rem; flex-shrink: 0; }

.ice-resources { padding: 60px 0; }
.ice-resources h2 { text-align: center; margin-bottom: 40px; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.resource-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.resource-card:hover { border-color: rgba(179,18,23,0.3); transform: translateY(-2px); }
.resource-icon { font-size: 2rem; margin-bottom: 12px; }
.resource-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.resource-card p  { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.resource-card a  { font-size: 0.8rem; font-weight: 700; color: var(--red-light); text-transform: uppercase; letter-spacing: 0.08em; }
.resource-card a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .rights-grid    { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS & MISC
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Magnetic button effect ---------- */
.btn { will-change: transform; }

/* ---------- Card hover — simple border lift (no mousemove repaint) ---------- */
.work-card,
.review-card,
.contact-card,
.rights-card,
.resource-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.work-card:hover,
.review-card:hover,
.contact-card:hover,
.rights-card:hover,
.resource-card:hover {
  border-color: rgba(179, 18, 23, 0.35);
  transform: translateY(-2px);
}

/* ---------- Hero title gradient ---------- */
.hero-title { letter-spacing: -0.03em; }

/* ---------- Shimmer on hero badge ---------- */
.hero-badge {
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: rgba(10,10,10,0.97);
    border-top: 1px solid var(--glass-border);
    padding: 10px 16px 14px;
    gap: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .mobile-cta-call,
  .mobile-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 8px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.15s;
  }
  .mobile-cta-call:active,
  .mobile-cta-book:active { opacity: 0.75; }
  .mobile-cta-call {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
  }
  .mobile-cta-book {
    background: var(--red);
    color: #fff;
  }
  /* Keep content above the bar */
  body { padding-bottom: 80px; }
}

/* ---------- ICE share graphics ---------- */
.ice-graphics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ice-graphics-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}
@media (max-width: 768px) {
  .ice-graphics-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FAQ ---------- */
#faq h2 { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(179,18,23,0.4); }

.faq-q {
  list-style: none;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red-light);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-a a { color: var(--red-light); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

::selection { background: rgba(179,18,23,0.3); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
