/* ============================================
   ND MOBILE — Invitation-style Premium Theme
   ============================================ */

:root {
  --bg-1: #0b0f1a;
  --bg-2: #111729;
  --ink: #e9edf5;
  --ink-soft: #b9c1d4;
  --muted: #7d879c;
  --line: rgba(255,255,255,0.08);

  --gold-1: #f6d27a;
  --gold-2: #c79a3a;
  --gold-3: #8a6420;

  --accent: #7c9dff;
  --accent-2: #c77dff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.55);
  --shadow-md: 0 10px 30px -10px rgba(0,0,0,0.4);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 10% -10%, #1a2348 0%, transparent 60%),
    radial-gradient(900px 600px at 110% 10%, #3a1a4a 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-1) 0%, #070a14 100%);
  background-attachment: fixed;
  line-height:1.6;
  overflow-x:hidden;
  min-height:100vh;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; transition:color .2s; }
a:hover{ color:var(--gold-1); }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Floating background orbs ---------- */
.bg-orbs{
  position:fixed; inset:0; z-index:-1; pointer-events:none; overflow:hidden;
}
.orb{
  position:absolute; border-radius:50%; filter:blur(80px); opacity:.35;
  animation: float 18s ease-in-out infinite;
}
.orb-1{ width:480px; height:480px; background:#4c6bff; top:-120px; left:-120px; }
.orb-2{ width:420px; height:420px; background:#c77dff; bottom:-140px; right:-100px; animation-delay:-6s; }
.orb-3{ width:320px; height:320px; background:#f6d27a; top:40%; left:55%; opacity:.18; animation-delay:-12s; }
@keyframes float{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(30px,-40px) scale(1.08); }
}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,26,0.6);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px; gap:16px;
}
.brand{ display:inline-flex; align-items:center; gap:12px; }
.brand-mark{
  width:44px; height:44px; border-radius:12px;
  display:grid; place-items:center;
  font-family:var(--serif); font-weight:700; font-size:20px;
  color:#1a1306;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 10px 25px -10px rgba(246,210,122,.55), inset 0 0 0 1px rgba(255,255,255,.3);
  letter-spacing:.5px;
}
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{ font-family:var(--serif); font-weight:600; font-size:22px; letter-spacing:3px; }
.brand-sub{ font-size:10px; letter-spacing:4px; color:var(--muted); text-transform:uppercase; margin-top:4px; }

.main-nav{ display:flex; align-items:center; gap:8px; }
.main-nav a{
  padding:10px 16px; border-radius:999px; font-size:14px; font-weight:500;
  color:var(--ink-soft); position:relative; transition:all .25s;
}
.main-nav a:hover{ color:var(--ink); background:rgba(255,255,255,0.04); }
.main-nav a.active{
  color:var(--gold-1);
  background:rgba(246,210,122,0.08);
  box-shadow: inset 0 0 0 1px rgba(246,210,122,0.25);
}
.nav-cta{
  margin-left:8px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#1a1306 !important; font-weight:600 !important;
  padding:10px 20px !important;
  box-shadow: 0 10px 25px -10px rgba(246,210,122,.6);
}
.nav-cta:hover{ transform:translateY(-2px); }

.nav-burger{ display:none; width:40px; height:40px; cursor:pointer; }
.nav-burger span{ display:block; height:2px; background:var(--ink); margin:6px 8px; border-radius:2px; transition:.3s; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2){ opacity:0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-burger{ display:block; }
  .main-nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:rgba(11,15,26,0.96); border-bottom:1px solid var(--line);
    padding:16px; transform:translateY(-10px); opacity:0; pointer-events:none;
    transition:.25s;
  }
  .main-nav a{ padding:14px 18px; border-radius:10px; }
  .nav-toggle:checked ~ .main-nav{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-cta{ margin-left:0; text-align:center; }
}

/* ---------- Typography helpers ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold-1); margin-bottom:18px; font-weight:500;
}
.eyebrow::before, .eyebrow::after{
  content:""; width:36px; height:1px; background:linear-gradient(90deg, transparent, var(--gold-2));
}
.eyebrow.left::before{ display:none; }
.eyebrow.left{ padding-left:0; }

.h-display{
  font-family:var(--serif); font-weight:500;
  font-size: clamp(42px, 6vw, 82px); line-height:1.05;
  letter-spacing:-.5px; margin:0 0 20px;
}
.h-display em{
  font-style:italic; font-family:var(--script); font-weight:700;
  background: linear-gradient(135deg, var(--gold-1), #fff4d1);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-size:1.1em;
}
.h-section{
  font-family:var(--serif); font-weight:500;
  font-size: clamp(32px, 4vw, 54px); line-height:1.1; margin:0 0 16px;
}
.h-section em{
  font-style:italic; color:var(--gold-1); font-family:var(--script); font-weight:700;
}
.lead{ font-size:18px; color:var(--ink-soft); max-width:60ch; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 28px; border-radius:999px;
  font-weight:600; font-size:15px; letter-spacing:.3px;
  cursor:pointer; border:none; transition:all .25s;
  text-decoration:none;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#1a1306;
  box-shadow: 0 15px 40px -15px rgba(246,210,122,.7);
}
.btn-gold:hover{ transform:translateY(-3px); box-shadow: 0 20px 50px -15px rgba(246,210,122,.85); color:#1a1306; }
.btn-ghost{
  background:transparent; color:var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn-ghost:hover{ background:rgba(255,255,255,0.05); color:var(--gold-1); box-shadow: inset 0 0 0 1px var(--gold-2); }

/* ---------- Section spacing ---------- */
section{ padding: 96px 0; position:relative; }
@media (max-width:700px){ section{ padding:64px 0; } }

/* ---------- HERO (Invitation) ---------- */
.hero{
  padding: 80px 0 60px;
  position:relative;
}
.hero-card{
  max-width:1000px; margin:0 auto;
  padding: 80px 60px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    rgba(18,22,40,0.55);
  border:1px solid rgba(246,210,122,0.18);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.03);
  text-align:center;
  position:relative; overflow:hidden;
}
.hero-card::before, .hero-card::after{
  content:""; position:absolute; width:160px; height:160px;
  border: 1px solid rgba(246,210,122,0.3);
  border-radius: 12px;
}
.hero-card::before{ top:18px; left:18px; border-right:none; border-bottom:none; }
.hero-card::after{ bottom:18px; right:18px; border-left:none; border-top:none; }

