@font-face {
  font-family: 'OldEnglish';
  src: url(/font/oldenglishtextmt.ttf);
}
:root {
  --gold: #C9A84C;
  --gold-light: #f5d98a;
  --gold-dark: #8a6520;
  --purple: #5B0080;
  --purple-deep: #08000c;
  --purple-mid: #1a0030;
  --lavender: #d4b8e8;
  --mist: rgba(235, 215, 252, 0.75);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Cinzel', serif; background: #fff; color: #1a0030; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }


/* ── NAV ───────────────────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: linear-gradient(180deg, rgba(8,0,12,0.92) 0%, transparent 100%);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(8px);
  transition: background 0.4s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(8,0,12,0.97);
  border-bottom-color: rgba(201,168,76,0.28);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-logo {
  font-family: 'OldEnglish', serif;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: flex; flex-direction: column;
}
.nav-logo .logo-sub {
  font-size: clamp(0.55rem, 0.9vw, 0.72rem);
  letter-spacing: 0.18em;
  font-family: 'Cinzel', serif;
  color: rgba(245,217,138,0.7);
  text-transform: uppercase;
  font-weight: 400;
}
.nav-logo .logo-main { font-size: clamp(0.9rem, 1.5vw, 1.2rem); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.68);
  position: relative;
  transition: color 0.25s;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: -1rem;
  background: rgba(8,0,12,0.97);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  min-width: 240px;
  border: 1px solid rgba(201,168,76,0.18);
  z-index: 1001;
  list-style: none;
}
.nav-dropdown-menu li a {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.72);
  display: block;
  padding: 0.65rem 1.4rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.06); }
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

.nav-mobile {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(8,0,12,0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 3rem; list-style: none;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-light); }


/* ── HERO ──────────────────────────────────────────────────────────── */

.hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--purple-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  z-index: 0;
  animation: bgBreath 14s ease-in-out infinite alternate;
}
@keyframes bgBreath {
  from { transform: scale(1); filter: brightness(0.82); }
  to   { transform: scale(1.05); filter: brightness(1.0); }
}
.hero-ov1 {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(8,0,12,0.65) 0%, rgba(12,0,20,0.28) 28%,
    rgba(12,0,20,0.24) 62%, rgba(8,0,12,0.90) 100%);
}
.hero-ov2 {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at 50% 42%, rgba(91,0,128,0.20) 0%, transparent 60%);
}

/* Cloud layers */
.clouds { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.cloud { position: absolute; border-radius: 50%; filter: blur(45px); animation: cloudDrift linear infinite; }
.c1 { width: 700px; height: 220px; background: radial-gradient(ellipse, rgba(150,70,200,0.20) 0%, transparent 70%); bottom: 12%; left: -15%; animation-duration: 32s; animation-delay: 0s; }
.c2 { width: 550px; height: 190px; background: radial-gradient(ellipse, rgba(175,95,220,0.16) 0%, transparent 70%); bottom: 6%; right: -12%; animation-duration: 38s; animation-delay: -14s; }
.c3 { width: 450px; height: 160px; background: radial-gradient(ellipse, rgba(110,50,180,0.14) 0%, transparent 70%); top: 52%; left: 18%; animation-duration: 24s; animation-delay: -7s; }
.c4 { width: 800px; height: 170px; background: radial-gradient(ellipse, rgba(200,120,255,0.09) 0%, transparent 70%); bottom: 28%; left: 50%; transform: translateX(-50%); animation-duration: 45s; animation-delay: -22s; }
.c5 { width: 350px; height: 130px; background: radial-gradient(ellipse, rgba(130,60,190,0.18) 0%, transparent 70%); top: 35%; right: 8%; animation-duration: 28s; animation-delay: -10s; }
@keyframes cloudDrift {
  0%   { opacity: 0; transform: translateX(-80px) scaleX(0.88); }
  15%  { opacity: 1; }
  85%  { opacity: 0.75; }
  100% { opacity: 0; transform: translateX(80px) scaleX(1.12); }
}

/* Particles */
.particles { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; animation: particleFloat linear infinite; opacity: 0; }
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.9; transform: translateY(-20px) scale(1); }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-90px) scale(0.2); }
}

/* Gold lines */
.gt { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent); z-index: 20; }
.gb { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent); z-index: 20; }

