/* ─── Variables ─── */
:root {
  --ivory: #FAF8F5;
  --warm-gray: #F0EBE3;
  --slate: #1C2B33;
  --slate-mid: #2D4A5E;
  --gold: #C9A96E;
  --gold-light: #D4B880;
  --muted: #8A9BA8;
  --white: #FFFFFF;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--ivory);
  color: var(--slate);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--slate);
}

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--slate);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--slate); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10rem 4rem 6rem;
  position: relative;
  background: var(--ivory);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(180deg, var(--warm-gray) 0%, var(--ivory) 100%);
  z-index: 0;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--slate);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--slate-mid);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--slate);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: var(--gold); color: var(--slate); transform: translateY(-1px); }

.hero-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 5rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.hero-divider-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.3; }
.hero-divider-diamond { opacity: 0.6; }

/* ─── Section Shared ─── */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── Standards ─── */
.standards {
  padding: 7rem 4rem;
  background: var(--slate);
  color: var(--ivory);
}

.standards-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.standard-card {
  background: var(--slate);
  padding: 3rem;
  transition: background 0.3s;
}
.standard-card:hover { background: #1f3340; }

.standard-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.standard-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.standard-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.7;
}

/* ─── Technique ─── */
.technique {
  padding: 7rem 4rem;
  background: var(--ivory);
}

.technique-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 5rem;
  align-items: start;
}

.technique-label-col { padding-top: 0.5rem; }

.technique-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--slate);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.technique-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 3.5rem;
  max-width: 560px;
}

.technique-steps { display: flex; flex-direction: column; gap: 0; }

.technique-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(28, 43, 51, 0.12);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 2.5rem;
  padding-top: 0.1rem;
}

.step-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.6;
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--warm-gray);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 2rem;
  font-weight: 300;
}

.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--slate);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

.manifesto-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.attribution-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.08em;
}

.attribution-role {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Closing ─── */
.closing {
  background: var(--slate);
  padding: 8rem 4rem;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.closing-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
  opacity: 0.6;
}

.closing-punchline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ─── Footer ─── */
.footer {
  background: var(--slate);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 3rem 4rem 2.5rem;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-brand { margin-bottom: 2rem; }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.detail-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.detail-value {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.6);
  text-decoration: none;
  line-height: 1.6;
}
.detail-value a { color: inherit; text-decoration: none; }
.detail-value a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.35);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav { padding: 1.25rem 2rem; }
  .hero { padding: 8rem 2rem 5rem; }
  .standards { padding: 5rem 2rem; }
  .technique { padding: 5rem 2rem; }
  .technique-inner { grid-template-columns: 1fr; gap: 2rem; }
  .standards-grid { grid-template-columns: 1fr; }
  .footer-details { grid-template-columns: repeat(2, 1fr); }
  .manifesto { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem; }
  .footer { padding: 2.5rem 2rem 2rem; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 3.2rem; }
  .footer-details { grid-template-columns: 1fr; }
}