:root {
  /* Color Palette */
  --bg: #0e0e10;
  --bg-alt: #161618;
  --bg-card: #1a1a1d;
  --bg-elevated: #202024;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --gold: #c5a572;
  --gold-bright: #d4b886;
  --gold-dim: #9a7e54;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(197, 165, 114, 0.3);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Section */
.section {
  padding: var(--section-pad) 0;
}

/* Section Head */
.section-head {
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.mega-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.brand:hover .brand-mark {
  background: var(--gold);
  color: var(--bg);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover {
  color: var(--text);
}
.main-nav a:hover::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 165, 114, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(197, 165, 114, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(197, 165, 114, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.hero-title span {
  display: block;
}
.hero-body {
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Portrait */
.hero-portrait {
  display: flex;
  justify-content: center;
}
.portrait-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(197, 165, 114, 0.08), transparent 60%);
}
.portrait-inner {
  text-align: center;
  color: var(--text-dim);
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.portrait-inner svg {
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.portrait-inner p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.portrait-inner .placeholder-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 200px;
  margin: 0.5rem auto 0;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Intro Section */
.section-intro {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-body {
  max-width: 720px;
}
.intro-body p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.project-card--featured {
  grid-column: span 2;
}
.project-card--stats {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
}
.project-card--closed {
  opacity: 0.85;
}
.project-card--closed .project-image-placeholder {
  filter: grayscale(0.5);
}
.project-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}
.project-image--large {
  aspect-ratio: 21 / 9;
}
.project-image--cinematic {
  aspect-ratio: 21 / 9;
}
.project-image--wide {
  aspect-ratio: 24 / 10;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease);
}
.project-card:hover .project-image img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.project-card--closed .project-image img {
  filter: grayscale(0.4) brightness(0.85);
  transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease);
}
.project-card--closed:hover .project-image img {
  filter: grayscale(0.2) brightness(0.95);
}
/* Image alignment — contain mode for logos/branding */
.project-image--contain {
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.project-image--contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.project-image--cinematic img {
  object-position: center 40%;
}
.project-image--wide img {
  object-position: center;
}
.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), #25252a);
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.project-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-content--full {
  padding: 3rem;
}
.project-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.project-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.project-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}
.project-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.project-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.project-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 1rem;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease);
}
.project-link:hover {
  gap: 0.75rem;
  color: var(--gold-bright);
}
.project-link .arrow {
  transition: transform 0.3s var(--ease);
}
.project-link:hover .arrow {
  transform: translateX(4px);
}
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* Project Metadata Row */
.project-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.project-meta-row .meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.project-meta-row .meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.project-meta-row .meta-value {
  font-size: 0.85rem;
  color: var(--gold-bright);
  font-weight: 500;
}

/* Detailed project card — larger content area */
.project-card--detailed .project-content {
  padding: 2.5rem;
}
.project-card--detailed .project-desc {
  margin-bottom: 0.75rem;
}
.project-card--detailed .project-desc:last-of-type {
  margin-bottom: 1.25rem;
}

/* Stats */
.stat-row {
  margin: 1.5rem 0;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.location-tags span {
  padding: 0.4rem 1rem;
  background: rgba(197, 165, 114, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.15);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--gold-bright);
}

/* Acquisitions */
.section-acquisitions {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.acquisitions-body {
  max-width: 680px;
  margin: 0 auto 3rem;
}
.acquisitions-body p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.partnership-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.partnership-item {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.partnership-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}
.disclaimer {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.4s var(--ease-out);
  text-align: center;
}
.pillar:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-elevated);
}
.pillar-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Philosophy */
.section-philosophy {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
  text-align: center;
}
.philosophy-statement {
  margin-bottom: 4rem;
}
.philosophy-sub {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2rem;
  line-height: 1.6;
}
.process-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 4rem;
}
.process-step {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.process-step:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.process-arrow {
  color: var(--gold-dim);
  font-size: 1.2rem;
}
.philosophy-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.philosophy-questions p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* Partner Form */
.section-partner {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-body {
  max-width: 680px;
  margin-bottom: 4rem;
}
.partner-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.partner-emphasis {
  color: var(--gold) !important;
  font-size: 1.25rem !important;
  font-weight: 400;
  margin-top: 1.5rem !important;
}

/* Form */
.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.form-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.req { color: var(--gold); }
.optional { color: var(--text-dim); font-weight: 300; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
}
.form-check-group {
  margin-top: 0.5rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-submit {
  text-align: center;
  margin-top: 0.5rem;
}
.form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.5em;
}
.form-status.success { color: #6abf69; }
.form-status.error { color: #e57373; }
.form-status.loading { color: var(--gold); }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* About */
.section-about {
  text-align: center;
}
.about-body {
  max-width: 720px;
  margin: 0 auto;
}
.about-body p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* About Subsections */
.about-subsections {
  max-width: 760px;
  margin: 3.5rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-subsection {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: border-color 0.4s var(--ease);
}
.about-subsection:hover {
  border-color: var(--border-hover);
}
.about-sub-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.about-sub-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-sub-body p:last-child {
  margin-bottom: 0;
}

/* Education */
.education-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.education-item {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(197, 165, 114, 0.25);
  transition: border-color 0.3s var(--ease);
}
.education-item:hover {
  border-left-color: var(--gold);
}
.education-item--primary {
  border-left-color: var(--gold);
  padding-left: 1.75rem;
}
.education-item--primary .education-degree {
  font-size: 1.2rem;
}
.education-degree {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.education-inst {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.education-year {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Credentials */
.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.credential-tag {
  padding: 0.5rem 1rem;
  background: rgba(197, 165, 114, 0.05);
  border: 1px solid rgba(197, 165, 114, 0.12);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.credential-tag:hover {
  border-color: rgba(197, 165, 114, 0.3);
  background: rgba(197, 165, 114, 0.08);
  color: var(--gold-bright);
}

/* Vision */
.section-vision {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.vision-body {
  max-width: 680px;
  margin: 0 auto 3rem;
}
.vision-body p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.vision-chain {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.vision-step {
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.vision-step:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.vision-final {
  max-width: 600px;
  margin: 0 auto;
}
.vision-final p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
}
.vision-final p:first-child {
  color: var(--gold);
}

/* Travel Teaser */
.section-travel-teaser {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
  text-align: center;
}
.travel-teaser-body {
  max-width: 680px;
  margin: 0 auto 3rem;
}
.travel-teaser-body p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.travel-teaser-body strong {
  color: var(--gold);
  font-weight: 500;
}
.travel-teaser-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
.travel-stat {
  text-align: center;
}
.travel-stat .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.travel-stat .stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.travel-teaser-cta {
  text-align: center;
}
.travel-teaser-cta .btn .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s var(--ease);
}
.travel-teaser-cta .btn:hover .arrow {
  transform: translateX(4px);
}

/* Contact */
.section-contact {
  text-align: center;
}
.contact-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.contact-cat {
  padding: 0.625rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.contact-cat:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.contact-email {
  margin-bottom: 1.5rem;
}
.contact-email a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.contact-email a:hover {
  color: var(--gold-bright);
}
.contact-note {
  max-width: 500px;
  margin: 0 auto;
}
.contact-note p {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.85rem !important;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  justify-content: center;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-contact {
  text-align: right;
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s var(--ease);
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.footer-disclaimer {
  max-width: 700px;
  margin: 0.5rem auto 0 !important;
  font-style: italic;
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-content h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.error-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-portrait { order: -1; }
  .portrait-placeholder { max-width: 280px; }

  .project-card--featured,
  .project-card--stats {
    grid-column: span 1;
  }
  .project-image--cinematic {
    aspect-ratio: 16 / 9;
  }
  .project-image--wide {
    aspect-ratio: 16 / 9;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-brand { align-items: center; }
  .footer-contact { text-align: center; }
  .footer-nav ul { justify-content: center; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--ease);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .main-nav a { font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 1001; }

  .form-row { grid-template-columns: 1fr; }

  .process-chain { gap: 0.25rem; }
  .process-step { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .process-arrow { font-size: 0.9rem; }

  .vision-step { padding: 0.5rem 1rem; font-size: 0.85rem; }

  .about-subsections { text-align: center; gap: 2rem; }
  .about-subsection { padding: 1.75rem; }
  .about-subsections { text-align: left; }

  .section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 3rem; }

  /* Project meta row — stack on small screens */
  .project-meta-row { gap: 1rem; }
  .project-card--detailed .project-content { padding: 1.75rem; }
  /* Contain images — less padding on mobile */
  .project-image--contain { padding: 1.25rem; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-title { font-size: clamp(2.75rem, 14vw, 4rem); }
  .project-content { padding: 1.5rem; }
  .pillar { padding: 2rem 1.5rem; }
  .form-wrapper { padding: 1.5rem; }
  .project-image--contain { padding: 1rem; }
  .project-meta-row { gap: 0.75rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}