:root {
  --green-950: #080b09;
  --green-900: #0c160f;
  --green-800: #19241b;
  --green-700: #2a3328;
  --gold-dark: #8d7244;
  --gold: #c7a365;
  --gold-light: #d8ba8c;
  --ivory: #f4f0e5;
  --muted: #b7b6aa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--green-900);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
a { color: inherit; text-decoration: none; }
button, a { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(199,163,101,.25);
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.official-logo { width: 108px; height: auto; display: block; object-fit: contain; }
.site-header .official-logo { width: auto; height: 76px; }
.brand-seal {
  width: 42px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--gold);
}
.brand-seal::before, .brand-seal::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 30px;
  border: 1px solid rgba(199,163,101,.45);
  border-radius: 50%;
  transform: rotate(24deg);
}
.brand-seal::after { transform: rotate(-24deg); }
.brand-seal span { font-family: Georgia, serif; font-size: 20px; z-index: 1; }
.brand-copy { display: flex; flex-direction: column; color: var(--gold); line-height: 1; }
.brand-copy strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; letter-spacing: .11em; }
.brand-copy small { margin-top: 6px; font-size: 8px; letter-spacing: .38em; text-align: center; }
nav { display: flex; align-items: center; gap: 32px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
nav a { color: rgba(244,240,229,.72); transition: color .2s ease; }
nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid var(--gold-dark); padding: 12px 18px; color: var(--gold-light); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 112px) 90px;
  background:
    radial-gradient(circle at 84% 50%, rgba(61,89,68,.28), transparent 27%),
    linear-gradient(120deg, #0c160f 0%, #0d1912 55%, #17251b 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 96px 4vw 34px;
  border: 1px solid rgba(199,163,101,.13);
  pointer-events: none;
}
.hero-copy { max-width: 820px; position: relative; z-index: 2; }
.eyebrow, .section-index {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 25px 0 18px;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(76px, 10vw, 154px);
  line-height: .74;
  font-weight: 400;
  letter-spacing: -.045em;
  text-shadow: 0 3px 24px rgba(0,0,0,.28);
}
.hero h1 span {
  display: block;
  margin-top: .35em;
  font-family: Arial, sans-serif;
  font-size: .265em;
  letter-spacing: .42em;
  font-weight: 400;
  padding-left: .18em;
}
.hero blockquote {
  margin: 40px 0 22px;
  max-width: 560px;
  font-family: Georgia, serif;
  font-size: clamp(25px, 2.25vw, 38px);
  line-height: 1.28;
  font-weight: 400;
}
.hero blockquote strong { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-text { color: rgba(244,240,229,.62); max-width: 570px; line-height: 1.7; font-size: 15px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--green-950); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border: 1px solid rgba(244,240,229,.28); color: var(--ivory); }
.hero-panel { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-panel-frame {
  width: min(300px, 100%);
  min-height: 470px;
  border: 1px solid var(--gold-dark);
  outline: 1px solid rgba(199,163,101,.24);
  outline-offset: -12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8,14,10,.36);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.panel-kicker { font-size: 9px; color: var(--gold); letter-spacing: .25em; text-transform: uppercase; margin-bottom: 26px; }
.hero-panel strong { font-family: Georgia, serif; font-size: 84px; line-height: .78; color: var(--gold); font-weight: 400; }
.panel-month { font-size: 10px; letter-spacing: .36em; margin: 12px 0 18px; color: var(--gold-light); }
.hero-panel i { width: 80px; height: 1px; background: var(--gold-dark); margin: 2px 0 25px; }
.hero-panel p { text-align: center; font-size: 11px; line-height: 1.7; color: rgba(244,240,229,.62); }
.hero-orbit { position: absolute; border: 1px solid rgba(199,163,101,.12); border-radius: 50%; }
.orbit-one { width: 620px; height: 620px; right: -210px; top: 9%; }
.orbit-two { width: 390px; height: 780px; right: -80px; top: 2%; transform: rotate(28deg); }
.hero-scroll { position: absolute; bottom: 32px; right: 5.5vw; font-size: 8px; letter-spacing: .25em; color: rgba(244,240,229,.45); z-index: 3; }
.hero-scroll span { color: var(--gold); margin-left: 10px; }

.statement { padding: 130px clamp(24px, 7vw, 112px); background: var(--ivory); color: var(--green-900); }
.statement .section-index { color: var(--gold-dark); }
.statement-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 10vw; margin-top: 58px; }
.statement h2, .host-copy h2, .speaker-copy h2, .guests-heading h2, .program-intro h2, .info-section h2, .rules-section h2, .closing-section h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.statement h2 { font-size: clamp(44px, 5.5vw, 82px); line-height: 1.03; margin: 0; }
.statement-grid > div { max-width: 550px; }
.statement p { color: #536057; line-height: 1.85; font-size: 15px; }
.statement .lead { color: var(--green-900); font-family: Georgia, serif; font-size: 24px; line-height: 1.55; margin-top: 0; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--green-800); border-top: 1px solid rgba(199,163,101,.25); border-bottom: 1px solid rgba(199,163,101,.25); }
.pillars article { min-height: 300px; padding: 44px 36px; border-right: 1px solid rgba(199,163,101,.2); display: flex; flex-direction: column; }
.pillars article:last-child { border-right: 0; }
.pillars span { color: var(--gold-dark); font-size: 10px; letter-spacing: .2em; }
.pillars h3 { margin: auto 0 16px; font-family: Georgia, serif; color: var(--gold-light); font-size: 32px; font-weight: 400; }
.pillars p { color: rgba(244,240,229,.58); font-size: 13px; line-height: 1.7; margin: 0; }

