/* ─── CSS VARIABLES ─── */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EFEB;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --accent: #1B3A5C;
  --accent-light: #2C5A8F;
  --accent-pale: #E8EEF4;
  --green: #B8E550;
  --green-dark: #8FBF20;
  --white: #FFFFFF;
  --border: #E0DDD6;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img, iframe, video { max-width: 100%; display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(210,218,206,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
nav .nav-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* The logo PNG has generous transparent padding baked in, so the visible
     mark reads smaller than its box. Overflow lets it scale up without
     stretching the nav bar. */
  height: 100%;
  overflow: hidden;
  margin-left: -60px;
}
nav .logo-img {
  width: auto;
  height: clamp(300px, 30vw, 420px);
  object-fit: contain;
  filter: none;
}
nav .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  gap: clamp(0.7rem, 1.7vw, 1.7rem);
}
nav .nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}
nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
nav .nav-links a:hover::after,
nav .nav-links a.active::after { transform: scaleX(1); }
nav .nav-links a:hover { color: var(--accent); }

/* Nav transparent state (homepage hero) */
nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
nav:not(.scrolled) .nav-links a:hover { color: #ffffff; }
nav:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,0.9); }

/* Submenu */
.nav-item-has-submenu { position: relative; }
.nav-submenu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  list-style: none;
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 360;
}
.nav-submenu a {
  display: block !important;
  color: var(--text-muted) !important;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-shadow: none !important;
  font-size: 0.9rem !important;
}
.nav-submenu a::after { display: none !important; }
.nav-submenu a:hover { background: var(--accent-pale); color: var(--accent) !important; }
.nav-item-has-submenu:hover .nav-submenu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  width: 28px; height: 20px;
  position: relative;
  z-index: 420;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
nav.scrolled .hamburger span { background: var(--text); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* Inner pages: nav always scrolled */
body.inner-page nav {
  background: rgba(210,218,206,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
body.inner-page nav .nav-links a {
  color: var(--text-muted);
  text-shadow: none;
}
body.inner-page nav .nav-links a::after { background: var(--accent); }
body.inner-page nav .nav-links a:hover { color: var(--accent); }
body.inner-page .hamburger span { background: var(--text); }

/* Inner pages content offset */
body.inner-page .page { padding-top: 400px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5rem 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-photo2.png') center top / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,28,0.75) 0%, rgba(10,18,28,0.55) 35%, rgba(10,18,28,0.25) 65%, rgba(10,18,28,0.40) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  animation: fadeUp 1s ease-out;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #ffffff; background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  padding: 11px 22px; border-radius: 100px;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 1.5rem; max-width: 760px;
}
.hero h1 em { color: var(--green); font-style: italic; }
.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta .btn-primary { background: var(--green); color: #1a1a1a; }
.hero-cta .btn-primary:hover { background: var(--green-dark); color: var(--white); }
.hero-cta .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.35); }
.hero-cta .btn-secondary:hover { border-color: var(--white); color: var(--white); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.18em;
}
.scroll-hint .line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #1a1a1a;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-bio {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #1a1a1a;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer; margin-top: 1rem;
}
.btn-bio:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent);
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--border); transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ─── SECTIONS ─── */
section { padding: 100px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 650px; margin-bottom: 3rem; }

/* ─── BIO SECTION ─── */
#bio {
  position: relative; background: #ffffff;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,229,80,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(184,229,80,0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(184,229,80,0.06) 0%, rgba(184,229,80,0.03) 100%);
  overflow: hidden;
  border-top: 1px solid rgba(27,58,92,0.08);
}
.bio-head { display: grid; grid-template-columns: 0.4fr 1fr; gap: 3rem; align-items: center; }
.bio-photo { width: 100%; max-width: 400px; border-radius: 16px; box-shadow: 0 10px 40px rgba(27,58,92,0.15); object-fit: cover; aspect-ratio: 3/4; }
.bio-head .section-title { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.05; margin-bottom: 1.2rem; }
.bio-lead { color: var(--text-muted); font-size: 1.08rem; line-height: 2; }
.bio-lead strong { color: var(--accent); }

