*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #A8782A;
  --gold-lt:     #C9A84C;
  --gold-dk:     #7A5520;
  --gold-bg:     #FBF6E9;
  --gold-tint:   rgba(168,120,42,.09);
  --gold-border: rgba(168,120,42,.2);

  --bg:    #FDFCF8;
  --bg2:   #FFFFFF;
  --bg3:   #F8F4EC;
  --bg4:   #F0EAD8;

  --dark:  #0F0D08;
  --text:  #241F14;
  --text2: #48402F;
  --muted: #7A7060;
  --light: #B0A898;

  --sh-sm: 0 2px 14px rgba(0,0,0,.05);
  --sh-md: 0 8px 36px rgba(0,0,0,.09);
  --sh-lg: 0 20px 64px rgba(0,0,0,.13);
  --sh-xl: 0 40px 100px rgba(0,0,0,.16);
  --glow:  0 6px 36px rgba(168,120,42,.28);

  --r:    .75rem;
  --r2:   1.25rem;
  --t:    all .35s cubic-bezier(.4,0,.2,1);
}

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

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
::selection { background: var(--gold); color: #fff; }

/* ─────────── LOADER ─────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px;
  transition: opacity .6s, visibility .6s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.ld-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ld-ring::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  animation: spin 1.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ld-ring i { color: var(--gold); font-size: 1.6rem; }
.ld-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dark);
}
.ld-name span { color: var(--gold); }
.ld-bar { width: 160px; height: 1.5px; background: var(--bg4); overflow: hidden; }
.ld-bar-inner { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); animation: fillBar 2s ease forwards; }
@keyframes fillBar { to { width: 100%; } }

/* ─────────── NAV ─────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--t);
}
nav.scrolled {
  background: rgba(253,252,248,.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--text2); text-decoration: none;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: var(--gold) !important; color: #fff !important;
  padding: .46rem 1.3rem !important; border-radius: 2px !important;
}
.nav-btn:hover { background: var(--gold-dk) !important; }
.nav-btn::after { display: none !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─────────── HERO ─────────── */
#home {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
  background: var(--bg);
  gap: clamp(2rem,5vw,5rem);
  max-width: 1400px; margin: 0 auto;
}
.hero-deco-ring {
  position: absolute; pointer-events: none;
  border-radius: 50%; border: 1px solid var(--gold-border);
}
.dr1 { width: 600px; height: 600px; top: -200px; right: -200px; opacity: .5; }
.dr2 { width: 320px; height: 320px; top: -80px; right: -80px; opacity: .7; }
.dr3 { width: 900px; height: 900px; bottom: -400px; left: -300px; opacity: .3; }
.hero-vline { position: absolute; top: 0; height: 100%; width: 1px; background: linear-gradient(to bottom, transparent 10%, var(--gold-border) 50%, transparent 90%); pointer-events: none; }
.vl1 { left: 9%; }
.vl2 { right: 9%; }

#particles-js { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  border-radius: 100px; padding: .36rem 1rem;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 900; line-height: 1.08;
  color: var(--dark); margin-bottom: 1.1rem;
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-h1 .g { color: var(--gold); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem,2vw,1.35rem); font-style: italic;
  color: var(--muted); letter-spacing: .07em; margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp .9s .65s forwards;
}
.hero-desc {
  font-size: clamp(.85rem,1.6vw,.97rem); font-weight: 300;
  color: var(--text2); line-height: 1.9; max-width: 500px; margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp .9s .8s forwards;
}
.hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s .95s forwards; }

.hero-right { position: relative; z-index: 2; opacity: 0; animation: slideIn 1s 1.1s forwards; }
@keyframes slideIn { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

.globe-wrap {
  position: relative; width: 100%; padding-bottom: 100%;
  border-radius: 50%;
}
.globe-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: rotateRing 18s linear infinite;
}
.gr1 { inset: -20px; }
.gr2 { inset: -42px; opacity: .55; animation-duration: 28s; animation-direction: reverse; }
.gr3 { inset: -65px; opacity: .3; animation-duration: 40s; }
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.globe-ring::before {
  content: '';
  position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}