/* Hero content */
.hero-con {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 1000px; width: 100%;
}
.seal-wrap {
  width: 200px; height: 200px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  animation: sealIn 1.8s cubic-bezier(.22,1,.36,1) both;
  filter: drop-shadow(0 0 28px rgba(91,0,128,.88)) drop-shadow(0 0 80px rgba(91,0,128,.35));
}
@keyframes sealIn {
  from { opacity: 0; transform: scale(0.65) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
.seal-wrap::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.48);
  animation: ring1 3.5s ease-in-out infinite;
}
.seal-wrap::after {
  content: ''; position: absolute; inset: -22px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.20);
  animation: ring1 3.5s ease-in-out infinite 1.2s;
}
@keyframes ring1 {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.035); }
}
.seal-img { width: 196px; height: 196px; border-radius: 50%; object-fit: cover; }

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.44rem, 1vw, 0.61rem);
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  line-height: 2;
  animation: fadeUp 1.2s ease 0.5s both;
}
.hdiv {
  width: 220px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
  margin: 0 auto 1.6rem;
  animation: fadeUp 1.2s ease 0.58s both;
}
.htitle {
  font-family: 'OldEnglish', serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 32px rgba(201,168,76,0.55), 0 0 80px rgba(201,168,76,0.15);
  animation: fadeUp 1.2s ease 0.65s both;
}
.hsub {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: var(--lavender);
  letter-spacing: 0.22em;
  margin-bottom: 0.3rem;
  animation: fadeUp 1.2s ease 0.73s both;
}
.horg {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.68rem, 1.7vw, 1rem);
  color: rgba(201,168,76,0.68);
  letter-spacing: 0.26em;
  margin-bottom: 2.8rem;
  animation: fadeUp 1.2s ease 0.80s both;
}
.htagline {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.22rem);
  color: var(--mist);
  max-width: 600px;
  line-height: 1.88;
  margin-bottom: 3rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
  animation: fadeUp 1.2s ease 0.88s both;
}
.hctas { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 1.2s ease 0.96s both; }

.btn-p {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.64rem, 1.4vw, 0.78rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #08000c;
  font-weight: 700;
  background: linear-gradient(135deg, #b8922e 0%, #f5d98a 45%, #e0b84a 70%, #b8922e 100%);
  padding: 0.9em 2.8em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: filter 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 28px rgba(201,168,76,0.35);
  display: inline-block;
}
.btn-p:hover { filter: brightness(1.12); transform: translateY(-3px); box-shadow: 0 8px 36px rgba(201,168,76,0.48); }

.btn-s {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.64rem, 1.4vw, 0.78rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  background: transparent;
  padding: 0.9em 2.8em;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
  display: inline-block;
}
.btn-s:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-3px); }