/* ─── ROADMAP / TIMELINE ─── */
#roadmap {
  position: relative;
  background: radial-gradient(circle at top right, rgba(184,229,80,0.14), transparent 32%), linear-gradient(180deg, #f7f5f1 0%, #f3f1ec 100%);
  overflow: hidden;
  border-top: 1px solid rgba(27,58,92,0.08);
  border-bottom: 1px solid rgba(27,58,92,0.08);
}
#roadmap .section-inner { max-width: 1120px; }
.roadmap-intro { position: relative; z-index: 1; max-width: 760px; margin-bottom: 3rem; }
.timeline { position: relative; z-index: 1; padding: 0.75rem 0 0.25rem; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-1px); background: var(--border);
}
.timeline-progress {
  position: absolute; left: 50%; top: 0; width: 2px; height: 0;
  transform: translateX(-1px);
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  transition: height 0.12s linear;
}
.timeline-step { position: relative; display: grid; grid-template-columns: 1fr 96px 1fr; align-items: center; min-height: 260px; }
.timeline-dot {
  grid-column: 2; justify-self: center;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--green-dark); background: var(--white);
  z-index: 3; transition: var(--transition);
}
.timeline-step.active .timeline-dot { background: var(--green); box-shadow: 0 0 0 10px rgba(184,229,80,0.2); }
.timeline-year {
  position: absolute; left: 50%; transform: translate(-50%, -36px);
  font-weight: 800; color: var(--accent); font-size: 0.95rem; letter-spacing: 0.05em; z-index: 3;
}
.timeline-card {
  width: min(450px, 92%); background: var(--white);
  border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow);
  opacity: 0; transition: 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.timeline-left .timeline-card { grid-column: 1; justify-self: end; transform: translateX(-72px); }
.timeline-right .timeline-card { grid-column: 3; justify-self: start; transform: translateX(72px); }
.timeline-step.active .timeline-card { opacity: 1; transform: translateX(0); }
.timeline-media { width: 100%; min-height: 170px; object-fit: cover; display: block; }
.timeline-content { padding: 1rem 1.1rem 1.15rem; }
.timeline-content h3 { font-family: 'Playfair Display', serif; font-size: 1.28rem; line-height: 1.2; margin-bottom: 0.55rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; margin-bottom: 0.65rem; }
.timeline-list { margin: 0; padding-left: 1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.45; }
.bio-action { position: relative; z-index: 1; margin-top: 3.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── VIDEOS ─── */
#videos {
  background:
    radial-gradient(circle at top left, rgba(184,229,80,0.12), transparent 34%),
    linear-gradient(135deg, rgba(184,229,80,0.07) 0%, rgba(184,229,80,0.03) 100%),
    var(--white);
}
.video-section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.video-section-head .section-desc { margin-bottom: 0; }
.video-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.5rem; align-items: stretch; }
.video-feature, .video-list-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
}
.video-embed { position: relative; aspect-ratio: 16/9; background: #111; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed a { display: block; width: 100%; height: 100%; }
.video-embed img { width: 100%; height: 100%; object-fit: cover; }
.video-content { padding: 1.5rem; }
.video-date { display: inline-block; color: var(--accent); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.55rem; }
.video-content h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; line-height: 1.25; margin-bottom: 0.65rem; }
.video-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.video-list { display: grid; gap: 1rem; }
.video-list-card { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: 1rem; align-items: center; }
.video-thumb { position: relative; aspect-ratio: 16/10; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, var(--accent-pale), var(--bg-alt)); }
.video-thumb a { display: block; width: 100%; height: 100%; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-list-card h3 { font-size: 0.98rem; line-height: 1.35; margin-bottom: 0.35rem; }
.video-list-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.45; }