.hero-ornate{
  font-family:var(--script); font-size:22px; color:var(--gold-1);
  margin-bottom:8px;
}
.hero-divider{
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin:20px 0 28px;
}
.hero-divider span{ width:80px; height:1px; background:linear-gradient(90deg, transparent, var(--gold-2), transparent); }
.hero-divider i{ color:var(--gold-1); font-style:normal; font-size:14px; }

.hero-meta{
  display:flex; flex-wrap:wrap; justify-content:center; gap:32px;
  margin:32px 0 40px; color:var(--ink-soft); font-size:14px; letter-spacing:1px;
}
.hero-meta div{ display:flex; align-items:center; gap:8px; }
.hero-meta div strong{ color:var(--gold-1); font-weight:600; letter-spacing:2px; text-transform:uppercase; font-size:11px; }

.hero-cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

@media (max-width:700px){
  .hero-card{ padding:50px 24px; }
  .hero-card::before, .hero-card::after{ width:80px; height:80px; }
}

/* ---------- Feature Grid ---------- */
.features{ }
.features-head{ text-align:center; max-width:720px; margin:0 auto 56px; }
.features-head .lead{ margin:0 auto; }

.feature-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:20px;
}
.feature{
  padding:32px 28px; border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border:1px solid var(--line);
  transition:.3s; position:relative; overflow:hidden;
}
.feature::before{
  content:""; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent, var(--gold-1), transparent);
  opacity:0; transition:.3s;
}
.feature:hover{ transform:translateY(-6px); border-color:rgba(246,210,122,0.3); }
.feature:hover::before{ opacity:1; }
.feature .icon{
  width:54px; height:54px; border-radius:14px;
  background: linear-gradient(135deg, rgba(246,210,122,0.15), rgba(199,154,58,0.05));
  display:grid; place-items:center; font-size:24px;
  margin-bottom:20px;
  box-shadow: inset 0 0 0 1px rgba(246,210,122,0.2);
}
.feature .num{
  font-family:var(--serif); font-weight:600;
  font-size:42px; line-height:1; margin-bottom:18px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  letter-spacing:1px;
}
.feature .num::after{
  content:""; display:block; width:36px; height:1px;
  background:linear-gradient(90deg, var(--gold-2), transparent);
  margin-top:10px;
}
.feature h3{ font-family:var(--serif); font-size:24px; margin:0 0 8px; font-weight:600; }
.feature p{ color:var(--ink-soft); margin:0; font-size:15px; }