.globe-img {
  position: absolute; inset: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--sh-xl), 0 0 0 6px rgba(168,120,42,.12);
}
.globe-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-chip {
  position: absolute; z-index: 3;
  background: var(--bg2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: .7rem 1rem;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: .6rem;
}
.chip1 { bottom: 14%; left: -10%; }
.chip2 { top: 12%;  right: -8%; }
.hero-chip-icon { color: var(--gold); font-size: 1rem; }
.hero-chip-text { line-height: 1.3; }
.hero-chip-text strong { font-size: .78rem; font-weight: 700; color: var(--dark); display: block; }
.hero-chip-text span  { font-size: .65rem; color: var(--muted); }

.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 2;
  opacity: 0; animation: fadeIn 1s 2.2s forwards;
}
.hero-scroll p { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--light); margin-bottom: .4rem; }
.scroll-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin: 0 auto; animation: bdrop 2s ease infinite; }
@keyframes bdrop { 0%,100%{transform:translateY(0);opacity:.5;} 50%{transform:translateY(8px);opacity:1;} }

/* ─────────── BTNS ─────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gold); color: #fff;
  padding: .85rem 2rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; border: none; cursor: pointer;
  transition: var(--t); box-shadow: var(--glow);
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(168,120,42,.38); }
.btn-line {
  display: inline-flex; align-items: center; gap: .55rem;
  background: transparent; border: 1.5px solid var(--gold-border);
  color: var(--gold-dk); padding: .85rem 2rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; cursor: pointer;
  transition: var(--t);
}
.btn-line:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }

/* ─────────── TICKER ─────────── */
.ticker { background: var(--gold); padding: .7rem 0; overflow: hidden; }
.ticker-track { display: inline-flex; gap: 3.5rem; white-space: nowrap; animation: tick 32s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: .6rem; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.95); }
.ticker-item i { font-size: .55rem; opacity: .7; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────── STATS ─────────── */
.stats-wrap { background: var(--bg2); border-bottom: 1px solid var(--gold-border); padding: 3.5rem 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: 0 auto; }
.stat-cell {
  text-align: center; padding: 1.2rem 1rem;
  border-right: 1px solid var(--gold-border);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell i { color: var(--gold); font-size: 1.3rem; margin-bottom: .4rem; opacity: .8; display: block; }
.stat-n { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,2.8rem); font-weight: 900; color: var(--dark); line-height: 1; }
.stat-n sup { font-size: .5em; color: var(--gold); vertical-align: super; }
.stat-lbl { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* ─────────── SECTION COMMONS ─────────── */
section { padding: clamp(5rem,11vw,9rem) 5%; }
.stag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .67rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dk); margin-bottom: 1rem;
}
.stag::before, .stag::after { content: ''; display: block; width: 20px; height: 1.5px; background: var(--gold); }
.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4.5vw,3rem); font-weight: 800;
  color: var(--dark); line-height: 1.18; margin-bottom: .85rem;
}
.tg { color: var(--gold); }
.slead { font-size: clamp(.87rem,1.7vw,1rem); color: var(--text2); font-weight: 300; line-height: 1.95; }
.orn { display: flex; align-items: center; gap: 10px; margin: 1.6rem 0; }
.orn::before, .orn::after { content: ''; flex: 0 0 36px; height: 1px; background: var(--gold); }
.orn i { color: var(--gold); font-size: .55rem; }