/* ─── BLOG ─── */
#blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
  overflow: hidden; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 210px; overflow: hidden; flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img--source {
  background: linear-gradient(135deg, #0f1923, #1e2d40);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img--source .source-logo { color: rgba(255,255,255,0.88); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.04em; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); background: var(--accent-pale);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 0.85rem; align-self: flex-start;
}
.blog-tag--external { background: #f0f0f0; color: #555; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.45; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.6; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
  text-decoration: none; margin-top: auto;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-section-footer { text-align: center; margin-top: 2.5rem; }

/* ─── GALLERY ─── */
#gallery {
  background:
    radial-gradient(circle at 85% 20%, rgba(184,229,80,0.12), transparent 30%),
    linear-gradient(135deg, rgba(184,229,80,0.07) 0%, rgba(184,229,80,0.03) 100%),
    var(--white);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--accent-pale) 0%, var(--bg-alt) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* ─── GALLERY PAGE ─── */
.gallery-page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f5f1 100%);
  padding: 200px 2rem 80px;
  text-align: center;
}
.gallery-page-hero h1 { font-family: 'Playfair Display', serif; color: var(--accent); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.gallery-page-hero p { color: var(--text-muted); font-size: 1.05rem; }
.gallery-full { padding: 80px 2rem; background: var(--bg); }

/* Gallery page uses cards with a always-visible caption, so rows are sized
   by content instead of the fixed-height mosaic used on the homepage. */
.gallery-full .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: auto;
  gap: 1.75rem;
}
.gallery-full .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: default;
}
.gallery-full .gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.gallery-item-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gallery-caption-title {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--text);
}
.gallery-caption-sub {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ─── CONTACT ─── */
#contact {
  background:
    radial-gradient(circle at 20% 50%, rgba(184,229,80,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(184,229,80,0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(184,229,80,0.06) 0%, rgba(184,229,80,0.03) 100%),
    var(--white);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; color: var(--text-muted); font-size: 0.95rem; }
.contact-detail .icon { width: 40px; height: 40px; background: var(--accent-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
}
.social-link:hover { background: var(--green-dark); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: var(--transition); background: var(--bg); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus,
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-pale);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.wpcf7-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #1a1a1a;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer; width: 100%;
  justify-content: center;
}
.wpcf7-submit:hover { background: var(--green-dark); color: var(--white); }

/* ─── CONTACT PAGE HERO ─── */
.contact-page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f5f1 100%);
  padding: 200px 2rem 80px;
  text-align: center;
}
.contact-page-hero h1 { font-family: 'Playfair Display', serif; color: var(--accent); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.contact-page-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* ─── BIO PAGE HERO ─── */
.bio-page-hero {
  background: #4a6635;
  padding: 200px 2rem 80px;
  overflow: hidden;
}
.bio-page-hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: start;
}
.bio-page-photo {
  width: 100%; display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.bio-page-quote {
  margin-top: 1.4rem; border-left: 3px solid rgba(255,255,255,0.5); padding-left: 1.2rem;
}
.bio-page-quote p { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-style: italic; color: rgba(255,255,255,0.95); line-height: 1.75; margin-bottom: 0.5rem; }
.bio-page-quote cite { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.65); font-style: normal; text-transform: uppercase; letter-spacing: 0.1em; }
.bio-page-text { padding-top: 2rem; }
.bio-page-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: #ffffff; line-height: 1.08; margin-bottom: 1.6rem; letter-spacing: -0.02em; }
.bio-page-text p { color: rgba(255,255,255,0.92); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.4rem; }
.bio-section-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; display: block; }
.bio-page-content { background: var(--bg); padding: 80px 2rem; }
.bio-page-content .section-inner { max-width: 900px; }
.bio-page-content .the-content { font-size: 1.05rem; line-height: 1.9; color: var(--text); }
.bio-page-content .the-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--accent); }
.bio-page-content .the-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin: 1.5rem 0 0.75rem; }
.bio-page-content .the-content p { margin-bottom: 1.2rem; }

