:root {
  --ink: #0a0a0a;
  --paper: #f5f2ed;
  --warm: #f0ebe3;
  --accent: #1a3a5c;
  --accent-light: #2a5a8c;
  --muted: #6b6560;
  --faint: #d4cfc8;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.4rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a0a;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 0.3rem 2.5rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #9a9590;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: #d4cfc8; }

.nav-apply {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  color: var(--ink) !important;
  background: var(--white);
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  transition: all 0.3s !important;
}

.nav-apply:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

/* ── HERO ── */
.hero {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26,58,92,0.03) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-image {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--ink);
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 1.2rem;
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.hero-cta:hover svg { transform: translateX(4px); }

/* ── SECTIONS ── */
section {
  padding: 3.5rem 0;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-warm {
  background: var(--warm);
}

.section-accent {
  background: var(--accent);
  color: var(--paper);
}

/* ── RECOGNITION ── */
.recognition {
  padding: 4rem 0;
}

.recognition-text {
  max-width: 640px;
}

.recognition-text p {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.recognition-text p.quiet {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.recognition-text .emphasis {
  font-weight: 600;
  color: var(--ink);
}

/* ── DIVIDER LINE ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--faint);
  margin: 0 auto;
}

/* ── PROBLEM ── */
.problem {
  padding: 2rem 0 2rem;
}

.problem h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.problem-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.problem-body .callout {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 2.5rem 0;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.7;
  color: var(--ink);
  max-width: 660px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.section-dark .testimonial blockquote,
.section-dark.testimonial blockquote {
  color: var(--paper);
}

.section-dark .testimonial cite,
.section-dark.testimonial cite {
  color: rgba(245,242,237,0.5);
}


.section-dark .testimonial blockquote {
  color: var(--paper);
}

.testimonial cite {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.section-dark .testimonial cite {
  color: rgba(245,242,237,0.5);
}

/* ── COST OF DELAY ── */
.cost {
  padding: 4rem 0;
}

.cost h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: var(--ink);
}

.cost-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cost-body .weight {
  color: var(--ink);
  font-weight: 500;
}

.cost-list {
  list-style: none;
  margin: 2.5rem 0;
}

.cost-list li {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}

.cost-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--accent-light);
  border-radius: 50%;
}

.cost-question {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--paper);
  margin-top: 3rem;
  line-height: 1.6;
}

/* ── TRANSFORMATION ── */
.transformation {
  padding: 4rem 0 2rem;
}

.transformation h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.transform-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.transform-body .shift {
  font-family: var(--sans);
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ── THE BOOK ── */
.book-section {
  padding: 4rem 0;
  overflow: hidden;
}

.book-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

.book-cover {
  position: relative;
}

.book-cover-img {
  width: 100%;
  aspect-ratio: 5/8;
  background: linear-gradient(145deg, #0c1a2e 0%, #1a3a5c 40%, #0c1a2e 100%);
  border-radius: 4px;
  box-shadow: 
    20px 20px 60px rgba(0,0,0,0.15),
    -5px -5px 20px rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.book-cover-title {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.book-cover-subtitle {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.book-cover-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.book-cover-authors {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.book-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.book-info h2 em {
  font-style: italic;
  color: var(--accent);
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: #c4942a;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--muted);
}

.book-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2rem;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.book-link:hover {
  border-color: var(--accent);
}

/* ── HOW WE WORK ── */
.how-section {
  padding: 4rem 0;
}

.how-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.how-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.tier {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 3px;
  transition: all 0.4s ease;
}

.tier:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.tier-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tier h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tier p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── IVAN & MARIANA ── */
.founders-section {
  padding: 4rem 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.founder-card {
  padding: 0;
}

.founder-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.founder-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ── APPLICATION ── */
.apply-section {
  padding: 4rem 0;
  text-align: center;
}

.apply-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.apply-body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(245,242,237,0.65);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.apply-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 1rem 3rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.apply-btn:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.apply-note {
  font-size: 0.8rem;
  color: rgba(245,242,237,0.4);
  margin-top: 1.5rem;
}

/* ── FOOTER ── */
footer {
  padding: 1.5rem 0 1rem;
  background: var(--ink);
  text-align: center;
}

.footer-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-tag {
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  color: rgba(245,242,237,0.35);
  max-width: 400px;
  margin: -0.5rem auto 0;
  line-height: 1.2;
}

.section-dark.testimonial blockquote { color: var(--paper); }
.section-dark.testimonial cite { color: rgba(245,242,237,0.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .container, .container-wide { padding: 0 1.5rem; }
  section { padding: 2.5rem 0; }
  .recognition, .problem, .cost, .transformation, .how-section, .founders-section, .apply-section, .book-section { padding: 2.5rem 0; }
  .book-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-cover img { max-width: 280px; margin: 0 auto; display: block; }
  .tiers { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .founder-card img { width: 250px; height: 312px; }
}

[id] { scroll-margin-top: 100px; }

/* Extracted inline styles */
.inl-001 { height: 78px; width: auto; }
.inl-002 { width: 100%; max-width: 500px; height: auto; display: block; }
.inl-003 { width: 100%; overflow: hidden; }
.inl-004 { width: 100%; max-height: 650px; object-fit: cover; display: block; }
.inl-005 { padding: 1.25rem 0; }
.inl-006 { width: 100%; overflow: hidden; min-height: 200px; }
.inl-007 { color: var(--ink); }
.inl-008 { max-width: 1200px; }
.inl-009 { max-width: 820px; }
.inl-010 { margin-top: 1.5rem; font-style: italic; }
.inl-011 { margin-top: 3rem; text-align: center; }
.inl-012 { width: 100%; max-width: 650px; height: auto; border-radius: 3px; }
.inl-013 { width: 100%; max-width: 380px; height: auto; border-radius: 4px; box-shadow: 20px 20px 60px rgba(0,0,0,0.15), -5px -5px 20px rgba(255,255,255,0.5); }
.inl-014 { width: 300px; height: 375px; object-fit: cover; border-radius: 3px; margin-bottom: 1.5rem; }
.inl-015 { padding: 3rem 0; }
.inl-016 { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,237,0.35); margin-bottom: 2.5rem; text-align: center; }
.inl-017 { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.45rem); line-height: 1.75; color: var(--paper); font-style: italic; max-width: 680px; margin: 0 auto 2rem; text-align: center; }
.inl-018 { text-align: center; }
.inl-019 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--paper); margin-bottom: 0.2rem; }
.inl-020 { font-family: var(--sans); font-size: 0.82rem; color: rgba(245,242,237,0.5); }
.inl-021 { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.45rem); line-height: 1.75; color: var(--ink); font-style: italic; max-width: 680px; margin: 0 auto 2rem; text-align: center; }
.inl-022 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.inl-023 { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); }
.inl-024 { padding: 3.5rem 0; }
.inl-025 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,237,0.45); margin-bottom: 2.5rem; }
.inl-026 { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 2rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.inl-027 { border-radius: 4px; overflow: hidden; box-shadow: 0 6px 30px rgba(0,0,0,0.3); margin-bottom: 1rem; aspect-ratio: 9/16; display: flex; align-items: center; background: #000; }
.inl-028 { width: 100%; display: block; background: #000; }
.inl-029 { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--paper); margin-bottom: 0.2rem; }
.inl-030 { font-family: var(--sans); font-size: 0.78rem; color: rgba(245,242,237,0.45); }
.inl-031 { font-family: var(--sans); font-size: 0.72rem; color: rgba(245,242,237,0.35); }
.inl-032 { border-radius: 4px; overflow: hidden; box-shadow: 0 6px 30px rgba(0,0,0,0.3); margin-bottom: 1rem; aspect-ratio: 9/8; background: #000; }
.inl-033 { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.inl-034 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.inl-035 { font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--ink); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.6; }
.inl-036 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto 2.5rem; }
.inl-037 { padding: 1.2rem; }
.inl-038 { font-family: var(--serif); font-size: 2.8rem; font-weight: 400; color: var(--ink); margin-bottom: 0.3rem; }
.inl-039 { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.inl-040 { font-family: var(--sans); font-size: 0.95rem; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.7; }
.inl-041 { padding: 3rem 0; background: var(--paper); }
.inl-042 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); opacity: 0.6; margin-bottom: 2.5rem; text-align: center; }
.inl-043 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.inl-044 { padding: 1.5rem; background: var(--ink); border-radius: 2px; }
.inl-045 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--paper); margin-bottom: 0.3rem; }
.inl-046 { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: rgba(245,242,237,0.8); margin-bottom: 0.4rem; }
.inl-047 { font-family: var(--sans); font-size: 0.82rem; color: rgba(245,242,237,0.45); line-height: 1.6; }
.inl-048 { padding: 2.5rem 0; }
.inl-049 { text-align: center; max-width: 1200px; margin: 0 auto; }
.inl-050 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,237,0.3); margin-bottom: 1.5rem; }
.inl-051 { display: flex; flex-direction: column; gap: 1.2rem; }
.inl-052 { display: flex; justify-content: center; align-items: center; flex-wrap: nowrap; }
.inl-053 { flex: 0 0 auto; padding: 1rem 2.5rem; display: flex; align-items: center; justify-content: center; }
.inl-054 { height: 45px; width: auto; max-width: 180px; filter: grayscale(100%) brightness(1.5); opacity: 0.55; }
.inl-055 { height: 45px; width: auto; max-width: 180px; filter: grayscale(100%) brightness(2); opacity: 0.55; }
.inl-056 { height: 42px; width: auto; max-width: 180px; filter: grayscale(100%) brightness(2); opacity: 0.55; }
.inl-057 { height: 38px; width: auto; max-width: 180px; filter: grayscale(100%) brightness(2); opacity: 0.55; }
.inl-058 { height: 42px; width: auto; max-width: 180px; filter: grayscale(100%) brightness(1.3); opacity: 0.55; }
.inl-059 { height: 38px; width: auto; max-width: 180px; filter: grayscale(1) brightness(2) contrast(0.8); opacity: 0.5; }
.inl-060 { height: 45px; width: auto; max-width: 180px; filter: grayscale(1) brightness(2) contrast(0.8); opacity: 0.5; }
.inl-061 { height: 28px; width: auto; max-width: 180px; filter: grayscale(1) brightness(2) contrast(0.8); opacity: 0.5; }
.inl-062 { height: 35px; width: auto; max-width: 180px; filter: grayscale(1) brightness(0.8); opacity: 0.5; }
.inl-063 { height: 55px; width: auto; max-width: 180px; filter: grayscale(1) brightness(0.8); opacity: 0.5; }
.inl-064 { height: 40px; width: auto; max-width: 200px; filter: grayscale(1) brightness(1.5); opacity: 0.5; }
.inl-065 { padding: 2rem 0; }
.inl-066 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 400; color: var(--ink); margin-bottom: 1.5rem; }
.inl-067 { font-family: var(--sans); font-size: 1.05rem; color: var(--muted); max-width: 620px; margin: 0 auto 2rem; line-height: 1.8; }
.inl-068 { font-family: var(--sans); font-size: 1.05rem; color: var(--ink); opacity: 0.75; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.inl-069 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-style: italic; margin-bottom: 2rem; }
.inl-070 { padding: 0; text-align: center; }
.inl-071 { max-width: 600px; margin: 0 auto; padding: 0.8rem 1.2rem; background: var(--ink); border-radius: 2px; }
.inl-072 { font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); font-weight: 700; margin-bottom: 0.6rem; }
.inl-073 { font-family: var(--serif); font-size: 1.15rem; color: rgba(245,242,237,0.7); line-height: 1.7; margin-bottom: 0; }
.inl-074 { padding: 0.5rem 0 1rem; text-align: center; }
.inl-075 { font-family: var(--sans); font-size: 0.85rem; color: rgba(245,242,237,0.4); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.inl-076 { padding: 2rem 0 4rem; }
.inl-077 { display: inline-block; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--white); padding: 1.1rem 3.5rem; border-radius: 2px; text-decoration: none; transition: all 0.3s; }
.inl-078 { margin-bottom: 1rem; }
.inl-079 { font-family: var(--sans); font-size: 1rem; color: rgba(245,242,237,0.6); max-width: 560px; margin: 0 auto 3rem; line-height: 1.7; }
.inl-080 { width:100%;height:100%;border:none;border-radius:3px; }
.inl-081 { height: 108px; width: auto; opacity: 0.5; margin-bottom: 0; mix-blend-mode: lighten; }