/* ─────────── BOOK ─────────── */
#book { background: var(--bg3); }
.book-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(3rem,7vw,7rem); align-items: center; max-width: 1280px; margin: 0 auto; }
.book-img-col {
  position: relative;
}
.book-img-col::before {
  content: '';
  position: absolute; top: 28px; left: 28px; right: -28px; bottom: -28px;
  background: linear-gradient(135deg, var(--gold-bg), #F0E8D0);
  border-radius: var(--r2); z-index: 0;
}
.book-img-col img {
  position: relative; z-index: 1;
  width: 100%; border-radius: var(--r2);
  display: block; box-shadow: var(--sh-xl);
  object-fit: cover; height: 520px;
}
.book-badge {
  position: absolute; z-index: 2; bottom: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gold); box-shadow: var(--glow);
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center;
}
.book-badge i { color: rgba(255,255,255,.8); font-size: 1.3rem; margin-bottom: .2rem; }
.book-badge span { font-size: .58rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.9); }

.q-list { margin-top: 1.8rem; }
.q-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--gold-border);
  border-radius: 6px; margin-bottom: 2px;
  transition: background .3s;
}
.q-row:last-child { border-bottom: none; }
.q-row:hover { background: var(--gold-tint); }
.q-ic {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--gold-tint); border: 1px solid var(--gold-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); font-size: .72rem;
}
.q-txt { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text2); line-height: 1.5; }

/* ─────────── AUTHOR ─────────── */
#author { background: var(--bg2); }
.author-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(3rem,7vw,7rem); align-items: center; max-width: 1280px; margin: 0 auto; }
.author-img-col { position: relative; }
.author-img-col img {
  width: 100%; border-radius: var(--r2); display: block;
  box-shadow: var(--sh-xl); object-fit: cover; height: 580px;
}
.author-img-col::after {
  content: '';
  position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold-border); border-radius: var(--r2); z-index: -1;
}
.author-float {
  position: absolute; bottom: -28px; right: -28px; z-index: 2;
  background: var(--gold); border-radius: var(--r);
  padding: 1.25rem 1.5rem; max-width: 255px;
  box-shadow: var(--glow);
}
.author-float i { color: rgba(255,255,255,.7); font-size: 1.25rem; display: block; margin-bottom: .4rem; }
.author-float p { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; font-style: italic; color: #fff; line-height: 1.6; }
.creds { display: flex; gap: 1rem; margin: 1.8rem 0; flex-wrap: wrap; }
.cred-box { background: var(--bg3); border: 1px solid var(--gold-border); border-radius: var(--r); padding: .9rem 1.2rem; text-align: center; min-width: 88px; }
.cred-n { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--gold); line-height: 1; }
.cred-l { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }
.author-bio { font-size: clamp(.86rem,1.7vw,.97rem); color: var(--text2); line-height: 1.95; font-weight: 300; margin-bottom: 1.1rem; }

/* ─────────── PRINCIPLES ─────────── */
#principles { background: var(--bg3); }
.ph { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.ph .stag { justify-content: center; }
.ph .orn  { justify-content: center; }
.pg { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; max-width: 1280px; margin: 0 auto; }
.pc {
  background: var(--bg2); border: 1px solid var(--gold-border);
  border-radius: var(--r); padding: 1.9rem 1.7rem;
  position: relative; overflow: hidden; transition: var(--t);
}
.pc::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.pc:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(168,120,42,.38); }
.pc:hover::after { transform: scaleX(1); }
.pc-num { position: absolute; top: .9rem; right: 1.3rem; font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: rgba(168,120,42,.07); line-height: 1; }
.pc-ic {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold-tint); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); font-size: 1.05rem; margin-bottom: 1.1rem;
  transition: var(--t);
}
.pc:hover .pc-ic { background: var(--gold); border-color: var(--gold); color: #fff; }
.pc-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.pc-desc { font-size: .82rem; color: var(--muted); line-height: 1.75; }

/* ─────────── UDRN ─────────── */
#udrn { background: var(--bg2); }
.udrn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,7vw,7rem); align-items: center; max-width: 1280px; margin: 0 auto; }
.udrn-img-col { position: relative; }
.udrn-img-col img { width: 100%; border-radius: var(--r2); display: block; box-shadow: var(--sh-xl); object-fit: cover; height: 520px; }
.udrn-img-col::before {
  content: ''; position: absolute; inset: -18px -18px 18px 18px;
  border: 1px solid var(--gold-border); border-radius: var(--r2); z-index: -1;
}
.udrn-feat { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.uf {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 1.2rem; background: var(--bg3);
  border: 1px solid var(--gold-border); border-radius: var(--r);
  transition: var(--t);
}
.uf:hover { border-color: rgba(168,120,42,.45); box-shadow: var(--sh-sm); }
.uf-ic {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--gold-tint); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); font-size: .88rem;
}
.uf h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .18rem; }
.uf p  { font-size: .81rem; color: var(--muted); line-height: 1.7; }