/* ─── THESEIS PAGE ─── */
.theseis-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 200px 2.5rem 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f5f1 100%);
}
.theseis-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}
.theseis-hero-photo { position: relative; }
.theseis-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(27,58,92,0.2);
}
.theseis-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.theseis-hero-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Category buttons */
.categories-grid { display: grid; gap: 1rem; margin-top: 3rem; }
.category-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
}
.category-btn:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateX(8px); }
.category-btn.active { background: #4a6635; border-color: #4a6635; color: var(--white); }
.category-btn .category-title { font-size: 1.1rem; font-weight: 700; display: block; margin-bottom: 0.35rem; }
.category-btn .category-desc { font-size: 0.85rem; opacity: 0.7; display: block; }
.category-btn.active .category-desc { opacity: 0.9; }

/* Positions content */
.theseis-content-wrap { padding: 0 2.5rem; max-width: 1400px; margin: 0 auto; }
.positions-content {
  margin-top: 4rem;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
}
.positions-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  margin-bottom: 1.5rem; color: var(--accent);
}
.positions-content > p { font-size: 1rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; }
.positions-list { display: grid; gap: 1.5rem; }
.position-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.position-item:last-child { border-bottom: none; }
.position-number {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0; margin-top: 2px;
}
.position-text h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.position-text p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

@keyframes theseisFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-anim { animation: theseisFadeIn 0.6s ease-out; }

/* CTA */
.theseis-cta {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f7f5f1 100%);
}
.theseis-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; color: var(--accent); }
.theseis-cta p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }

.theseis-page-content { background: var(--bg); padding: 80px 2rem; }
.theseis-page-content .section-inner { max-width: 1000px; }

@media (max-width: 1024px) {
  .theseis-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .theseis-hero-photo { max-height: 400px; }
  .theseis-hero { padding: 140px 2rem 50px; }
}
@media (max-width: 768px) {
  .theseis-hero { padding: 120px 1.25rem 40px; }
  .theseis-hero-inner { gap: 1.5rem; }
  .theseis-hero-photo { max-height: 300px; }
  .theseis-hero-content h1 { font-size: 1.8rem; }
  .theseis-content-wrap { padding: 0 1.25rem; }
  .positions-content { padding: 2rem; }
  .positions-content h2 { font-size: 1.5rem; }
  .position-item { grid-template-columns: 24px 1fr; }
  .position-number { width: 24px; height: 24px; font-size: 0.8rem; }
}
@media (max-width: 560px) {
  .theseis-hero { padding: 110px 1rem 30px; }
  .theseis-hero-content h1 { font-size: 1.5rem; }
  .theseis-hero-content > p { font-size: 0.95rem; }
  .category-btn { padding: 1rem 1.25rem; }
  .category-btn .category-title { font-size: 0.95rem; }
  .category-btn .category-desc { font-size: 0.75rem; }
  .positions-content { padding: 1.5rem; margin-top: 3rem; }
  .positions-content h2 { font-size: 1.3rem; margin-bottom: 1rem; }
  .position-item { grid-template-columns: 20px 1fr; gap: 0.75rem; padding-bottom: 1rem; }
  .position-number { width: 20px; height: 20px; font-size: 0.7rem; }
  .position-text h3 { font-size: 1rem; }
  .position-text p { font-size: 0.9rem; }
}

/* ─── INSTAGRAM FAN ─── */
.fan-stage { position: relative; height: 520px; width: 100%; display: flex; align-items: flex-end; justify-content: center; }
.fan-card {
  position: absolute; width: 310px; bottom: 0;
  left: 50%; margin-left: -155px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.45);
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  cursor: pointer;
}
.fan-card:nth-child(1) { transform: rotate(-20deg); z-index: 1; }
.fan-card:nth-child(2) { transform: rotate(0deg); z-index: 2; }
.fan-card:nth-child(3) { transform: rotate(20deg); z-index: 3; }
.fan-card.fan-active { transform: rotate(0deg) translateY(-18px) scale(1.04) !important; z-index: 10 !important; box-shadow: 0 28px 80px rgba(0,0,0,0.55) !important; }
.fan-overlay { position: absolute; inset: 0; z-index: 5; background: rgba(0,0,0,0.08); transition: background 0.3s; }
.fan-overlay:hover { background: rgba(0,0,0,0); }
.fan-card.fan-active .fan-overlay { display: none; }
.fan-card iframe { display: block; width: 100%; pointer-events: none; }
.fan-card.fan-active iframe { pointer-events: auto; }

