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

:root {
  --parchment: #f4ead5;
  --parchment-dark: #e8d9b8;
  --parchment-light: #faf3e3;
  --parchment-edge: #d4c4a0;
  --ink: #2c2416;
  --ink-light: #4a3f2f;
  --ink-muted: #7a6f5f;
  --ink-faint: #a89f8f;
  --accent: #8b4513;
  --accent-dark: #6b3410;
  --accent-light: #a0522d;
  --gold: #b8860b;
  --gold-light: #daa520;
  --cream: #fdf8ef;
  --border: #c9b896;
  --border-light: #ddd2b8;
  --shadow: 0 4px 20px rgba(44, 36, 22, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.15);
  --radius: 4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Source Sans 3', Georgia, serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(210,190,150,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,180,140,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(190,170,130,0.2) 0%, transparent 50%);
}

/* Parchment texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 234, 213, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-light);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px !important;
  letter-spacing: 1.5px;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 234, 213, 0.98);
  z-index: 999;
  padding: 40px 24px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: sepia(30%) contrast(90%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253,248,239,0.85) 0%, rgba(244,234,213,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 69, 19, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Typewriter */
.typewriter-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
  min-height: 1.2em;
  margin-bottom: 24px;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--cream);
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ═══════════════ SECTIONS ═══════════════ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto;
}

/* ═══════════════ FEATURES ═══════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  background: var(--cream);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.feature-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ═══════════════ BLOG GRID - Jeff Nippard Style ═══════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: sepia(5%);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 2;
}

.blog-card-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 2.5;
}

.blog-card:hover .blog-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,36,22,0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--ink-faint);
}

/* Blog Filter */
.blog-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--ink-muted);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(139, 69, 19, 0.04);
}

/* ═══════════════ BLOG POST ═══════════════ */
.blog-post {
  padding-top: 110px;
  padding-bottom: 60px;
}

.blog-post-header {
  max-width: 760px;
  margin: 0 auto 40px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-muted);
  font-size: 14px;
  margin-bottom: 28px;
  font-weight: 500;
}

.blog-post-back:hover {
  color: var(--accent);
}

.blog-post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.blog-post-info {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-faint);
  font-size: 14px;
}

.blog-post-hero {
  max-width: 800px;
  margin: 0 auto 40px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.blog-post-hero img {
  width: 100%;
  height: auto;
  filter: sepia(5%);
}

.blog-post-content {
  max-width: 680px;
  margin: 0 auto;
}

.blog-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin: 44px 0 16px;
  color: var(--ink);
}

.blog-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--ink);
}

.blog-post-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 18px;
}

.blog-post-content strong {
  color: var(--ink);
  font-weight: 600;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 18px 0;
  padding-left: 24px;
}

.blog-post-content li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(139, 69, 19, 0.03);
}

.blog-post-content blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 18px;
}

.key-point {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 24px;
  margin: 24px 0;
}

.key-point h4 {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.key-point p {
  color: var(--ink) !important;
  font-size: 15px !important;
}

/* ═══════════════ COACHING ═══════════════ */
.coaching-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding-top: 68px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.08);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select option {
  background: var(--cream);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.active {
  display: block;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}

.coaching-form-container {
  max-width: 660px;
  margin: 0 auto;
}

/* ═══════════════ REVIEWS ═══════════════ */
.reviews-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1.5px dashed var(--border);
}

.reviews-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink-muted);
}

.reviews-empty p {
  color: var(--ink-faint);
  font-size: 15px;
}

/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: sepia(8%);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  background: rgba(139, 69, 19, 0.05);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--ink-muted);
  transition: var(--transition);
}

.social-link:hover svg {
  fill: var(--accent);
}

/* ═══════════════ CTA ═══════════════ */
.cta-section {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--parchment-dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--ink-faint);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ═══════════════ PAGE HEADER ═══════════════ */
.page-header {
  padding: 130px 0 50px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--ink);
}

.page-header p {
  font-size: 17px;
  color: var(--ink-muted);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════ ADMIN ═══════════════ */
.admin-header {
  padding: 100px 0 32px;
  border-bottom: 1px solid var(--border-light);
}

.admin-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.admin-stat {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 20px;
  text-align: center;
}

.admin-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.admin-stat .label {
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.submission-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 24px;
  margin-bottom: 16px;
}

.sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.sub-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.sub-time { font-size: 12px; color: var(--ink-faint); }

.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sub-field { padding: 6px 0; }

.sub-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.sub-value { font-size: 14px; color: var(--ink); }

.sub-reason {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.sub-reason p { font-size: 15px; line-height: 1.7; color: var(--ink-muted); }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-faint);
}

/* ═══════════════ CHECKBOX GRID (Coaching Form) ═══════════════ */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.checkbox-label {
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink-light) !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  background: var(--cream);
  transition: var(--transition);
}

.checkbox-label:hover {
  border-color: var(--accent);
  background: rgba(139, 69, 19, 0.03);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkbox-label span {
  line-height: 1.3;
}

@media (max-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════ FOUNDERS SECTION ═══════════════ */
.founders-section {
  padding: 100px 0;
}

.founders-intro {
  text-align: center;
  margin-bottom: 60px;
}

.founders-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.founders-intro p {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.founders-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.founder-card {
  text-align: center;
}

.founder-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.founder-card .founder-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.founder-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.founder-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.founder-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--border-light);
  filter: sepia(5%);
  transition: var(--transition);
}

.founder-gallery img:hover {
  filter: sepia(0%);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}

.founders-together {
  margin-top: 48px;
  text-align: center;
}

.founders-together img {
  max-width: 600px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border-light);
  filter: sepia(5%);
  margin: 0 auto 20px;
}

.founders-together p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-muted);
}

.founders-inspirations {
  margin-top: 56px;
  text-align: center;
}

.founders-inspirations h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.inspiration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.inspiration-tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--cream);
  transition: var(--transition);
}

.inspiration-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .founders-profiles { grid-template-columns: 1fr; gap: 40px; }
  .founder-gallery { grid-template-columns: repeat(2, 1fr); }
  .founders-together img { height: 380px; }
  .founders-section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .founder-gallery { grid-template-columns: 1fr 1fr; }
  .founders-together img { height: 300px; }
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ═══════════════ LOADING ═══════════════ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--parchment);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════ SCROLLBAR ═══════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-grid { gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .section { padding: 64px 0; }
  .sub-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr; }
}