/* ─────────── QUOTE BAND ─────────── */
.qband {
  position: relative; overflow: hidden;
  padding: clamp(4rem,10vw,8rem) 5%;
  text-align: center;
  background:
    linear-gradient(135deg,rgba(15,13,8,.94) 0%, rgba(30,25,12,.94) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat;
}
.qband::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,120,42,.15) 0%, transparent 65%);
}
.qband-inner { position: relative; max-width: 880px; margin: 0 auto; }
.qb-orn { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 2rem; }
.qb-orn span { display: block; width: 48px; height: 1px; background: var(--gold-dk); }
.qb-orn i { color: var(--gold); font-size: .6rem; }
.qb-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem,3vw,2rem); font-style: italic;
  color: rgba(255,255,255,.92); line-height: 1.6; margin-bottom: 1.8rem;
}
.qb-author { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

/* ─────────── WORLD COURT ─────────── */
#court { background: var(--bg3); text-align: center; }
.court-inner { max-width: 1080px; margin: 0 auto; }
.court-inner .stag { justify-content: center; }
.court-inner .orn  { justify-content: center; }
.court-img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--r2); margin: 2.5rem 0;
  box-shadow: var(--sh-xl); border: 1px solid var(--gold-border);
}
.cpillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.cpillar {
  padding: 1.8rem 1rem; background: var(--bg2);
  border: 1px solid var(--gold-border); border-radius: var(--r);
  transition: var(--t);
}
.cpillar:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(168,120,42,.5); }
.cpillar i { color: var(--gold); font-size: 1.6rem; margin-bottom: .7rem; display: block; }
.cpillar h4 { font-size: .84rem; font-weight: 700; color: var(--dark); }

/* ─────────── CTA BAND ─────────── */
.cta-band {
  background: var(--gold-bg);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: clamp(3.5rem,8vw,6rem) 5%;
}
.cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.3rem; }
.cta-card {
  background: var(--bg2); border: 1px solid var(--gold-border);
  border-radius: var(--r); padding: 2rem 1.5rem;
  text-align: center; transition: var(--t);
}
.cta-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.cta-card-ic {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold-tint); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); font-size: 1.25rem; margin: 0 auto 1.2rem;
  transition: var(--t);
}
.cta-card:hover .cta-card-ic { background: var(--gold); color: #fff; border-color: var(--gold); }
.cta-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.cta-card p  { font-size: .8rem; color: var(--muted); line-height: 1.75; }

/* ─────────── CONTACT ─────────── */
#contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: clamp(3rem,7vw,7rem); max-width: 1200px; margin: 0 auto; }
.ci-block p { font-size: .92rem; color: var(--text2); line-height: 1.9; font-weight: 300; margin-bottom: 2rem; }
.ci-cards { display: flex; flex-direction: column; gap: .85rem; }
.ci-card {
  display: flex; gap: .9rem; align-items: center;
  padding: .9rem 1.1rem; background: var(--bg3);
  border: 1px solid var(--gold-border); border-radius: var(--r);
  transition: var(--t);
}
.ci-card:hover { border-color: rgba(168,120,42,.45); box-shadow: var(--sh-sm); }
.ci-ic {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--gold-tint); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk);
}
.ci-txt h5 { font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .1rem; }
.ci-txt p  { font-size: .88rem; color: var(--text); font-weight: 500; }

