/* ============================================================
   IRA TATTOO & BROWS — v2 "Champagne Atelier"
   Warm ivory luxury · glass · 3D · cinematic
   ============================================================ */

:root {
  --ivory: #f7f2e9;
  --ivory-2: #f0e8d9;
  --cream: #faf6ee;
  --espresso: #241b12;
  --espresso-2: #322619;
  --text: #33271b;
  --text-soft: #7d6b55;
  --text-light: #efe6d6;
  --text-light-soft: #cbb99e;
  --gold: #b08948;
  --gold-bright: #d4af6e;
  --gold-deep: #8a6a34;
  --gold-dim: rgba(176, 137, 72, 0.4);
  --line: rgba(176, 137, 72, 0.25);
  --line-dark: rgba(212, 175, 110, 0.22);
  --glass: rgba(255, 252, 245, 0.6);
  --glass-dark: rgba(36, 27, 18, 0.5);
  --whatsapp: #1fb355;
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Frank Ruhl Libre', serif;
  --font-body: 'Assistant', sans-serif;
  --shadow: 0 20px 50px rgba(70, 50, 25, 0.14);
  --shadow-lg: 0 34px 80px rgba(60, 42, 20, 0.22);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.18; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.dark-section .eyebrow { color: var(--gold-bright); }
.section-title { font-size: clamp(34px, 5vw, 56px); margin-bottom: 18px; }
.section-sub { color: var(--text-soft); max-width: 580px; font-size: 18px; font-weight: 300; }
.dark-section .section-sub { color: var(--text-light-soft); }

.container { width: min(1200px, 91%); margin-inline: auto; }
section { padding: clamp(84px, 10vw, 136px) 0; position: relative; }
.section-head { margin-bottom: clamp(46px, 6vw, 72px); }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head.center .eyebrow::before,
.section-head.center .eyebrow::after { content: ""; width: 44px; height: 1px; background: var(--gold); opacity: 0.6; display: inline-block; }

.alt-bg { background: linear-gradient(180deg, var(--ivory-2), var(--ivory)); }

/* dark warm sections (never pure black) */
.dark-section {
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(212, 175, 110, 0.12), transparent),
    linear-gradient(160deg, #2c2114, var(--espresso) 55%, #1d150d);
  color: var(--text-light);
}

/* floating gradient orbs */
.orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite alternate;
}
.orb.o1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(212,175,110,0.5), transparent 65%); top: -120px; inset-inline-end: -80px; }
.orb.o2 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(176,137,72,0.35), transparent 65%); bottom: -100px; inset-inline-start: -60px; animation-delay: -8s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.15); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 40px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: inset-inline-start 0.6s ease;
}
.btn:hover::before { inset-inline-start: 120%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-solid {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(176, 137, 72, 0.35);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(176, 137, 72, 0.45); }
.btn-ghost { background: rgba(255, 252, 245, 0.06); color: inherit; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(176, 137, 72, 0.12); transform: translateY(-3px); }
.btn-wa { background: var(--whatsapp); border-color: transparent; color: #fff; box-shadow: 0 10px 26px rgba(31, 179, 85, 0.3); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(31, 179, 85, 0.4); }

/* ---------- Header ---------- */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 100; transition: var(--transition); padding: 20px 0; }
.site-header.scrolled {
  background: rgba(247, 242, 233, 0.75);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  box-shadow: 0 6px 30px rgba(70, 50, 25, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.16em; display: flex; align-items: baseline; gap: 8px; white-space: nowrap; color: var(--text); }
.on-hero .logo, .site-header:not(.scrolled).over-dark .logo { color: var(--text-light); }
.logo strong { color: var(--gold-deep); font-weight: 600; }
.site-header:not(.scrolled).over-dark .logo strong { color: var(--gold-bright); }
.logo span.tag { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.36em; color: var(--text-soft); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; color: inherit; opacity: 0.8; transition: var(--transition); position: relative; }
.main-nav a::after { content: ""; position: absolute; bottom: -6px; inset-inline-start: 0; width: 0; height: 2px; border-radius: 2px; background: var(--gold); transition: width 0.3s; }
.main-nav a:hover { opacity: 1; color: var(--gold-deep); }
.main-nav a:hover::after { width: 100%; }
.site-header:not(.scrolled).over-dark .main-nav { color: var(--text-light); }
.site-header:not(.scrolled).over-dark .main-nav a:hover { color: var(--gold-bright); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: 40px;
  color: var(--gold-deep) !important;
  opacity: 1 !important;
  background: rgba(255, 252, 245, 0.5);
  backdrop-filter: blur(8px);
}
.site-header:not(.scrolled).over-dark .nav-cta { color: var(--gold-bright) !important; background: rgba(36, 27, 18, 0.3); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: #fff !important; }

.burger { display: none; background: rgba(255,252,245,0.5); border: 1px solid var(--line); border-radius: 12px; width: 48px; height: 48px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; backdrop-filter: blur(8px); }
.burger span { width: 20px; height: 2px; border-radius: 2px; background: var(--gold-deep); transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  background: linear-gradient(160deg, #2e2214, #241b12 60%, #1c140c);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.08);
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(212, 175, 110, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(30, 22, 13, 0.55), rgba(28, 20, 12, 0.82));
  z-index: 1;
}
#gold-dust { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero .container { position: relative; z-index: 3; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.hero-kicker { font-size: 12px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 26px; display: flex; align-items: center; gap: 16px; }
.hero-kicker::after { content: ""; flex: 1; max-width: 80px; height: 1px; background: var(--gold-dim); }
.hero h1 { font-size: clamp(46px, 7vw, 88px); line-height: 1.06; margin-bottom: 10px; text-shadow: 0 4px 40px rgba(0,0,0,0.4); }
.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, #f0d9a8, var(--gold-bright) 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub-en { font-size: 13px; letter-spacing: 0.55em; text-transform: uppercase; color: var(--text-light-soft); margin-bottom: 30px; }
.hero-desc { color: var(--text-light-soft); font-size: 19px; font-weight: 300; max-width: 480px; margin-bottom: 42px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-stats {
  display: inline-flex;
  gap: clamp(28px, 4vw, 52px);
  padding: 22px 34px;
  border-radius: var(--radius);
  background: rgba(36, 27, 18, 0.45);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}
.stat .num { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 40px); color: var(--gold-bright); line-height: 1; }
.stat .lbl { font-size: 13px; letter-spacing: 0.08em; color: var(--text-light-soft); margin-top: 8px; }

.hero-visual { position: relative; perspective: 1200px; }
.hero-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(212, 175, 110, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(212, 175, 110, 0.35); border-radius: 8px; pointer-events: none; }
.hero-badge {
  position: absolute;
  bottom: -22px;
  inset-inline-start: -22px;
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 16px 26px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  inset-inline: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
  opacity: 0.7;
}

.ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; min-height: 240px; color: var(--gold-dim); text-align: center; padding: 20px; font-size: 14px; background: linear-gradient(160deg, var(--ivory-2), #e7dcc7); }
.ph svg { width: 44px; height: 44px; opacity: 0.6; }

/* ---------- Cards (3D tilt) ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; perspective: 1400px; }
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 8px 26px rgba(70, 50, 25, 0.08);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold-dim); }
.card > * { transform: translateZ(24px); }
.card .idx { font-family: var(--font-display); font-size: 15px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 18px; display: block; }
.card .icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,175,110,0.25), rgba(176,137,72,0.1));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-deep);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 24px; margin-bottom: 6px; }
.card .en { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.card p { color: var(--text-soft); font-size: 16px; font-weight: 300; }

/* ---------- Styles grid ---------- */
.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1400px; }
.style-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 6px 20px rgba(70, 50, 25, 0.06);
}
.style-item:hover { box-shadow: var(--shadow); border-color: var(--gold-dim); }
.style-item h3 { font-size: 19px; margin-bottom: 4px; }
.style-item .en { font-size: 10px; letter-spacing: 0.26em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.style-item p { font-size: 14.5px; color: var(--text-soft); font-weight: 300; line-height: 1.65; }
.style-item.featured { border-color: var(--gold); background: linear-gradient(150deg, rgba(212, 175, 110, 0.16), var(--cream) 55%); }
.style-item.featured .badge { display: inline-block; font-size: 10px; letter-spacing: 0.2em; background: var(--gold); border-radius: 20px; color: #fff; padding: 4px 14px; margin-bottom: 14px; font-weight: 700; }

.note-line {
  margin-top: 46px;
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
}
.note-line strong { color: var(--gold-deep); font-weight: 700; }
.dark-section .note-line { background: var(--glass-dark); color: var(--text-light-soft); border-color: var(--line-dark); }
.dark-section .note-line strong { color: var(--gold-bright); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(44px, 6vw, 90px); align-items: center; }
.about-visual { position: relative; perspective: 1200px; }
.about-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.quote-card {
  position: absolute;
  bottom: 30px;
  inset-inline-end: -26px;
  max-width: 300px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  color: var(--gold-deep);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.about-text p { color: var(--text-soft); font-weight: 300; margin-bottom: 20px; font-size: 17.5px; }
.about-text p strong { color: var(--text); font-weight: 700; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 34px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.feature h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.feature p { font-size: 14px; color: var(--text-soft); margin: 0; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--text-soft);
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { color: var(--gold-deep); border-color: var(--gold); transform: translateY(-2px); }
.filter-btn.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); border-color: transparent; color: #fff; box-shadow: 0 8px 20px rgba(176, 137, 72, 0.3); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1400px; }
.g-item {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  transition: box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 10px 30px rgba(70, 50, 25, 0.1);
}
.g-item:hover { box-shadow: var(--shadow-lg); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item .cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 46px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(30, 21, 12, 0.85));
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #f0d9a8;
}
.g-item.hidden { display: none; }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 28px; inset-inline: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold-dim), transparent); }
.t-step { text-align: center; }
.t-step .dot {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(176, 137, 72, 0.2);
}
.dark-section .t-step .dot { background: var(--espresso-2); color: var(--gold-bright); }
.t-step .dot svg { width: 24px; height: 24px; }
.t-step .when { font-size: 11px; letter-spacing: 0.3em; color: var(--gold-deep); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.dark-section .t-step .when { color: var(--gold-bright); }
.t-step h3 { font-size: 19px; margin-bottom: 8px; }
.t-step p { font-size: 14.5px; color: var(--text-soft); font-weight: 300; }
.dark-section .t-step p { color: var(--text-light-soft); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1400px; }
.testi {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(70, 50, 25, 0.08);
}
.testi:hover { box-shadow: var(--shadow); }
.testi .stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; margin-bottom: 16px; }
.testi p { color: var(--text-soft); font-weight: 300; font-size: 16px; margin-bottom: 18px; }
.testi .who { font-family: var(--font-display); color: var(--gold-deep); font-size: 15px; letter-spacing: 0.08em; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-align: start;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .pm {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, rgba(212,175,110,0.3), rgba(176,137,72,0.12));
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .pm { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-a p { color: var(--text-soft); font-weight: 300; padding: 0 28px 26px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; overflow: hidden; }
.cta-band h2 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 16px; }
.cta-band p { max-width: 540px; margin: 0 auto 38px; font-weight: 300; font-size: 18px; color: var(--text-light-soft); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; perspective: 1400px; }
.info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s ease;
  box-shadow: 0 8px 22px rgba(70, 50, 25, 0.07);
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card svg { width: 28px; height: 28px; color: var(--gold-deep); margin: 0 auto 16px; }
.info-card h4 { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; font-weight: 700; font-family: var(--font-body); }
.info-card p, .info-card a { font-size: 17px; color: var(--text); }
.info-card a:hover { color: var(--gold-deep); }

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 740px;
  margin-inline: auto;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 58px);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; letter-spacing: 0.08em; font-weight: 700; color: var(--text-soft); text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 15px 18px;
  transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 137, 72, 0.15);
}
.field textarea { min-height: 110px; resize: vertical; }
.deposit-box {
  margin-top: 28px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(212, 175, 110, 0.18), rgba(212, 175, 110, 0.04));
  padding: 26px 28px;
  font-size: 15px;
  color: var(--text-soft);
}
.deposit-box h4 { color: var(--gold-deep); font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.check-row { display: flex; gap: 12px; align-items: flex-start; margin-top: 26px; font-size: 15px; color: var(--text-soft); }
.check-row input { width: 19px; height: 19px; accent-color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.check-row a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.form-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.form-note { margin-top: 18px; font-size: 14px; color: var(--text-soft); text-align: center; }

/* ---------- Page hero ---------- */
.page-hero {
  padding: 190px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  background:
    radial-gradient(ellipse 60% 90% at 50% -10%, rgba(212, 175, 110, 0.2), transparent),
    linear-gradient(160deg, #2c2114, var(--espresso) 65%);
}
.page-hero h1 { font-size: clamp(40px, 6vw, 66px); margin-bottom: 14px; }
.page-hero p { color: var(--text-light-soft); max-width: 640px; margin-inline: auto; font-weight: 300; font-size: 18px; }
.page-hero .eyebrow { color: var(--gold-bright); }

/* ---------- Terms ---------- */
.terms-list { max-width: 840px; margin-inline: auto; counter-reset: term; }
.term-block { border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); padding: 32px 36px; margin-bottom: 18px; box-shadow: 0 6px 18px rgba(70, 50, 25, 0.05); }
.term-block h3 { font-size: 20px; color: var(--gold-deep); margin-bottom: 12px; display: flex; align-items: center; gap: 14px; }
.term-block h3::before {
  counter-increment: term;
  content: counter(term, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.term-block p { color: var(--text-soft); font-weight: 300; font-size: 16px; }
.updated { text-align: center; color: var(--gold); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 40px; font-weight: 700; }

/* ---------- KV list ---------- */
.kv-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.kv { display: grid; grid-template-columns: 210px 1fr; gap: 20px; padding: 22px 28px; background: var(--cream); border-bottom: 1px solid var(--line); }
.kv:last-child { border-bottom: none; }
.kv:nth-child(even) { background: var(--ivory-2); }
.kv dt { font-weight: 700; color: var(--gold-deep); font-size: 16px; }
.kv dd { color: var(--text-soft); font-weight: 300; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(212, 175, 110, 0.1), transparent),
    linear-gradient(160deg, #2a1f12, #1e160d);
  color: var(--text-light);
  padding: 64px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-grid h4 { font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-grid p { color: var(--text-light-soft); font-weight: 300; font-size: 15px; max-width: 320px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: var(--text-light-soft); font-size: 15px; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13.5px; color: var(--text-light-soft); }
.footer-bottom a { color: var(--gold-bright); opacity: 0.8; }
.footer-bottom a:hover { opacity: 1; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(31, 179, 85, 0.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Chatbot ---------- */
.bot-toggle {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 129;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(176, 137, 72, 0.5), 0 0 0 0 rgba(212, 175, 110, 0.5);
  transition: var(--transition);
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 12px 34px rgba(176,137,72,0.5), 0 0 0 0 rgba(212,175,110,0.45); }
  70% { box-shadow: 0 12px 34px rgba(176,137,72,0.5), 0 0 0 18px rgba(212,175,110,0); }
  100% { box-shadow: 0 12px 34px rgba(176,137,72,0.5), 0 0 0 0 rgba(212,175,110,0); }
}
.bot-toggle:hover { transform: scale(1.1); }
.bot-toggle svg { width: 30px; height: 30px; }

.bot-window {
  position: fixed;
  bottom: 104px;
  inset-inline-end: 26px;
  z-index: 130;
  width: min(390px, calc(100vw - 40px));
  height: min(560px, calc(100svh - 150px));
  border-radius: 22px;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(50, 35, 15, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;
  transition: var(--transition);
}
.bot-window.open { opacity: 1; transform: none; pointer-events: auto; }
.bot-head {
  padding: 18px 22px;
  background: linear-gradient(135deg, #2e2214, var(--espresso));
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.bot-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(212, 175, 110, 0.3);
}
.bot-avatar svg { width: 24px; height: 24px; }
.bot-head .t { flex: 1; }
.bot-head .t b { display: block; font-size: 16px; font-family: var(--font-display); letter-spacing: 0.04em; }
.bot-head .t span { font-size: 12px; color: var(--gold-bright); display: flex; align-items: center; gap: 6px; }
.bot-head .t span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.bot-close { background: none; border: none; color: var(--text-light-soft); font-size: 22px; cursor: pointer; padding: 4px 8px; }
.bot-close:hover { color: #fff; }

.bot-msgs { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 84%; padding: 13px 17px; border-radius: 18px; font-size: 15px; line-height: 1.6; animation: msgIn 0.35s ease; white-space: pre-line; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.msg.bot { background: #fff; border: 1px solid var(--line); color: var(--text); align-self: flex-start; border-start-start-radius: 6px; box-shadow: 0 4px 14px rgba(70,50,25,0.08); }
.msg.user { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #fff; align-self: flex-end; border-start-end-radius: 6px; }
.msg a { color: var(--gold-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.msg.typing { display: inline-flex; gap: 5px; padding: 16px 18px; }
.msg.typing i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: blink 1.2s infinite; }
.msg.typing i:nth-child(2) { animation-delay: 0.2s; }
.msg.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }

.bot-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 12px; }
.chip {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-deep);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.chip:hover { background: var(--gold); color: #fff; border-color: transparent; transform: translateY(-2px); }

.bot-input { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); background: rgba(255, 253, 248, 0.7); }
.bot-input input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--text);
}
.bot-input input:focus { outline: none; border-color: var(--gold); }
.bot-input button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.bot-input button:hover { transform: scale(1.08); }
.bot-input button svg { width: 20px; height: 20px; transform: scaleX(-1); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }

.skip-link { position: absolute; top: -60px; inset-inline-start: 16px; background: var(--gold); color: #fff; padding: 12px 22px; border-radius: 8px; z-index: 200; font-weight: 700; transition: top 0.2s; }
.skip-link:focus { top: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-3, .testi-grid { grid-template-columns: 1fr 1fr; }
  .styles-grid, .gallery-grid, .info-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 40px 22px; }
  .timeline::before { display: none; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(247, 242, 233, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 95;
    color: var(--text) !important;
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 20px; }
  .burger { display: flex; position: relative; z-index: 96; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .hero { padding-top: 130px; }
  .quote-card { inset-inline-end: 10px; bottom: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; gap: 6px; }
  .bot-window { inset-inline-end: 12px; bottom: 96px; }
}
@media (max-width: 560px) {
  .cards-3, .testi-grid, .styles-grid, .gallery-grid, .info-grid, .timeline { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 18px 22px; }
  .hero-badge { inset-inline-start: 10px; bottom: -18px; padding: 12px 18px; }
  body { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  #gold-dust { display: none; }
}

/* ---------- Intro reveal (index only, once per session) ---------- */
#intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, #332616, #1c140c 75%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.9s ease, visibility 0.9s;
}
#intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
#intro canvas { position: absolute; inset: 0; }
#intro .in-logo {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 58px);
  letter-spacing: 0.18em;
  color: var(--text-light);
  opacity: 0;
  transform: scale(0.92);
  animation: introIn 1.1s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  text-align: center;
}
#intro .in-logo strong {
  color: transparent;
  background: linear-gradient(120deg, #f0d9a8, var(--gold-bright) 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}
#intro .in-sub {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  animation: introIn 1s 0.85s ease forwards;
  position: relative;
}
#intro .in-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: introLine 1.2s 0.5s ease forwards;
  position: relative;
}
@keyframes introIn { to { opacity: 1; transform: none; } }
@keyframes introLine { to { width: min(320px, 60vw); } }
@media (prefers-reduced-motion: reduce) { #intro { display: none; } }

/* ---------- Intro v2: needle engraving + enter button ---------- */
#intro .in-svg { width: min(660px, 88vw); position: relative; }
#intro .in-svg text {
  font-family: var(--font-display);
  font-size: 58px;
  letter-spacing: 6px;
  fill: rgba(226, 193, 133, 0);
  stroke: #d4af6e;
  stroke-width: 1.1;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  filter: drop-shadow(0 0 12px rgba(212, 175, 110, 0.35));
}
#intro.engrave .in-svg text {
  animation: engrave 2.3s ease-in-out forwards, inkfill 0.9s 2.1s ease forwards;
}
@keyframes engrave { to { stroke-dashoffset: 0; } }
@keyframes inkfill { to { fill: #e2c185; } }
#intro .in-line { animation: none; opacity: 0; }
#intro .in-sub { animation: none; opacity: 0; }
#intro.engrave .in-line { opacity: 1; animation: introLine 1s 2.3s ease forwards; }
#intro.engrave .in-sub { animation: introIn 0.9s 2.6s ease forwards; }
#in-enter {
  position: relative;
  margin-top: 26px;
  background: rgba(212, 175, 110, 0.08);
  border: 1px solid var(--gold-bright);
  border-radius: 60px;
  color: #f0d9a8;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 16px 46px;
  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(6px);
  animation: introIn 1s 0.5s ease forwards, pulse 3s 1.5s infinite;
  transition: var(--transition);
}
#in-enter:hover { background: var(--gold); color: #1c140c; transform: scale(1.05); }
#intro.engrave #in-enter { opacity: 0 !important; pointer-events: none; transition: opacity 0.3s; animation: none; }

/* ---------- Bottom promo bar (auto-expires) ---------- */
.promo-bar {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 92;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 56px 12px 20px;
  background: linear-gradient(90deg, rgba(46, 34, 20, 0.97), rgba(36, 27, 18, 0.97));
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-dark);
  color: var(--text-light);
  font-size: 15px;
  box-shadow: 0 -10px 40px rgba(30, 20, 10, 0.3);
  animation: promoIn 0.7s 1.2s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes promoIn { from { transform: translateY(100%); } to { transform: none; } }
.promo-bar b { color: var(--gold-bright); font-weight: 700; }
.promo-bar .promo-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #17120c;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  border-radius: 40px;
  transition: var(--transition);
  white-space: nowrap;
}
.promo-bar .promo-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 110, 0.4); }
.promo-bar .promo-close {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--text-light-soft);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.promo-bar .promo-close:hover { color: #fff; border-color: var(--gold-bright); }
body.has-promo .wa-float { bottom: 92px; }
body.has-promo .bot-toggle { bottom: 92px; }
body.has-promo .bot-window { bottom: 170px; }
@media (max-width: 560px) {
  .promo-bar { font-size: 13.5px; gap: 10px; padding: 10px 48px 10px 14px; }
}

/* ---------- Accessibility widget ---------- */
.a11y-btn {
  position: fixed;
  inset-inline-start: 0;
  top: 44%;
  z-index: 140;
  width: 46px; height: 46px;
  border: none;
  border-start-end-radius: 12px;
  border-end-end-radius: 12px;
  background: #1a56db;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.a11y-btn svg { width: 26px; height: 26px; }
.a11y-btn:focus-visible { outline: 3px solid #ffbf00; }
.a11y-panel {
  position: fixed;
  inset-inline-start: 10px;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  z-index: 141;
  width: min(300px, calc(100vw - 30px));
  max-height: 84svh;
  overflow-y: auto;
  background: #fff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  direction: rtl;
}
.a11y-panel.open { opacity: 1; pointer-events: auto; transform: translateY(-50%); }
.a11y-panel h3 { font-family: var(--font-body); font-size: 17px; margin-bottom: 12px; color: #111; display:flex; justify-content:space-between; align-items:center; }
.a11y-panel .a11y-close { background:none;border:none;font-size:18px;cursor:pointer;color:#333;padding:2px 8px; }
.a11y-panel .opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-opt {
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
  color: #111;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 6px;
  cursor: pointer;
  text-align: center;
}
.a11y-opt[aria-pressed="true"] { background: #1a56db; color: #fff; border-color: #1a56db; }
.a11y-panel .a11y-foot { margin-top: 12px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.a11y-panel .a11y-foot a { color: #1a56db; text-decoration: underline; }
.a11y-panel .a11y-reset { background:none;border:none;color:#b91c1c;font-weight:700;cursor:pointer;font-family:var(--font-body);font-size:13px; }

/* modes */
html.a11y-zoom1 body { zoom: 1.12; }
html.a11y-zoom2 body { zoom: 1.25; }
html.a11y-contrast {
  --ivory:#ffffff; --ivory-2:#ffffff; --cream:#ffffff;
  --text:#000000; --text-soft:#1c1c1c;
  --gold:#6b4a0e; --gold-bright:#6b4a0e; --gold-deep:#4d3406; --gold-dim:#6b4a0e;
  --line:#000000aa; --line-soft:#00000055; --glass:#ffffff;
  --espresso:#000000; --espresso-2:#000000;
  --text-light:#ffffff; --text-light-soft:#f0f0f0; --line-dark:#ffffffaa; --glass-dark:#000000;
}
html.a11y-contrast .hero-bg, html.a11y-contrast body::after { opacity: 0.12 !important; }
html.a11y-gray img, html.a11y-gray .hero-bg { filter: grayscale(1); }
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; font-weight: 700 !important; }
html.a11y-font body, html.a11y-font body * { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: 0 !important; }
html.a11y-still *, html.a11y-still *::before, html.a11y-still *::after { animation: none !important; transition: none !important; }
html.a11y-still #gold-dust, html.a11y-still .orb { display: none !important; }
html.a11y-cursor, html.a11y-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath d='M4 2l16 11h-8l-2 8z' fill='%23000' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") 4 2, auto !important; }
