/* ============================================
   PASCAL KANIK — Design System
   Palette SCHOOLAP Earth + Fraunces/Inter
   Fonts loaded via <link> in HTML <head> (faster than @import)
   ============================================ */

:root {
  --gold: #F39C12;
  --gold-dark: #C77F0A;
  --gold-light: #FFE5B0;
  --charcoal: #1F2937;
  --charcoal-dark: #0F1922;
  --terracotta: #B85042;
  --terracotta-dark: #8C3A30;
  --sage: #84B59F;
  --sage-dark: #5E8F7A;
  --cream: #FAF6F0;
  --cream-dark: #F0E8D7;
  --white: #FFFFFF;
  --sand-dark: #6B5D45;
  --sand-border: #E5DDD0;
  --shadow-soft: 0 4px 24px rgba(31, 41, 55, 0.06);
  --shadow-strong: 0 10px 40px rgba(31, 41, 55, 0.10);
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; font-weight: 600; }

a { color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

img { max-width: 100%; height: auto; display: block; }

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

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--charcoal-dark);
  letter-spacing: -0.02em;
}
.logo .dot { color: var(--gold); }
.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-menu a { color: var(--charcoal); }
.nav-menu a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--charcoal-dark);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

@media (max-width: 768px) {
  .nav-menu { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  margin-bottom: 32px;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--terracotta);
  line-height: 1.4;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-desc {
  color: var(--charcoal);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 540px;
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal-dark);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--charcoal-dark);
  border-color: var(--charcoal-dark);
}
.btn-outline:hover { background: var(--charcoal-dark); color: var(--white); }
.btn-terra { background: var(--terracotta); color: var(--white); }
.btn-terra:hover { background: var(--terracotta-dark); }

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  background: var(--gold);
  border-radius: 50%;
  top: -5%;
  left: -5%;
  z-index: 1;
}
.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-strong);
}

@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { max-width: 380px; margin: 0 auto; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--charcoal-dark);
  color: var(--cream);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-num { font-size: 2.2rem; }
}

/* ===== SECTIONS GENERIC ===== */
.section { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--charcoal-dark); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--sand-dark);
  font-size: 1.1rem;
}

/* ===== AWABOOST SECTION ===== */
.awaboost-intro {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 120px 0;
}
.awaboost-intro .container { text-align: center; }
.awaboost-intro h2 {
  max-width: 880px;
  margin: 0 auto 32px;
}
.awaboost-intro p.lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.thesis-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 920px;
  margin: 60px auto 40px;
}
.thesis-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--sand-border);
}
.thesis-card .big {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.thesis-card .label {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .thesis-numbers { grid-template-columns: 1fr; }
}

/* ===== PILIERS AWABOOST ===== */
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pilier {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--sand-border);
  transition: all 0.3s;
}
.pilier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold);
}
.pilier-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.pilier-icon.gold { background: var(--gold); color: var(--charcoal-dark); }
.pilier-icon.terra { background: var(--terracotta); color: var(--white); }
.pilier-icon.sage { background: var(--sage); color: var(--charcoal-dark); }
.pilier-icon.charcoal { background: var(--charcoal-dark); color: var(--gold); }
.pilier h3 { margin-bottom: 12px; }
.pilier p { color: var(--sand-dark); font-size: 15px; }
@media (max-width: 768px) {
  .piliers-grid { grid-template-columns: 1fr; }
}

/* ===== AUDIENCE GRID (parcours) ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--sand-border);
  transition: all 0.3s;
  text-align: left;
}
.audience-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-2px);
}
.audience-card .eyebrow { margin-bottom: 16px; font-size: 11px; }
.audience-card h4 { margin-bottom: 12px; font-size: 1.3rem; }
.audience-card p { color: var(--sand-dark); font-size: 14px; margin-bottom: 20px; }
.audience-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ===== SCHOOLAP GROUP — PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--sand-border);
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.product-card .tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.product-card.govtech .tag { background: var(--terracotta); color: var(--white); }
.product-card.flagship {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.product-card.flagship .tag { background: var(--charcoal-dark); color: var(--gold); }
.product-card h4 {
  margin-bottom: 12px;
  font-family: 'Fraunces', serif;
}
.product-card p { color: var(--sand-dark); font-size: 14px; }
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
}

.category-divider {
  text-align: center;
  margin: 80px 0 40px;
}
.category-divider .eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 12px;
}

/* ===== COUNTRIES MAP / PRESENCE ===== */
.presence-strip {
  background: var(--charcoal-dark);
  color: var(--cream);
  padding: 40px 0;
  border-top: 4px solid var(--gold);
}
.countries {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}
.countries span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flag {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
}

/* ===== VIDEO LIGHTBOX SECTION ===== */
.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== PARCOURS / STORY ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.story-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.story-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.story h2 { margin-bottom: 24px; }
.story p { margin-bottom: 20px; color: var(--charcoal); font-size: 1.05rem; }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ===== TIMELINE ===== */
.timeline {
  margin: 60px 0;
  display: grid;
  gap: 32px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand-border);
}
.timeline-year {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
}
.timeline-content h4 { margin-bottom: 8px; }
.timeline-content p { color: var(--sand-dark); font-size: 15px; }

