:root {
  --cream:      #F4EFE6;
  --sand:       #E6DDD0;
  --parchment:  #EDE5D8;
  --deep:       #16120E;
  --earth:      #2E1F14;
  --bark:       #4A3728;
  --gold:       #BF9A5C;
  --gold-light: #D9B87A;
  --gold-pale:  #F0DEB8;
  --muted:      #9A8F83;
  --border:     rgba(191,154,92,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--deep);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  opacity: 0.6;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 700px;
  background: var(--deep);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(191,154,92,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(74,55,40,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(46,31,20,0.6) 0%, transparent 50%);
}

.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-lines { position: absolute; inset: 0; pointer-events: none; }
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,154,92,0.15), transparent);
}
.hero-lines::before { top: 30%; }
.hero-lines::after  { top: 65%; }

.hero-inner {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 8vw 64px; position: relative; z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 40px;
  opacity: 0; animation: riseIn 1s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-tag-line { width: 32px; height: 1px; background: var(--gold); }
.hero-tag-text { font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); font-weight: 300; }

.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem); line-height: 0.88;
  color: var(--cream); letter-spacing: -0.02em;
  opacity: 0; animation: riseIn 1.1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .italic { font-style: italic; color: var(--gold-light); }

.hero-role-line {
  display: flex; align-items: center; gap: 20px; margin-top: 32px;
  opacity: 0; animation: riseIn 1s 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-role-text { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.hero-role-divider { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(191,154,92,0.3), transparent); max-width: 200px; }

.hero-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 24px 8vw; position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.05);
  opacity: 0; animation: riseIn 1s 1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-label { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); }
.hero-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--cream); }

.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: gap 0.3s;
}
.hero-cta:hover { gap: 24px; }
.hero-cta-arrow { width: 40px; height: 1px; background: var(--gold); transition: width 0.3s; }
.hero-cta:hover .hero-cta-arrow { width: 56px; }

/* ── SECTIONS ── */
.s { padding: 100px 8vw; }
.s--dark  { background: var(--deep); color: var(--cream); }
.s--sand  { background: var(--sand); }
.s--earth { background: var(--earth); color: var(--cream); }
.s--parch { background: var(--parchment); }

.s-label { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.s-label-line { width: 24px; height: 1px; background: var(--gold); }
.s-label-text { font-size: 0.62rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); font-weight: 300; }

.s-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05;
  margin-bottom: 40px; letter-spacing: -0.01em;
}
.s-title em { font-style: italic; color: var(--gold); }
.s--dark .s-title em, .s--earth .s-title em { color: var(--gold-light); }

.s-body { font-size: 0.95rem; line-height: 1.9; color: var(--bark); max-width: 600px; }
.s--dark .s-body, .s--earth .s-body { color: rgba(244,239,230,0.6); }

/* ── OPPORTUNITY ── */
.opp-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.opp-body { margin-bottom: 32px; }
.stats-column { padding-top: 12px; }

.stat-item { padding: 28px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: baseline; }
.stat-item:last-child { border-bottom: 1px solid var(--border); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--deep); line-height: 1; }
.stat-l { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-align: right; max-width: 140px; line-height: 1.5; }

.press-strip { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.press-label { font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.press-names { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--bark); line-height: 2; }

/* ── ORG ── */
.org-intro { max-width: 640px; margin-bottom: 56px; }
.org-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,0.07); }
.org-card {
  padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.35s; position: relative; overflow: hidden;
}
.org-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.org-card:hover { background: rgba(191,154,92,0.06); }
.org-card:hover::before { transform: scaleX(1); }
.org-card:nth-child(4n) { border-right: none; }
.org-dept { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.org-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--cream); margin-bottom: 10px; line-height: 1.3; }
.org-note { font-size: 0.73rem; color: rgba(244,239,230,0.35); line-height: 1.6; }

/* ── RESPONSIBILITIES ── */
.resp-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px; border: 1px solid rgba(74,55,40,0.12); }
.resp-card { padding: 36px 32px; border-right: 1px solid rgba(74,55,40,0.1); border-bottom: 1px solid rgba(74,55,40,0.1); transition: background 0.3s; }
.resp-card:hover { background: rgba(191,154,92,0.04); }
.resp-card:nth-child(2n) { border-right: none; }
.resp-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1; color: var(--gold-pale); margin-bottom: 16px; }
.resp-title { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bark); font-weight: 400; margin-bottom: 12px; }
.resp-text { font-size: 0.87rem; line-height: 1.75; color: var(--muted); }

/* ── REQUIREMENTS ── */
.req-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.req-group { margin-bottom: 44px; }
.req-group-title { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); padding-bottom: 16px; border-bottom: 1px solid rgba(191,154,92,0.2); margin-bottom: 20px; }
.req-item { display: flex; gap: 16px; margin-bottom: 13px; align-items: flex-start; }
.req-marker { width: 5px; height: 5px; border: 1px solid var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.req-text { font-size: 0.87rem; line-height: 1.7; color: rgba(244,239,230,0.6); }

/* ── OFFER ── */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; background: rgba(74,55,40,0.1); }
.offer-card { background: var(--cream); padding: 40px 32px; transition: background 0.3s, transform 0.3s; position: relative; }
.offer-card:hover { background: white; transform: translateY(-4px); z-index: 2; box-shadow: 0 20px 60px rgba(46,31,20,0.1); }
.offer-glyph { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 20px; line-height: 1; }
.offer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--deep); margin-bottom: 12px; }
.offer-text { font-size: 0.84rem; line-height: 1.7; color: var(--muted); }

/* ── APPLY ── */
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.apply-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.0; color: var(--cream); margin-bottom: 28px; letter-spacing: -0.01em; }
.apply-title em { font-style: italic; color: var(--gold-light); }
.apply-body { font-size: 0.9rem; line-height: 1.85; color: rgba(244,239,230,0.5); margin-bottom: 44px; }
.apply-link { display: inline-flex; align-items: center; gap: 18px; text-decoration: none; color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; padding-bottom: 10px; border-bottom: 1px solid rgba(217,184,122,0.25); transition: gap 0.3s, border-color 0.3s, color 0.3s; }
.apply-link:hover { gap: 28px; border-color: var(--gold-light); color: var(--cream); }
.apply-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(191,154,92,0.12); align-items: flex-start; }
.apply-step:first-child { border-top: 1px solid rgba(191,154,92,0.12); }
.apply-step-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: rgba(217,184,122,0.3); line-height: 1; flex-shrink: 0; width: 36px; }
.apply-step-title { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.apply-step-body { font-size: 0.86rem; line-height: 1.7; color: rgba(244,239,230,0.45); }

/* ── FOOTER ── */
.footer { background: var(--deep); padding: 28px 8vw; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 300; letter-spacing: 0.1em; color: rgba(244,239,230,0.3); }
.footer-right { display: flex; gap: 32px; align-items: center; }
.footer-loc { font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(244,239,230,0.2); }
.footer-apply { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.footer-apply:hover { color: var(--gold-light); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .opp-grid, .req-cols, .apply-grid { grid-template-columns: 1fr; gap: 48px; }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .org-card:nth-child(2n) { border-right: none; }
  .org-card:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.07); }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .resp-grid { grid-template-columns: 1fr; }
  .resp-card { border-right: none !important; }
  .hero-stats { gap: 28px; }
}
@media (max-width: 600px) {
  .s { padding: 64px 6vw; }
  .org-grid { grid-template-columns: 1fr; }
  .org-card { border-right: none !important; }
  .offer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-stats { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
