/* ============================================================
   MASTERCRAFT — Stylesheet
   Tone: Architectural. Editorial. Restrained.
   ============================================================ */

:root {
  /* Background system — warm charcoal, not pure black */
  --black: #1C1915;
  --off-black: #201E1A;
  --dark: #252219;
  --dark-mid: #3D3830;
  --mid: #5C5448;
  --warm-gray: #8C8070;
  --light-gray: #C8BFB0;
  --off-white: #F0EBE0;
  --white: #F7F3EC;
  /* Accent */
  --brass: #B8945A;
  --brass-light: #D4B07A;
  --bone: #D4C9B0;
  --alert: #C8603A;
  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --editorial: 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --max-width: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.wordmark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--off-white);
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 40px;
}

.section-title em {
  font-style: italic;
  color: var(--light-gray);
}

.link-arrow {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--brass);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.link-arrow:hover {
  border-bottom-color: var(--brass);
}

.link-arrow.small {
  font-size: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--brass);
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--brass-light);
}

.btn-secondary {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--off-white);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn-secondary-dark {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--dark-mid);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s;
}

.btn-secondary-dark:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 14, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  transition: color 0.2s;
}

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

/* ============================================================
   STICKY CTA BAR
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(28, 25, 21, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 150, 90, 0.2);
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta-text {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--warm-gray);
  font-style: italic;
}

.sticky-cta-text strong {
  color: var(--off-white);
  font-style: normal;
  font-weight: 400;
}

.sticky-cta-action {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sticky-cta-dismiss {
  background: none;
  border: none;
  color: var(--mid);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}

.sticky-cta-dismiss:hover {
  color: var(--warm-gray);
}

@media (max-width: 640px) {
  .sticky-cta-text { display: none; }
}

.nav-links .nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--brass);
  color: var(--black);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 20px;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/glassart-hero.webp');
  background-size: cover;
  background-position: center;
}

/* Subtle texture grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,12,0.55) 0%, rgba(14,14,12,0.7) 50%, var(--black) 100%);
}

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

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--light-gray);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--mid), transparent);
}

/* ============================================================
   STATEMENT
   ============================================================ */

.statement {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Editorial body copy — EB Garamond for warmth and readability */
.editorial-body {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.8;
  color: var(--off-white);
  max-width: 68ch;
}

.statement-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--off-white);
  border-left: 2px solid var(--brass);
  padding-left: 32px;
  margin-bottom: 32px;
}

.statement-body {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.85;
  color: var(--off-white);
  opacity: 0.82;
  padding-left: 34px;
}

/* ============================================================
   PILLARS
   ============================================================ */

.pillars {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--off-black);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar {
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--black);
  transition: border-color 0.3s;
}

.pillar:hover {
  border-color: rgba(184, 150, 90, 0.3);
}

.pillar-number {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 24px;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 16px;
}