.scroll-hint {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  z-index: 15;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.45;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
.scroll-hint span { font-family: 'Cinzel', serif; font-size: 0.4rem; letter-spacing: 0.32em; color: var(--gold); text-transform: uppercase; }
.scroll-arrow { width: 13px; height: 13px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: rotate(45deg); }

.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  z-index: 15;
  border-top: 1px solid rgba(201,168,76,0.18);
  background: linear-gradient(180deg, transparent, rgba(8,0,12,0.84));
  animation: fadeUp 1.2s ease 1.05s both;
}
.hbi { font-family: 'Cinzel', serif; font-size: clamp(0.44rem, 1vw, 0.57rem); letter-spacing: 0.2em; color: rgba(201,168,76,0.46); text-transform: uppercase; }
.hbd { width: 3px; height: 3px; border-radius: 50%; background: rgba(201,168,76,0.34); flex-shrink: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── SECTIONS ──────────────────────────────────────────────────────── */

.section { padding: 7rem 2rem; position: relative; overflow: hidden; }
.si { max-width: 1100px; margin: 0 auto; }
.slabel { font-family: 'Cinzel', serif; font-size: 0.56rem; letter-spacing: 0.36em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.stitle { font-family: 'OldEnglish', serif; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--purple); margin-bottom: 0.6rem; text-shadow: none; line-height: 1.25; }
.sdiv { width: 150px; height: 1px; background: linear-gradient(90deg, transparent, var(--purple), transparent); margin: 0 0 2.5rem; }
.sbody p { font-family: 'EB Garamond', serif; font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(50,0,80,0.82); line-height: 1.9; font-style: italic; margin-bottom: 1.5rem; }

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


/* ── ABOUT ─────────────────────────────────────────────────────────── */

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.seal-col { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.about-seal { width: 270px; height: 270px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(91,0,128,0.2); box-shadow: 0 8px 48px rgba(91,0,128,0.15), 0 2px 12px rgba(91,0,128,0.1); }
.found-txt { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.22em; color: rgba(91,0,128,0.55); text-transform: uppercase; text-align: center; line-height: 2; }


/* ── DEGREES ───────────────────────────────────────────────────────── */

.degrees { background: #f8f5ff; }
.degrees::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(91,0,128,0.04) 0, rgba(91,0,128,0.04) 1px, transparent 1px, transparent 80px); pointer-events: none; }

.deg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; }
.deg-card {
  background: #fff;
  border: 1px solid rgba(91,0,128,0.15);
  box-shadow: 0 2px 24px rgba(91,0,128,0.07);
  padding: 2.8rem 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.deg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.deg-card:hover { transform: translateY(-7px); border-color: rgba(91,0,128,0.4); box-shadow: 0 14px 55px rgba(91,0,128,0.18); }
.deg-card:hover::before { opacity: 1; }

.deg-num { font-family: 'OldEnglish', serif; font-size: 3.2rem; color: rgba(91,0,128,0.09); position: absolute; top: 1rem; right: 1.4rem; line-height: 1; }
.deg-icon { width: 100%; height: 160px; margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.deg-icon img { max-height: 160px; max-width: 100%; width: auto; object-fit: contain; transition: transform 0.4s ease; }
.deg-card:hover .deg-icon img { transform: scale(1.05); }
.deg-name { font-family: 'OldEnglish', serif; font-size: clamp(1rem, 1.9vw, 1.3rem); color: var(--purple); margin-bottom: 1rem; line-height: 1.3; }
.deg-desc { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.05em; color: rgba(60,0,90,0.65); line-height: 1.95; font-weight: 300; }


/* ── PILLARS ───────────────────────────────────────────────────────── */

.pillars {
  background: linear-gradient(135deg, #f3eeff 0%, #ede5ff 50%, #f3eeff 100%);
  border-top: 1px solid rgba(91,0,128,0.1);
  border-bottom: 1px solid rgba(91,0,128,0.1);
  padding: 5.5rem 2rem;
}
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; text-align: center; }
.pill-item { position: relative; padding: 2rem 1rem; }
.pill-item::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: linear-gradient(180deg, transparent, rgba(91,0,128,0.18), transparent); }
.pill-item:last-child::after { display: none; }
.pill-num { font-family: 'OldEnglish', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--purple); text-shadow: 0 0 20px rgba(91,0,128,0.2); margin-bottom: 0.4rem; display: block; }
.pill-label { font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.24em; color: rgba(91,0,128,0.55); text-transform: uppercase; line-height: 1.7; }


/* ── CONTACT ───────────────────────────────────────────────────────── */