form { display: flex; flex-direction: column; gap: 1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .38rem; }
.fg label { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.fg input, .fg textarea, .fg select {
  background: var(--bg3); border: 1.5px solid #E6DDCC;
  border-radius: 4px; padding: .8rem 1rem;
  color: var(--text); font-family: 'Montserrat', sans-serif;
  font-size: .88rem; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(168,120,42,.1);
}
.fg textarea { resize: vertical; min-height: 128px; }
.fg select option { background: #fff; }

/* ─────────── FOOTER ─────────── */
footer { background: #0C0A06; padding: 5rem 5% 2rem; }
.ft-hero {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: .8rem; text-align: center; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 3rem;
}
.ft-logo { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; }
.ft-logo span { color: var(--gold); }
.ft-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(255,255,255,.35); font-size: 1rem; letter-spacing: .07em; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; max-width: 1180px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 2rem; }
.ft-about { font-size: .82rem; color: rgba(255,255,255,.38); line-height: 1.85; font-weight: 300; margin-top: .75rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.socials a {
  width: 35px; height: 35px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38); text-decoration: none; font-size: .8rem;
  transition: var(--t);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.ft-col h5 { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.ft-col ul a { font-size: .82rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .3s; }
.ft-col ul a:hover { color: var(--gold); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; font-size: .74rem; color: rgba(255,255,255,.22); max-width: 1180px; margin: 0 auto; flex-wrap: wrap; gap: .5rem; }
.ft-bottom .g { color: var(--gold); opacity: .6; }

/* ─────────── TOAST ─────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--bg2); border: 1.5px solid var(--gold); border-radius: var(--r);
  padding: 1rem 1.5rem; display: flex; align-items: center; gap: .75rem;
  min-width: 300px; box-shadow: var(--sh-xl);
  transform: translateY(120px); opacity: 0;
  transition: all .45s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--gold); font-size: 1.1rem; }
.toast p { font-size: .85rem; color: var(--text); }
.toast p strong { color: var(--gold-dk); }

/* ─────────── BTT ─────────── */
#btt {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  width: 44px; height: 44px; background: var(--gold);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--t);
  box-shadow: var(--glow);
}
#btt.show { opacity: 1; visibility: visible; }
#btt:hover { background: var(--gold-dk); transform: translateY(-3px); }

/* ─────────── KEYFRAMES ─────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { to   { opacity:1; } }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1100px) {
  #home { grid-template-columns: 1fr; text-align: center; padding-bottom: 5rem; justify-items: center; }
  .hero-left { order: 2; }
  .hero-right { order: 1; width: 380px; max-width: 90%; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .pg { grid-template-columns: repeat(2,1fr); }
  .cpillars { grid-template-columns: repeat(2,1fr); }
  .cta-inner { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex; position: fixed; inset: 76px 0 0 0;
    background: rgba(253,252,248,.97); backdrop-filter: blur(20px);
    align-items: center; justify-content: center; z-index: 998; gap: 1.5rem;
  }
  .nav-links.open a { font-size: 1rem; color: var(--dark); }
  .burger { display: flex; }
  .book-grid, .author-grid, .udrn-grid, .contact-grid { grid-template-columns: 1fr; }
  .author-float { right: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--gold-border); }
  .stat-cell:nth-child(4) { border-right: none; }
  .pg { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .frow { grid-template-columns: 1fr; }
  .hero-chip { display: none; }
  .book-img-col img, .author-img-col img, .udrn-img-col img { height: 310px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-inner { grid-template-columns: 1fr; }
  .cpillars { grid-template-columns: 1fr 1fr; }
}