/* ---------- Showcase (Home) ---------- */
.showcase-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:60px; align-items:center;
}
@media (max-width:900px){ .showcase-grid{ grid-template-columns:1fr; } }
.showcase-img{
  position:relative; aspect-ratio: 4/5;
  border-radius:24px; overflow:hidden;
  background: linear-gradient(135deg, #1a2348 0%, #3a1a4a 100%);
  box-shadow: var(--shadow-lg);
  display:grid; place-items:center;
  border:1px solid rgba(246,210,122,0.15);
}
.showcase-img img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s ease;
}
.showcase-img:hover img{ transform: scale(1.05); }
.showcase-img::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
}
.showcase-img .phone-mock{
  width:55%; aspect-ratio: 9/19;
  border-radius: 36px;
  background: linear-gradient(160deg, #0a0d15 0%, #1d233a 100%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.8), inset 0 0 0 2px rgba(246,210,122,.4), inset 0 0 0 8px #000;
  position:relative;
}
.showcase-img .phone-mock::before{
  content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:80px; height:20px; background:#000; border-radius:12px;
}
.showcase-img .phone-mock::after{
  content:"ND"; position:absolute; inset:0; display:grid; place-items:center;
  font-family:var(--serif); font-size:48px; font-weight:700;
  background:linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.stat-row{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
  margin-top:40px; padding-top:32px;
  border-top:1px solid var(--line);
}
.stat .num{
  font-family:var(--serif); font-size:40px; font-weight:600;
  background:linear-gradient(135deg, var(--gold-1), #fff4d1);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1;
}
.stat .lbl{ font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-top:8px; }

/* ---------- About page ---------- */
.about-hero{
  padding: 80px 0 40px; text-align:center;
}
.about-intro{
  display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center;
}
@media (max-width:900px){ .about-intro{ grid-template-columns:1fr; } }

.value-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:20px; margin-top:40px;
}

.timeline{
  max-width:820px; margin:40px auto 0; position:relative;
  padding-left:40px;
}
.timeline::before{
  content:""; position:absolute; left:12px; top:8px; bottom:8px; width:1px;
  background: linear-gradient(180deg, transparent, var(--gold-2), transparent);
}
.tl-item{ position:relative; padding-bottom:36px; }
.tl-item::before{
  content:""; position:absolute; left:-34px; top:6px; width:14px; height:14px;
  border-radius:50%; background:var(--gold-1);
  box-shadow: 0 0 0 4px rgba(246,210,122,0.2);
}
.tl-item h4{ font-family:var(--serif); font-size:22px; margin:0 0 6px; color:var(--gold-1); }
.tl-item p{ color:var(--ink-soft); margin:0; }

/* ---------- Products page ---------- */
.tabs{
  display:flex; gap:8px; justify-content:center; flex-wrap:wrap;
  margin-bottom:40px;
}
.tab{
  padding:10px 22px; border-radius:999px;
  background:transparent; color:var(--ink-soft); cursor:pointer;
  border:1px solid var(--line); font-size:14px; font-weight:500;
  transition:.25s; font-family:var(--sans);
}
.tab:hover{ color:var(--ink); border-color:rgba(246,210,122,0.3); }
.tab.active{
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#1a1306; border-color:transparent; font-weight:600;
}

.product-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr));
  gap:22px;
}
.product{
  border-radius:var(--radius); overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border:1px solid var(--line);
  transition:.3s;
  display:flex; flex-direction:column;
}
.product:hover{ transform:translateY(-6px); border-color:rgba(246,210,122,0.3); box-shadow:var(--shadow-md); }
.product-media{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2348, #3a1a4a);
  position:relative; overflow:hidden;
}
.product-media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease;
}
.product:hover .product-media img{ transform: scale(1.06); }
.product-media::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
}
.product-media .tag{
  position:absolute; top:12px; left:12px; z-index:2;
  font-size:10px; letter-spacing:2px; text-transform:uppercase;
  padding:5px 12px; border-radius:999px;
  background:rgba(0,0,0,0.55); color:var(--gold-1);
  border:1px solid rgba(246,210,122,0.35);
  backdrop-filter: blur(6px);
}
.product-body{ padding:20px 22px; flex:1; display:flex; flex-direction:column; }
.product-body h4{ font-family:var(--serif); font-size:22px; margin:0 0 6px; font-weight:600; }
.product-body p{ color:var(--ink-soft); font-size:14px; margin:0 0 16px; flex:1; }
.product-foot{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:14px; border-top:1px solid var(--line);
}
.product-foot .price{ color:var(--gold-1); font-weight:600; font-size:15px; }
.product-foot a{ font-size:13px; color:var(--ink-soft); }
.product-foot a:hover{ color:var(--gold-1); }

.service-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:22px;
}
.service{
  padding:32px 28px; border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border:1px solid var(--line);
  display:flex; gap:20px; align-items:flex-start;
  transition:.3s;
}
.service:hover{ transform:translateY(-4px); border-color:rgba(246,210,122,0.3); }
.service .ic{
  width:52px; height:52px; border-radius:14px; flex-shrink:0;
  background: linear-gradient(135deg, rgba(246,210,122,0.15), rgba(199,154,58,0.05));
  display:grid; place-items:center; font-size:22px;
  box-shadow: inset 0 0 0 1px rgba(246,210,122,0.2);
}
.service-num{
  width:48px; height:48px; border-radius:50%; flex-shrink:0;
  display:grid; place-items:center;
  font-family:var(--serif); color:var(--gold-1); font-size:20px;
  border:1px solid rgba(246,210,122,0.35);
  background: rgba(246,210,122,0.06);
}
.service h4{ font-family:var(--serif); font-size:22px; margin:0 0 6px; }
.service p{ color:var(--ink-soft); font-size:14px; margin:0; }