.contact { background: #fff; }
.contact-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.cform { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fgrp { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.flabel { font-family: 'Cinzel', serif; font-size: 0.56rem; letter-spacing: 0.22em; color: rgba(91,0,128,0.65); text-transform: uppercase; }
.finput, .ftarea { font-family: 'Cinzel', serif; font-size: 0.76rem; background: #f8f5ff; border: 1px solid rgba(91,0,128,0.2); color: #1a0030; padding: 0.85rem 1.2rem; outline: none; transition: border-color 0.25s, background 0.25s; width: 100%; }
.finput:focus, .ftarea:focus { border-color: var(--purple); background: #ede5ff; }
.ftarea { resize: vertical; min-height: 120px; }


/* ── FOOTER ────────────────────────────────────────────────────────── */

.footer { background: var(--purple); border-top: 1px solid rgba(201,168,76,0.14); padding: 4.5rem 2rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
.f-brand { font-family: 'OldEnglish', serif; font-size: 1.15rem; color: var(--gold-light); margin-bottom: 1rem; text-shadow: 0 0 16px rgba(201,168,76,0.3); }
.f-desc { font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.06em; color: #FFE500; line-height: 1.95; font-weight: 400; }
.f-ctitle { font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.25em; color: #FFE500; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 700; }
.f-links { display: flex; flex-direction: column; gap: 0.7rem; list-style: none; }
.f-links a { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.07em; color: #FFE500; transition: color 0.2s; }
.f-links a:hover { color: #fff; }
.f-bottom { max-width: 1100px; margin: 3rem auto 0; border-top: 1px solid rgba(201,168,76,0.09); padding-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.f-copy, .f-dep { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.16em; color: #FFE500; text-transform: uppercase; }


/* ── GRAND MASTER FEATURE ──────────────────────────────────────────── */

.gm-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(8,0,12,0.98) 0%, rgba(26,0,48,0.95) 50%, rgba(8,0,12,0.98) 100%);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.gm-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(91,0,128,0.35) 0%, transparent 70%); pointer-events: none; }
.gm-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }

.gm-eyebrow { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.38em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.gm-rule-line { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 1.5rem; }
.gm-title-block { margin-bottom: 2.2rem; }
.gm-position { font-family: 'Cinzel', serif; font-size: clamp(0.7rem, 1.2vw, 0.85rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); line-height: 1.8; margin-bottom: 0.5rem; }
.gm-name { font-family: 'Cinzel', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold-light); line-height: 1.1; text-shadow: 0 0 40px rgba(201,168,76,0.3); }
.gm-divider { width: 100px; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2)); margin: 1.4rem 0; }
.gm-bio { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: rgba(220,210,240,0.88); line-height: 2; margin-bottom: 2rem; }
.gm-link { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 0.75em 2em; transition: color 0.3s, border-color 0.3s, background 0.3s; }
.gm-link:hover { color: var(--purple-deep); background: var(--gold-light); border-color: var(--gold-light); }
.gm-photo-col { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.gm-photo-glow { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 85%; height: 85%; background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(201,168,76,0.18) 0%, rgba(91,0,128,0.22) 45%, transparent 70%); pointer-events: none; z-index: 0; }
.gm-photo-frame { position: relative; z-index: 1; width: 100%; max-width: 520px; }
.gm-photo-frame::before { content: ''; position: absolute; top: -1px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 2; }
.gm-photo-frame::after  { content: ''; position: absolute; bottom: -1px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 2; }
.gm-photo { width: 100%; display: block; filter: drop-shadow(0 20px 60px rgba(201,168,76,0.15)) drop-shadow(0 0 80px rgba(91,0,128,0.4)); position: relative; z-index: 1; }

.gm-corner { position: absolute; width: 54px; height: 54px; z-index: 3; }
.gm-corner-tl { top: -6px; left: 0%;   border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.gm-corner-tr { top: -6px; right: 0%;  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.gm-corner-bl { bottom: -6px; left: 0%;  border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.gm-corner-br { bottom: -6px; right: 0%; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.gm-label-badge { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.gm-label-badge::before, .gm-label-badge::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.3); }
.gm-label-badge span { font-family: 'Cinzel', serif; font-size: 0.5rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,168,76,0.5); white-space: nowrap; }


/* ── RESPONSIVE ────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-grid       { gap: 3rem; }
  .deg-grid         { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gm-inner         { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .gm-rule-line     { margin: 0 auto 1.5rem; }
  .gm-divider       { margin: 1.4rem auto; }
  .gm-photo-col     { order: -1; }
}

@media (max-width: 768px) {
  :root             { --nav-h: 64px; }
  .nav              { padding: 0 1.5rem; }
  .nav-links        { display: none; }
  .nav-burger       { display: flex; }
  .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .about-seal       { width: 200px; height: 200px; }
  .deg-grid         { grid-template-columns: 1fr; }
  .pillars-grid     { grid-template-columns: repeat(2, 1fr); }
  .frow             { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .f-bottom         { flex-direction: column; text-align: center; }
  .hbi:nth-child(5), .hbi:nth-child(7) { display: none; }
  .hbd:nth-child(4), .hbd:nth-child(6) { display: none; }
  .gm-inner         { padding: 4rem 1.5rem; }
  .gm-name          { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

@media (max-width: 480px) {
  .nav              { padding: 0 1.2rem; }
  .nav-logo         { font-size: 1.05rem; }
  .section          { padding: 5rem 1.4rem; }
  .seal-wrap        { width: 150px; height: 150px; }
  .seal-img         { width: 146px; height: 146px; }
  .hctas            { flex-direction: column; align-items: center; }
  .btn-p, .btn-s    { width: 100%; text-align: center; }
  .hero-bar         { gap: 0.7rem; height: 52px; }
}