/* ===== BLOG / INSIGHTS CARDS ===== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
  overflow: hidden;
  transition: all 0.3s;
}
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.insight-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--white);
  opacity: 0.9;
}
.insight-card-body { padding: 28px; }
.insight-card .eyebrow { margin-bottom: 12px; font-size: 11px; }
.insight-card h4 {
  font-family: 'Fraunces', serif;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.insight-card p { color: var(--sand-dark); font-size: 14px; margin-bottom: 16px; }
.insight-card .read-more {
  color: var(--terracotta);
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  padding: 80px 0 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand-border);
}
.article-hero .container { max-width: 820px; }
.article-hero .eyebrow { margin-bottom: 16px; }
.article-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--sand-dark);
  font-size: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-border);
}
.article-meta .author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--charcoal);
}
.article-meta .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.article-meta .dot-sep { color: var(--sand-border); }

.article-body {
  padding: 60px 0 80px;
  background: var(--white);
}
.article-body .container { max-width: 720px; }
.article-prose {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
}
.article-prose .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--charcoal-dark);
  font-weight: 400;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sand-border);
}
/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sand-dark);
}
.lang-switch a {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--sand-dark);
  text-decoration: none;
  transition: all 0.2s;
}
.lang-switch a:hover { color: var(--terracotta); }
.lang-switch a.active {
  color: var(--charcoal);
  background: var(--cream-dark);
}
.lang-switch .sep { color: var(--sand-border); }
@media (max-width: 800px) {
  .lang-switch { margin-right: 8px; font-size: 12px; }
}

.thesis-extract-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sand-dark);
}
.thesis-extract-note .badge {
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 13px;
  background: var(--gold);
  color: var(--charcoal-dark);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.thesis-extract-note p { margin: 0; }
.thesis-extract-note strong { color: var(--charcoal-dark); }
.thesis-extract-note a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .thesis-extract-note { flex-direction: column; gap: 10px; }
}
.article-prose h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  margin: 48px 0 16px;
  color: var(--charcoal-dark);
  line-height: 1.2;
}
.article-prose h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: var(--terracotta);
}
.article-prose p { margin-bottom: 20px; }
.article-prose ul, .article-prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.article-prose li { margin-bottom: 8px; }
.article-prose blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 24px 28px;
  margin: 32px 0;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-prose strong { color: var(--charcoal-dark); }
.article-prose a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stat-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
}
.stat-callout > div { text-align: center; }
.stat-callout .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.stat-callout .lbl {
  font-size: 13px;
  color: var(--sand-dark);
  line-height: 1.4;
}
.article-takeaway {
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  margin: 48px 0;
}
.article-takeaway h3 {
  color: var(--gold);
  font-family: 'Fraunces', serif;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.article-takeaway p { color: var(--cream); margin-bottom: 0; font-size: 16px; }
.article-author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-top: 56px;
  border: 1px solid var(--sand-border);
}
.article-author-box .avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.article-author-box .name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--charcoal-dark);
  margin-bottom: 4px;
}
.article-author-box .bio {
  font-size: 14px;
  color: var(--sand-dark);
  margin-bottom: 0;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand-dark);
  font-size: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}
.article-back:hover { color: var(--terracotta); }
@media (max-width: 700px) {
  .stat-callout { grid-template-columns: 1fr; }
  .article-author-box { flex-direction: column; text-align: center; }
}

/* ===== AWARDS STRIP ===== */
.awards-strip {
  padding: 48px 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--sand-border);
  border-bottom: 1px solid var(--sand-border);
}
.awards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--sand-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.awards-list .award {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--charcoal-dark);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.cta-final h2 {
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final h2 .accent { color: var(--gold); font-style: italic; }
.cta-final p {
  max-width: 580px;
  margin: 0 auto 40px;
  color: var(--cream);
  opacity: 0.85;
  font-size: 1.1rem;
}

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.form-tab {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--sand-dark);
  border: 1px solid var(--sand-border);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}
.form-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.form-tab.active { background: var(--gold); color: var(--charcoal-dark); border-color: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal-dark);
  color: var(--cream);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: var(--cream); font-size: 1.5rem; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.7;
  max-width: 320px;
}
.footer-col h5 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--cream);
  opacity: 0.75;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.6;
}
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--cream); opacity: 0.7; }
.social-links a:hover { color: var(--gold); opacity: 1; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.12;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.08;
}
.newsletter-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.newsletter-wrap h2 {
  margin-bottom: 20px;
}
.newsletter-wrap .accent {
  color: var(--gold);
  font-style: italic;
}
.newsletter-wrap p.lead {
  color: var(--sand-dark);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--charcoal);
  transition: all 0.2s;
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}
.newsletter-form button {
  padding: 16px 28px;
  background: var(--charcoal-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold);
  color: var(--charcoal-dark);
}
.newsletter-meta {
  font-size: 13px;
  color: var(--sand-dark);
}
.newsletter-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.newsletter-stats div {
  text-align: center;
}
.newsletter-stats .num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--terracotta);
  font-weight: 500;
}
.newsletter-stats .lbl {
  font-size: 12px;
  color: var(--sand-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Newsletter mini inline (footer) */
.newsletter-inline {
  background: rgba(243, 156, 18, 0.08);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}
.newsletter-inline h5 {
  color: var(--gold) !important;
  font-family: 'Inter', sans-serif !important;
  margin-bottom: 8px;
}
.newsletter-inline p {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 16px;
}
.newsletter-inline-form {
  display: flex;
  gap: 8px;
}
.newsletter-inline-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(250, 246, 240, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(250, 246, 240, 0.06);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}
.newsletter-inline-form input::placeholder { color: rgba(250, 246, 240, 0.5); }
.newsletter-inline-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--charcoal-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { width: 100%; }
  .newsletter-form button { width: 100%; }
  .newsletter-inline-form { flex-direction: column; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.gold { color: var(--gold); }
.terra { color: var(--terracotta); }