/* ---------- Contact ---------- */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:stretch;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

.contact-card{
  padding:40px; border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border:1px solid var(--line);
}
.contact-card h3{ font-family:var(--serif); font-size:30px; margin:0 0 20px; }

.info-list{ list-style:none; padding:0; margin:0; }
.info-list li{
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 0; border-bottom:1px solid var(--line);
}
.info-list li:last-child{ border-bottom:none; }
.info-list .ic{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  display:grid; place-items:center; font-size:18px;
  background: linear-gradient(135deg, rgba(246,210,122,0.15), rgba(199,154,58,0.05));
  box-shadow: inset 0 0 0 1px rgba(246,210,122,0.2);
}
.info-list .ic-text strong{ display:block; font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
.info-list .ic-text span, .info-list .ic-text a{ color:var(--ink); font-size:15px; }

.form-row{ margin-bottom:18px; }
.form-row label{
  display:block; font-size:12px; letter-spacing:2px;
  text-transform:uppercase; color:var(--muted); margin-bottom:8px;
}
.form-row input, .form-row textarea, .form-row select{
  width:100%; padding:14px 16px;
  background:rgba(255,255,255,0.03); color:var(--ink);
  border:1px solid var(--line); border-radius:12px;
  font-family:var(--sans); font-size:15px;
  transition:.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{
  outline:none; border-color:var(--gold-2);
  box-shadow: 0 0 0 4px rgba(246,210,122,0.1);
}
.form-row textarea{ resize:vertical; min-height:130px; }
.form-two{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px){ .form-two{ grid-template-columns:1fr; } }

.alert{
  padding:14px 18px; border-radius:12px; margin-bottom:20px;
  font-size:14px;
}
.alert-ok{
  background:rgba(124,196,145,0.1); color:#a7e3b8;
  border:1px solid rgba(124,196,145,0.3);
}
.alert-err{
  background:rgba(230,120,120,0.08); color:#ffb3b3;
  border:1px solid rgba(230,120,120,0.3);
}

.map-wrap{
  margin-top:40px; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line); box-shadow:var(--shadow-md);
}
.map-wrap iframe{ width:100%; height:380px; border:0; display:block; filter:hue-rotate(10deg) brightness(.95); }

/* ---------- CTA band ---------- */
.cta-band{
  text-align:center; padding:90px 20px;
  border-radius:24px; margin:40px auto;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(246,210,122,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border:1px solid rgba(246,210,122,0.2);
  max-width: 1100px;
}

/* ---------- Footer ---------- */
.site-footer{
  margin-top:80px;
  border-top:1px solid var(--line);
  background: rgba(7,10,20,0.6);
  backdrop-filter: blur(10px);
}
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
  gap:40px; padding:64px 24px 40px;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .footer-grid{ grid-template-columns:1fr; } }

.foot-col h4{
  font-family:var(--serif); font-size:18px; margin:0 0 18px;
  color:var(--gold-1); font-weight:500; letter-spacing:1px;
}
.foot-col ul{ list-style:none; padding:0; margin:0; }
.foot-col li{ margin-bottom:10px; color:var(--ink-soft); font-size:14px; }
.foot-col a{ color:var(--ink-soft); }
.foot-col a:hover{ color:var(--gold-1); }
.foot-contact li{ display:flex; gap:10px; align-items:flex-start; }
.foot-contact li span:first-child{ flex-shrink:0; }

.brand-foot{ margin-bottom:16px; }
.foot-line{ font-family:var(--script); font-size:20px; color:var(--gold-1); margin:0 0 4px; }
.foot-small{ font-size:13px; color:var(--muted); margin:0 0 16px; }

.foot-bar{
  border-top:1px solid var(--line);
  padding:18px 0;
}
.foot-bar-in{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color:var(--muted);
}

/* ---------- Floating call button ---------- */
.fab-call{
  position:fixed; bottom:24px; right:24px; z-index:40;
  width:56px; height:56px; border-radius:50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#1a1306 !important;
  display:grid; place-items:center; font-size:22px;
  box-shadow: 0 15px 40px -10px rgba(246,210,122,0.7);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 15px 40px -10px rgba(246,210,122,0.7), 0 0 0 0 rgba(246,210,122,0.5); }
  50%{ box-shadow: 0 15px 40px -10px rgba(246,210,122,0.7), 0 0 0 14px rgba(246,210,122,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition: all .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- Small utilities ---------- */
.text-center{ text-align:center; }
.mt-24{ margin-top:24px; }
.mt-40{ margin-top:40px; }
.mb-40{ margin-bottom:40px; }