/* ─── SOCIAL SIDEBAR ─── */
#social-sidebar { position: absolute; right: 1.5rem; top: 0; display: flex; flex-direction: column; align-items: center; z-index: 20; width: 42px; pointer-events: none; }
#social-sidebar .social-btn-group { display: flex; flex-direction: column; gap: 0.75rem; pointer-events: all; padding: 0.5rem 0; }
.social-sidebar-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(45,95,20,0.82);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.social-sidebar-link:hover { transform: scale(1.12); }

/* ─── FOOTER ─── */
footer { background: #789f3a; color: rgba(255,255,255,0.84); padding: 3rem 2rem; font-size: 0.88rem; }
footer .footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1.2fr auto;
  gap: 2rem; align-items: start;
}
footer .footer-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); font-weight: 700; margin-bottom: 0.5rem; }
footer .footer-copy { text-align: left; }
footer .footer-title { color: var(--white); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.7rem; }
footer .footer-list { display: grid; gap: 0.35rem; color: rgba(255,255,255,0.84); }
footer .footer-list a, footer .footer-social a { color: rgba(255,255,255,0.86); text-decoration: none; transition: var(--transition); }
footer .footer-list a:hover, footer .footer-social a:hover { color: var(--white); }
footer .footer-social { display: flex; flex-wrap: wrap; gap: 0.5rem; }
footer .footer-social a {
  min-width: 108px; min-height: 38px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.45rem 0.75rem; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px; background: transparent; font-weight: 800; font-size: 0.8rem; line-height: 1;
}
footer .footer-logos { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; flex-wrap: nowrap; margin-left: auto; transform: translateX(120px); }
.footer-logo-slot { min-width: 340px; height: 165px; display: flex; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; }
.footer-logo-slot img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; transform: scale(1.08); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.cinema-left { opacity: 0; transform: translateX(-70px); transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1); }
.cinema-right { opacity: 0; transform: translateX(70px); transition: opacity 1s cubic-bezier(0.4,0,0.2,1) 0.25s, transform 1s cubic-bezier(0.4,0,0.2,1) 0.25s; }
.cinema-left.cinema-visible, .cinema-right.cinema-visible { opacity: 1; transform: translateX(0); }

/* ─── ARCHIVE / SINGLE ─── */
.archive-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f5f1 100%);
  padding: 200px 2rem 80px; text-align: center;
}
.archive-hero h1 { font-family: 'Playfair Display', serif; color: var(--accent); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.archive-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* Eyebrow label above light-hero headings */
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.archive-content { padding: 80px 2rem; background: var(--bg); }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }

