@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #152233;
  --navy-light: #1e3050;
  --gold:       #c9a84c;
  --gold-dark:  #a8872e;
  --gold-light: #e0c068;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --text:       #2d3748;
  --text-light: #718096;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 6px 30px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 78px;
}
.nav-logo img { height: 52px; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.85; }
.nav-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.nav-contact { display: flex; gap: 1.25rem; }
.nav-contact a {
  color: var(--gold); font-size: 0.8rem; font-weight: 500;
  display: flex; align-items: center; gap: 5px; transition: color 0.2s;
}
.nav-contact a:hover { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 600;
  padding: 5px 10px; border-radius: 4px; text-transform: uppercase;
  letter-spacing: 0.06em; transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 6px 14px !important; border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu {
  display: none; background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: fixed; top: 78px; left: 0; right: 0; z-index: 999;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block; padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, background 0.2s;
}
#mobile-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
#mobile-menu .mob-contact { color: var(--gold) !important; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #070e18 0%, #0d1b2a 45%, #132640 100%);
  padding: 130px 0px 40px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px; background: rgba(201,168,76,0.07);
  top: -100px; left: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px; background: rgba(30,80,140,0.15);
  bottom: -100px; right: -50px;
  animation: glowPulse 8s ease-in-out infinite 2s;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 860px; padding: 0 1.5rem;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10.5px;
  animation: fadeInDown 0.7s ease 0.2s both;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease 0.55s both;
}
.hero-divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 0 auto 1.75rem;
  animation: expandWidth 0.6s ease 0.7s both;
}
.hero-text {
  color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.25rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.95s both;
}
.hero-badges {
  margin-top: 4rem; display: flex; gap: 2rem; justify-content: center;
  align-items: center; flex-wrap: wrap; opacity: 0.85;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-badges img { height: 56px; width: auto; filter: grayscale(20%); transition: filter 0.3s; }
.hero-badges img:hover { filter: none; }
.hero-scroll {
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite 1.5s;
  cursor: pointer;
  font-size: 1.4rem;
  margin: 30px auto 0;
  display: table;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 9rem 1.5rem 4rem;
  background: linear-gradient(135deg, #070e18, #0d1b2a 50%, #132640);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.75rem; font-size: 1.05rem; max-width: 600px; margin-inline: auto; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2.25rem; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-block; transition: all 0.3s;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent; color: var(--gold);
  padding: 0.9rem 2.25rem; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-block; border: 2px solid var(--gold);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline-white {
  background: transparent; color: #fff;
  padding: 0.9rem 2.25rem; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-block; border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.btn-outline-white:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-3px);
}

/* ── SECTION ── */
.section { padding: 5.5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--navy); color: #fff; }
.section-off { background: var(--off-white); }

/* ── GOLD DIVIDER ── */
.gold-line {
  display: block; width: 50px; height: 3px; background: var(--gold);
  margin: 0.75rem 0 1.5rem;
}
.gold-line.center { margin: 0.75rem auto 1.5rem; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
}

/* ── CARDS ── */
.service-card {
  background: #fff; border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid var(--gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem; color: var(--gold);
}

/* ── STAT CARD ── */
.stat-card {
  text-align: center; padding: 2rem 1rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 0.4rem;
}

/* ── BADGES ── */
.badge-strip {
  display: flex; gap: 2.5rem; align-items: center;
  flex-wrap: wrap; justify-content: center; padding: 2.5rem 1.5rem;
  background: var(--off-white); border-top: 1px solid #e8e4dd;
}
.badge-strip img { height: 60px; width: auto; filter: grayscale(30%); transition: filter 0.3s; }
.badge-strip img:hover { filter: none; }

/* ── ABOUT PAGE ── */
.about-bio-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.info-box {
  background: var(--off-white); border-radius: 8px; padding: 2rem;
  border-left: 4px solid var(--gold);
}
.award-card {
  background: #fff; border-radius: 8px; padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s;
}
.award-card:hover { transform: translateY(-5px); }
.award-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 1rem; }
.award-card ul { list-style: none; }
.award-card ul li {
  padding: 0.4rem 0; font-size: 0.92rem; color: var(--text-light);
  border-bottom: 1px solid #f0ede8; display: flex; align-items: flex-start; gap: 8px;
}
.award-card ul li::before { content: '▸'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.award-card ul li:last-child { border-bottom: none; }

/* ── NEWS PAGE ── */
.news-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.news-card img { width: 100%; height: 260px; object-fit: cover; }
.news-card-body { padding: 2rem; }
.news-date { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.news-card h2 { font-size: 1.5rem; margin: 0.5rem 0 1rem; color: var(--navy); }
.news-article { max-width: 820px; margin: 0 auto; }
.news-article p { margin-bottom: 1.25rem; line-height: 1.8; }
.news-article img { border-radius: 8px; margin: 1.75rem 0; }
.news-article .caption { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: -1.2rem; margin-bottom: 1.75rem; font-style: italic; }

/* ── PODCAST ── */
.podcast-entry { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.podcast-entry-inner { display: grid; grid-template-columns: 280px 1fr; }
.podcast-img { position: relative; overflow: hidden; }
.podcast-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.podcast-entry:hover .podcast-img img { transform: scale(1.04); }
.podcast-body { padding: 2.5rem; }
.podcast-date { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.podcast-body h2 { font-size: 1.6rem; margin: 0.5rem 0 1rem; color: var(--navy); }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 8px; margin-top: 1.5rem;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid #e8e4dd; }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1.5px solid #e2ddd6; border-radius: 5px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; display: block; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.map-embed { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); margin-top: 2rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff; padding: 4.5rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0.75rem auto 2rem; max-width: 560px; }

/* ── FOOTER ── */
.footer {
  background: #060d16; color: rgba(255,255,255,0.65);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer h4 { color: #fff; font-size: 1rem; font-weight: 700; font-family: 'Inter', sans-serif; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.9rem; }
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.82rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 1.5rem; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.06em; display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  transition: all 0.3s; animation: float 3s ease-in-out infinite;
}
.floating-cta:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.5); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid #e8e4dd; margin: 0; }
.divider-dark { border-color: rgba(255,255,255,0.08); }

/* ── PROSE LIST ── */
.prose-list { list-style: none; }
.prose-list li {
  padding: 0.45rem 0; display: flex; align-items: flex-start;
  gap: 0.6rem; color: var(--text-light); font-size: 0.95rem;
  border-bottom: 1px solid #f0ede8;
}
.prose-list li:last-child { border-bottom: none; }
.prose-list li::before { content: '▸'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── SERVING AREA ── */
.serve-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.12);
  transition: background 0.2s;
}
.serve-item:hover { background: rgba(201,168,76,0.08); }
.serve-item i { color: var(--gold); }

/* ── KEYFRAMES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes expandWidth {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .podcast-entry-inner { grid-template-columns: 1fr; }
  .podcast-img { height: 260px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stat-num { font-size: 2.6rem; }
  .floating-cta span.label { display: none; }
}