.pillar-desc {
  font-family: var(--editorial);
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* ============================================================
   MASTERS
   ============================================================ */

.masters {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.masters-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.master-card {
  background: var(--off-black);
  overflow: hidden;
  transition: transform 0.3s;
}

.master-card:hover {
  transform: translateY(-4px);
}

.master-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.master-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.master-card-img-placeholder span {
  font-size: 32px;
  color: var(--mid);
  opacity: 0.4;
}

.master-card-body {
  padding: 28px;
}

.master-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.guild-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.guild-badge.master {
  background: rgba(184, 150, 90, 0.15);
  color: var(--brass);
  border: 1px solid rgba(184, 150, 90, 0.3);
}

.guild-badge.craftsman {
  background: rgba(255,255,255,0.05);
  color: var(--light-gray);
  border: 1px solid rgba(255,255,255,0.1);
}

.master-trade {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.master-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 4px;
}

.master-card-location {
  font-size: 12px;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.master-card-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

/* Card hover microinteraction — slow, deliberate lift */
.master-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.master-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   FEATURED PROJECT
   ============================================================ */

.project-feature {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--off-black);
}

.project-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.project-feature-image {
  overflow: hidden;
}

.project-feature-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.project-feature-img-placeholder p {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

.project-feature-content {
  padding: 80px clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-feature-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 32px;
}

.project-feature-title em {
  font-style: italic;
  color: var(--light-gray);
}

.project-feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.meta-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}

.meta-value {
  display: block;
  font-size: 14px;
  color: var(--off-white);
}

.project-feature-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

/* ============================================================
   APPRENTICESHIP
   ============================================================ */

.apprenticeship {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.apprenticeship-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apprenticeship-body {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.apprenticeship-body:last-of-type {
  margin-bottom: 36px;
}

.apprenticeship-tiers {
  padding-top: 16px;
}

.tier-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

/* Vertical timeline line */
.tier-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 150, 90, 0.2) 15%,
    var(--brass) 50%,
    rgba(184, 150, 90, 0.2) 85%,
    transparent
  );
}

.tier-item {
  display: flex;
  flex-direction: column;
  padding: 18px 20px 18px 24px;
  background: transparent;
  border-left: none;
  position: relative;
}

/* Timeline dot */
.tier-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-mid);
  border: 1px solid var(--warm-gray);
  transition: background 0.2s, border-color 0.2s;
}

.tier-highlight::before {
  background: rgba(184, 150, 90, 0.3);
  border-color: var(--brass);
}

.tier-highlight-gold::before {
  background: var(--brass);
  border-color: var(--brass);
  box-shadow: 0 0 8px rgba(184, 150, 90, 0.4);
}

.tier-highlight {
  background: rgba(184, 150, 90, 0.03);
  border-radius: 2px;
}

.tier-highlight-gold {
  background: rgba(184, 150, 90, 0.07);
  border-radius: 2px;
}

.tier-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 4px;
}

.tier-highlight .tier-name,
.tier-highlight-gold .tier-name {
  color: var(--brass);
}

.tier-desc {
  font-size: 12px;
  color: var(--warm-gray);
}

/* ============================================================
   TRADES
   ============================================================ */

.trades {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--off-black);
}

.trades-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trade-tag {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  transition: border-color 0.2s, color 0.2s;
}

.trade-tag:hover {
  border-color: var(--brass);
  color: var(--off-white);
  cursor: default;
}

/* ============================================================
   APPLY CTA
   ============================================================ */

.apply-cta {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.apply-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 32px;
}

.apply-title em {
  font-style: italic;
  color: var(--light-gray);
}

.apply-body {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 16px;
  max-width: 560px;
}

.apply-options {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.08);
}

.apply-option {
  flex: 1;
  padding: 48px;
}

.apply-option h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 12px;
}

.apply-option p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

.apply-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--off-black);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 200px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--mid);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--warm-gray);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--off-white);
}

.footer-specialties {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-specialties-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.footer-specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-specialties-list span {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.04em;
}

.footer-reviewing {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--mid);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--mid);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--warm-gray);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.nav-scrolled {
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Mobile nav open */
@media (max-width: 768px) {
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(20, 18, 15, 0.99);
    backdrop-filter: blur(12px);
    padding: 28px 32px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
  }
  .nav-links.nav-open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
  }
  .nav-links.nav-open a:last-child {
    border-bottom: none;
  }
  .nav-links.nav-open a:hover {
    color: var(--off-white);
  }
  .nav-links.nav-open .nav-cta {
    margin-top: 8px;
    border: 1px solid var(--brass);
    color: var(--brass);
    padding: 12px 0;
    text-align: center;
    letter-spacing: 0.15em;
    font-size: 11px;
    text-transform: uppercase;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .masters-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-feature-inner {
    grid-template-columns: 1fr;
  }
  .apprenticeship-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .masters-grid {
    grid-template-columns: 1fr;
  }
  .masters-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .apply-options {
    flex-direction: column;
  }
  .apply-divider {
    width: 100%;
    height: 1px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .pillar {
    padding: 32px 24px;
  }
  .project-feature-content {
    padding: 48px 24px;
  }
  .apply-option {
    padding: 32px 24px;
  }
}

/* ============================================================
   FOR ARCHITECTS SECTION
   ============================================================ */

.architects {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.architects-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.architects-image {
  overflow: hidden;
}

.architects-content {
  padding: 80px clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-black);
}

.architects-body {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.architects-values {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.arch-value {
  padding: 20px 24px;
  border-left: 2px solid rgba(184,150,90,0.3);
  background: var(--black);
}

.arch-value-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}

.arch-value p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--warm-gray);
  margin: 0;
}