.host-section, .speaker-section { min-height: 780px; display: grid; grid-template-columns: 1fr 1fr; }
.host-image-wrap, .speaker-image-wrap { position: relative; overflow: hidden; background: #111; }
.host-image-wrap img, .speaker-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.78) contrast(1.03); }
.host-image-wrap img { object-position: center 28%; }
.speaker-image-wrap img { object-position: 53% center; }
.host-image-wrap::after, .speaker-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,9,.48), transparent 45%); }
.image-caption { position: absolute; z-index: 2; bottom: 30px; left: 34px; font-size: 9px; letter-spacing: .22em; color: var(--gold-light); }
.host-copy, .speaker-copy { padding: clamp(70px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.host-copy { background: var(--green-900); }
.role { text-transform: uppercase; letter-spacing: .18em; font-size: 9px; color: var(--gold-dark); margin: 35px 0 10px; }
.host-copy h2, .speaker-copy h2 { color: var(--gold); font-size: clamp(62px, 7vw, 108px); line-height: .88; margin: 0 0 36px; }
.host-copy p, .speaker-copy p { max-width: 620px; color: rgba(244,240,229,.64); line-height: 1.8; font-size: 14px; }
.host-copy .host-proof { color: var(--ivory); font-family: Georgia, serif; font-size: 21px; line-height: 1.5; border-left: 1px solid var(--gold); padding-left: 20px; }
.host-proof strong { color: var(--gold-light); font-weight: 400; }
.speaker-section { background: var(--green-800); }
.speaker-copy { order: 1; }
.speaker-image-wrap { order: 2; }
.speaker-image-wrap img { object-fit: cover; }
.speaker-note { margin-top: 20px; border-top: 1px solid rgba(199,163,101,.28); padding-top: 18px; color: var(--gold-light); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.guests-section { padding: 120px clamp(24px, 7vw, 112px); background: var(--ivory); color: var(--green-900); }
.guests-section .section-index { color: var(--gold-dark); }
.guests-heading { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8vw; align-items: end; margin: 45px 0 75px; }
.guests-heading h2 { font-size: clamp(46px, 5.5vw, 84px); line-height: 1; margin: 0; }
.guests-heading p { color: #5a665e; line-height: 1.8; margin: 0; }
.guest-placeholders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #bcb7a9; }
.guest-placeholders div { background: #e9e3d8; min-height: 220px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.guest-placeholders div::after { content: "?"; position: absolute; right: 15px; bottom: -45px; font-family: Georgia, serif; font-size: 180px; color: rgba(141,114,68,.10); }
.guest-placeholders span { font-size: 9px; letter-spacing: .2em; color: var(--gold-dark); }
.guest-placeholders strong { font-family: Georgia, serif; font-size: 34px; font-weight: 400; }

.program-section { padding: 120px clamp(24px, 7vw, 112px); background: #0b130e; }
.program-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 8vw; margin: 45px 0 72px; }
.program-intro h2 { color: var(--gold); font-size: clamp(52px, 6vw, 92px); line-height: .95; margin: 0; }
.program-intro p { color: rgba(244,240,229,.58); line-height: 1.8; }
.days { border-top: 1px solid rgba(199,163,101,.3); }
.days article { display: grid; grid-template-columns: 160px 1fr; gap: 35px; padding: 50px 0; border-bottom: 1px solid rgba(199,163,101,.3); }
.day-number { font-family: Georgia, serif; font-size: 102px; color: var(--gold); line-height: .75; }
.days span { color: var(--gold-dark); font-size: 9px; letter-spacing: .2em; }
.days h3 { font-family: Georgia, serif; font-size: 35px; font-weight: 400; margin: 14px 0; }
.days p { color: rgba(244,240,229,.55); line-height: 1.7; max-width: 680px; }
.days button { margin-top: 14px; background: none; border: 1px solid rgba(199,163,101,.3); color: var(--gold-dark); text-transform: uppercase; font-size: 9px; letter-spacing: .15em; padding: 11px 14px; }

.info-section { padding: 120px clamp(24px, 7vw, 112px); background: var(--green-700); display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.info-section h2 { color: var(--gold-light); font-size: clamp(48px, 5vw, 76px); line-height: 1.05; }
.info-section dl { margin: 0; }
.info-section dl div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(199,163,101,.28); }
.info-section dt { color: var(--gold); text-transform: uppercase; font-size: 9px; letter-spacing: .2em; }
.info-section dd { margin: 0; color: var(--ivory); font-family: Georgia, serif; font-size: 19px; }
.guide-section { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ivory); color: var(--green-900); }
.guide-section article { padding: 55px; min-height: 260px; border-right: 1px solid #cec7b8; }
.guide-section span { color: var(--gold-dark); font-size: 9px; letter-spacing: .2em; }
.guide-section h3 { font-family: Georgia, serif; font-size: 30px; font-weight: 400; margin: 48px 0 15px; }
.guide-section p { color: #5e675f; line-height: 1.7; font-size: 13px; }

.rules-section { padding: 110px clamp(24px, 7vw, 112px); background: var(--green-800); display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.rules-section h2 { color: var(--gold); font-size: 58px; line-height: 1; }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(199,163,101,.2); }
.rules-grid > div { background: var(--green-800); padding: 28px; }
.rules-grid h3 { font-family: Georgia, serif; font-size: 21px; font-weight: 400; color: var(--gold-light); }
.rules-grid p { color: rgba(244,240,229,.56); line-height: 1.7; font-size: 12px; }

.closing-section { min-height: 620px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 90px 24px; background: radial-gradient(circle at 50% 45%, #233529 0%, #0c160f 56%); position: relative; overflow: hidden; }
.closing-section::before { content: ""; width: 540px; height: 540px; position: absolute; border: 1px solid rgba(199,163,101,.14); border-radius: 50%; }
.closing-section h2 { max-width: 980px; color: var(--gold); font-size: clamp(48px, 6vw, 86px); line-height: 1.04; margin: 30px 0 10px; position: relative; }
.closing-section > p:not(.eyebrow) { font-family: Georgia, serif; font-style: italic; font-size: 28px; color: var(--ivory); position: relative; }
.closing-section .button { margin-top: 30px; position: relative; }
footer { min-height: 140px; padding: 35px clamp(24px, 5vw, 80px); border-top: 1px solid rgba(199,163,101,.25); display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #080d0a; color: rgba(244,240,229,.42); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-brand { transform: scale(.84); transform-origin: left center; }
.footer-official-logo { width: 116px; }
.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 12px 32px rgba(0,0,0,.34); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 36px rgba(0,0,0,.4); }
.whatsapp-float svg { width: 31px; height: 31px; }
.whatsapp-float svg path:first-child { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.whatsapp-float svg path:last-child { fill: currentColor; }
.cookie-banner { position: fixed; z-index: 100; left: 22px; right: 22px; bottom: 22px; max-width: 980px; margin: auto; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 28px; background: #f4f0e5; color: #0c160f; border: 1px solid #c7a365; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: Georgia, serif; color: #8d7244; font-size: 19px; font-weight: 400; }
.cookie-banner p { margin: 7px 0 0; max-width: 640px; font-size: 12px; line-height: 1.6; color: #536057; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button { border: 1px solid #8d7244; background: transparent; color: #0c160f; padding: 12px 17px; cursor: pointer; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.cookie-actions .cookie-accept { background: #c7a365; border-color: #c7a365; }

@media (max-width: 980px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-panel { display: none; }
  .statement-grid, .guests-heading, .program-intro, .info-section, .rules-section { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .host-section, .speaker-section { grid-template-columns: 1fr; }
  .host-image-wrap, .speaker-image-wrap { min-height: 650px; }
  .speaker-copy { order: 2; }
  .speaker-image-wrap { order: 1; }
  .guest-placeholders, .guide-section { grid-template-columns: 1fr; }
  .guide-section article { border-right: 0; border-bottom: 1px solid #cec7b8; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding: 0 18px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 6px; }
  .brand-seal { width: 32px; height: 38px; }
  nav { gap: 0; }
  .nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 12px; font-size: 8px; }
  .hero { min-height: 100svh; display: flex; align-items: center; padding: 112px 22px 64px; }
  .hero::after { inset: 72px 10px 12px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(62px, 21.5vw, 88px); line-height: .78; margin-top: 22px; }
  .hero h1 span { margin-top: .48em; padding-left: .12em; font-size: .245em; letter-spacing: .24em; }
  .hero blockquote { margin-top: 42px; font-size: clamp(24px, 7.3vw, 31px); }
  .hero-text { font-size: 14px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .eyebrow, .section-index { font-size: 9px; letter-spacing: .2em; }
  .hero-scroll { display: none; }
  .statement, .guests-section, .program-section, .info-section, .rules-section { padding: 76px 22px; }
  .statement-grid { margin-top: 35px; }
  .statement h2 { font-size: 43px; line-height: 1.04; }
  .statement .lead { font-size: 21px; line-height: 1.45; }
  .pillars { grid-template-columns: 1fr; }
  .pillars article { min-height: 190px; padding: 30px 24px; }
  .pillars h3 { font-size: 29px; }
  .host-image-wrap, .speaker-image-wrap { min-height: 70svh; max-height: 680px; }
  .host-image-wrap img { object-position: center 22%; }
  .speaker-image-wrap img { object-position: 57% center; }
  .host-copy, .speaker-copy { padding: 70px 22px; }
  .host-copy h2, .speaker-copy h2 { font-size: clamp(58px, 18vw, 72px); margin-bottom: 30px; }
  .host-copy .host-proof { font-size: 19px; }
  .host-copy p, .speaker-copy p { font-size: 13px; }
  .guests-heading { margin: 34px 0 45px; }
  .guests-heading h2 { font-size: 46px; }
  .guest-placeholders div { min-height: 165px; padding: 24px; }
  .program-intro { margin: 35px 0 55px; }
  .program-intro h2 { font-size: 51px; }
  .days article { grid-template-columns: 1fr; gap: 22px; padding: 38px 0; }
  .day-number { font-size: 72px; }
  .days h3 { font-size: 27px; }
  .days button { width: 100%; min-height: 45px; }
  .info-section h2 { font-size: 46px; }
  .info-section dl div { grid-template-columns: 1fr; gap: 8px; }
  .info-section dd { font-size: 17px; line-height: 1.4; }
  .guide-section article { min-height: 220px; padding: 42px 24px; }
  .guide-section h3 { margin-top: 34px; }
  .rules-section h2 { font-size: 47px; }
  .rules-grid { grid-template-columns: 1fr; }
  .rules-grid > div { padding: 24px; }
  .closing-section { min-height: 560px; padding: 80px 22px; }
  .closing-section::before { width: 360px; height: 360px; }
  .closing-section h2 { font-size: 43px; }
  .closing-section > p:not(.eyebrow) { font-size: 24px; }
  footer { min-height: 220px; flex-direction: column; align-items: flex-start; padding: 38px 22px; }
  .official-logo { width: 86px; }
  .site-header .official-logo { width: auto; height: 58px; }
  .footer-official-logo { width: 110px; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
  .cookie-banner { left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); max-height: calc(100svh - 20px); overflow-y: auto; padding: 20px; flex-direction: column; align-items: stretch; gap: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions button { min-height: 46px; }
}

@media (max-width: 380px) {
  .brand-copy { display: none; }
  .hero h1 { font-size: 62px; }
  .hero h1 span { letter-spacing: .18em; }
  .statement h2, .guests-heading h2, .closing-section h2 { font-size: 39px; }
  .program-intro h2, .info-section h2, .rules-section h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.materials-page { min-height: 100vh; background: var(--ivory); color: var(--green-900); }
.materials-hero { padding: 70px clamp(24px, 7vw, 112px) 95px; background: radial-gradient(circle at 85% 15%, #324639, var(--green-900) 48%); color: var(--ivory); }
.materials-back { display: inline-block; color: var(--gold-light); font-size: 11px; letter-spacing: .12em; margin-bottom: 90px; }
.materials-hero > p:first-of-type, .palette-section > div > p, .production-notes > div > p { color: var(--gold); font-size: 10px; letter-spacing: .25em; }
.materials-hero h1 { font-family: Georgia, serif; font-size: clamp(58px, 8vw, 116px); font-weight: 400; letter-spacing: -.045em; color: var(--gold); margin: 22px 0; }
.materials-intro { max-width: 700px; color: rgba(244,240,229,.65); line-height: 1.8; }
.materials-copy-link { display: inline-flex; margin-top: 28px; padding: 15px 20px; border: 1px solid var(--gold-dark); color: var(--gold-light); text-transform: uppercase; font-size: 9px; letter-spacing: .15em; }
.main-files-section { padding: 80px clamp(24px, 7vw, 112px); background: var(--green-800); color: var(--ivory); display: grid; grid-template-columns: .55fr 1.45fr; gap: 5vw; border-top: 1px solid rgba(199,163,101,.22); }
.main-files-heading > p { color: var(--gold); font-size: 10px; letter-spacing: .25em; }
.main-files-heading h2 { font-family: Georgia, serif; font-size: 48px; font-weight: 400; color: var(--gold); margin: 16px 0; }
.main-files-grid { border-top: 1px solid rgba(199,163,101,.25); }
.main-files-grid > a { min-height: 110px; display: grid; grid-template-columns: 60px 1fr 28px; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(199,163,101,.25); color: var(--ivory); }
.main-files-grid > a > span { color: var(--gold); font-size: 9px; letter-spacing: .18em; }
.main-files-grid h3 { font-family: Georgia, serif; font-size: 23px; font-weight: 400; margin: 0 0 7px; }
.main-files-grid p { margin: 0; color: rgba(244,240,229,.55); font-size: 12px; line-height: 1.55; }
.main-files-grid strong { color: var(--gold-light); font-size: 21px; font-weight: 400; }
.palette-section { display: grid; grid-template-columns: .55fr 1.45fr; gap: 5vw; padding: 80px clamp(24px, 7vw, 112px); border-bottom: 1px solid #d2cabd; }
.palette-section h2, .production-notes h2 { font-family: Georgia, serif; font-size: 48px; font-weight: 400; margin: 16px 0; }
.palette-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.palette-grid div { display: flex; flex-direction: column; gap: 8px; }
.palette-grid span { height: 90px; border: 1px solid rgba(0,0,0,.08); }
.palette-grid strong { font-size: 11px; }
.palette-grid code { color: #6b706c; font-size: 11px; }
.materials-grid { padding: 90px clamp(24px, 7vw, 112px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 26px; }
.materials-grid article { min-width: 0; }
.material-preview { background: #dcd6ca; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid #cec7bb; display: flex; justify-content: center; align-items: flex-start; }
.material-preview img { width: 100%; height: 100%; object-fit: contain; display: block; }
.material-meta { display: flex; justify-content: space-between; align-items: end; gap: 15px; padding-top: 18px; }
.material-meta h2 { font-family: Georgia, serif; font-size: 23px; font-weight: 400; margin: 0; }
.material-meta p { color: #6d746e; font-size: 10px; margin: 8px 0 0; }
.material-meta a { border-bottom: 1px solid var(--gold-dark); color: var(--gold-dark); text-transform: uppercase; font-size: 9px; letter-spacing: .15em; padding-bottom: 4px; }
.production-notes { display: grid; grid-template-columns: .65fr 1.35fr; gap: 6vw; padding: 95px clamp(24px, 7vw, 112px); background: var(--green-800); color: var(--ivory); }
.production-notes h2 { color: var(--gold); }
.production-notes ul { list-style: none; margin: 0; padding: 0; }
.production-notes li { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(199,163,101,.25); }
.production-notes strong { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; font-size: 19px; }
.production-notes span { color: rgba(244,240,229,.6); font-size: 13px; line-height: 1.7; }

@media (max-width: 980px) {
  .main-files-section, .palette-section, .production-notes { grid-template-columns: 1fr; }
  .palette-grid { grid-template-columns: repeat(3, 1fr); }
  .materials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .materials-back { margin-bottom: 60px; }
  .palette-grid { grid-template-columns: 1fr 1fr; }
  .main-files-grid > a { grid-template-columns: 44px 1fr 20px; }
  .materials-grid { grid-template-columns: 1fr; }
  .production-notes li { grid-template-columns: 1fr; gap: 8px; }
}