.single-article { max-width: 800px; margin: 0 auto; padding: 180px 2rem 80px; }
.single-article-header { margin-bottom: 2.5rem; }
.single-article-header .blog-tag { margin-bottom: 1rem; }
.single-article-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 1rem; }
.single-article-header .blog-meta { font-size: 0.88rem; color: var(--text-muted); }
.single-article-img { width: 100%; border-radius: var(--radius); margin-bottom: 2.5rem; max-height: 500px; object-fit: cover; }
.single-article-body { font-size: 1.08rem; line-height: 1.9; }
.single-article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 2rem 0 1rem; }
.single-article-body p { margin-bottom: 1.4rem; }
.single-article-body a { color: var(--accent); }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 2rem; transition: var(--transition); }
.back-link:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav .nav-inner { width: calc(100% - 1.2rem); height: 135px; }
  nav .logo-img { height: clamp(280px, 30vw, 380px); }
  body.inner-page .page { padding-top: 230px; }
  .bio-page-hero { padding: 160px 2rem 60px; }
  .archive-hero, .contact-page-hero, .gallery-page-hero, .theseis-page-hero { padding: 160px 2rem 60px; }
  footer .footer-logos { transform: translateX(20px); flex-wrap: wrap; }
  .footer-logo-slot { min-width: 240px; height: 120px; }
  .social-videos-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
}
@media (max-width: 900px) {
  .hero { padding-bottom: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-full .gallery-grid { grid-auto-rows: auto; }
  .video-grid { grid-template-columns: 1fr; }
  .video-section-head { grid-template-columns: 1fr; display: grid; align-items: start; }
  .bio-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .bio-photo { max-width: 100%; margin: 0 auto; }
  #instagram-carousel > div { grid-template-columns: 1fr !important; }
  .bio-page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bio-page-text { padding-top: 0; }
}
@media (max-width: 768px) {
  .hero-content { display: flex; flex-direction: column; }
  .hero-label { order: 2; margin-top: 1.2rem; margin-bottom: 0; align-self: flex-start; }
  .hero h1 { order: 1; }
  .hero-cta { order: 3; margin-top: 2rem; }
  nav .nav-inner { width: calc(100% - 1rem); height: 104px; gap: 0.85rem; }
  nav .logo-link {
    margin: 0;
    flex: 1 1 auto; min-width: 0; max-width: 340px; height: 78px;
    background-image: var(--logo-mobile-url);
    background-repeat: no-repeat; background-position: left center; background-size: contain;
  }
  nav .logo-img { display: none; }
  .hamburger { display: block; }
  nav .nav-links { display: none; }
  nav .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 104px; left: 0; right: 0; z-index: 410;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1rem; gap: 0.85rem;
    max-height: calc(100vh - 104px); overflow-y: auto;
  }
  nav .nav-links.open a { color: var(--text-muted) !important; text-shadow: none !important; }
  .nav-item-has-submenu:hover .nav-submenu { display: none; }
  .nav-links.open .nav-submenu {
    display: block !important; position: static !important;
    border: 0 !important; box-shadow: none !important;
    background: transparent !important; padding: 0.25rem 0 0 0.45rem !important; min-width: 0 !important;
  }
  .hamburger span { background: var(--text); }
  body.inner-page .page { padding-top: 120px; }
  .blog-grid { grid-template-columns: 1fr; }
  section { padding: 60px 1.25rem; }
  .scroll-hint { display: none; }
  .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  footer .footer-inner { grid-template-columns: 1fr; }
  footer .footer-logos { transform: none; justify-content: flex-start; flex-wrap: wrap; }
  .footer-logo-slot { min-width: 180px; height: 90px; }
  #social-sidebar { display: none !important; }
  .video-list-card { grid-template-columns: 1fr; }
  .archive-hero, .contact-page-hero, .gallery-page-hero, .theseis-page-hero { padding: 130px 1.25rem 50px; }
  .bio-page-hero { padding: 130px 1.25rem 50px; }
  .single-article { padding: 130px 1.25rem 60px; }
  .gallery-full { padding: 50px 1.25rem; }
  .theseis-page-content, .bio-page-content, .archive-content, .contact-page-content { padding: 50px 1.25rem; }
}
@media (max-width: 560px) {
  .timeline-step { min-height: 200px; margin-bottom: 1rem; }
  .timeline-content h3 { font-size: 1.12rem; }
  .timeline-content p, .timeline-list { font-size: 0.87rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .timeline::before, .timeline-progress { left: 20px; }
  .timeline-step { grid-template-columns: 48px 1fr; }
  .timeline-dot { grid-column: 1; justify-self: center; }
  .timeline-year { left: 20px; transform: translate(-50%, -30px); }
  .timeline-left .timeline-card, .timeline-right .timeline-card { grid-column: 2; justify-self: start; width: 100%; transform: translateX(36px); }
  .timeline-step.active .timeline-card { transform: translateX(0); }
}