/* FOUNDING ADVISOR CALLOUT */
.founding-advisor {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid rgba(120,140,200,0.2);
  background: rgba(120,140,200,0.04);
}

.founding-advisor-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.founding-advisor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(120,140,200,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: #8899cc;
  border: 1px solid rgba(120,140,200,0.3);
  flex-shrink: 0;
}

.founding-advisor-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8899cc;
  margin-bottom: 4px;
}

.founding-advisor-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 2px;
}

.founding-advisor-firm {
  font-size: 12px;
  color: var(--warm-gray);
}

.founding-advisor-quote {
  font-size: 13px;
  line-height: 1.7;
  color: var(--warm-gray);
  font-style: italic;
  border-left: 2px solid rgba(120,140,200,0.3);
  padding-left: 16px;
}

@media (max-width: 1024px) {
  .architects-inner {
    grid-template-columns: 1fr;
  }
  .architects-image {
    min-height: 300px;
  }
}

/* ============================================================
   LOGO MARK
   ============================================================ */

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.95;
}

.nav-logo img { filter: drop-shadow(0 0 8px rgba(184, 148, 90, 0.6)); }

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.9;
}

.wordmark {
  display: flex;
  align-items: center;
}

.endorsements-placeholder {
  padding: 32px;
  border: 1px dashed rgba(255,255,255,0.08);
  background: var(--off-black);
}

.endorsements-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
  font-style: italic;
  margin-bottom: 16px;
}

/* Alternating architect sections */
.architects-inner--reversed {
  direction: rtl;
}
.architects-inner--reversed > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .architects-inner--reversed {
    direction: ltr;
  }
}

/* ============================================================
   MOBILE — 390px / 375px
   ============================================================ */

@media (max-width: 640px) {

  /* Hero */
  .hero {
    padding: 100px 24px 80px;
    min-height: 90vh;
    align-items: flex-end;
  }
  .hero-headline {
    font-size: clamp(38px, 11vw, 56px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .hero-scroll-hint { display: none; }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* Masters grid */
  .masters-grid {
    grid-template-columns: 1fr;
  }

  /* Project feature */
  .project-feature-inner {
    grid-template-columns: 1fr;
  }
  .project-feature-image {
    min-height: 260px;
  }
  .project-feature-content {
    padding: 40px 24px;
  }

  /* Architect / Builder / Designer sections */
  .architects-inner {
    grid-template-columns: 1fr;
  }
  .architects-image {
    min-height: 240px !important;
  }
  .architects-content {
    padding: 40px 24px !important;
  }
  .architects-values {
    grid-template-columns: 1fr;
  }

  /* Apprenticeship */
  .apprenticeship-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Tier list */
  .tier-list {
    padding-left: 24px;
  }

  /* Apply CTA */
  .apply-options {
    flex-direction: column;
  }
  .apply-divider {
    width: 100%;
    height: 1px;
  }
  .apply-option {
    padding: 32px 24px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-brand {
    max-width: 100%;
  }

  /* Nav */
  .nav-mobile-toggle {
    display: block;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(26px, 7vw, 40px);
  }

  /* Sticky CTA */
  .sticky-cta {
    padding: 14px 20px;
  }
}
