/* ============================================================
   Erbil Coffee & Tea Festival 2026 — main stylesheet
   Palette: cream #f3ead9 · brown #442811 · orange #e36e4a
            green #40643b · blue #548da8 · gold #e5aa41
   ============================================================ */

@font-face {
  font-family: 'Sarkar';
  src: url('../assets/fonts/SarkarMaster.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --cream: #f3ead9;
  --brown: #442811;
  --brown-dark: #2c1a0b;
  --orange: #e36e4a;
  --green: #40643b;
  --blue: #548da8;
  --gold: #e5aa41;
  --ink-soft: #5c3a1e;
  --ink-muted: #8a6a4a;
  --card: #f7f0e2;
  --band: #e9dcc3;
  --field: #fffaf0;
}

* { box-sizing: border-box; }

/* overflow-x:clip clips horizontal overflow WITHOUT creating a scroll
   container — unlike `hidden`, it lets the sticky nav stick to the viewport.
   `hidden` is kept as a fallback for browsers without clip support. */
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: 'Sarkar', 'Trebuchet MS', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

a { color: inherit; }
::selection { background: var(--orange); color: #fff; }
input, button, textarea, select { font-family: inherit; }
img { max-width: 100%; }

/* ---------- keyframes ---------- */
@keyframes ectf-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ectf-float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes ectf-float2 { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-20px) rotate(-6deg); } }
@keyframes ectf-spin   { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes ectf-steam  { 0% { opacity: 0; transform: translateY(6px) scaleY(.85); } 40% { opacity: .85; } 100% { opacity: 0; transform: translateY(-14px) scaleY(1.15); } }
@keyframes ectf-bob    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

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

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url('../assets/texture/grain.svg');
  background-size: 200px; opacity: .05; mix-blend-mode: multiply;
}

/* ---------- reveal on scroll ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- shared ---------- */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
}
.kicker img, .kicker svg { flex: none; display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  text-decoration: none; border-radius: 999px; cursor: pointer;
  font-weight: 800; border: 3px solid var(--brown);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 6px 6px 0 var(--brown); padding: 17px 32px; font-size: 18.5px; }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--brown); }
.btn-ghost { background: transparent; color: var(--brown); padding: 17px 32px; font-size: 18.5px; }
.btn-ghost:hover { background: var(--brown); color: var(--cream); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(243,234,217,.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: padding .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 22px rgba(68,40,17,.16); }

.nav-wave {
  position: absolute; left: 0; right: 0; bottom: 0; transform: translateY(99%);
  height: clamp(22px,3vw,40px); pointer-events: none; line-height: 0;
}
.nav-wave svg { width: 100%; height: 100%; display: block; }

.nav-inner {
  max-width: 1220px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav.is-scrolled .nav-inner { padding-top: 8px; padding-bottom: 8px; }

.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  padding: 9px 16px; font-size: 16px; font-weight: 600;
  text-decoration: none; border-radius: 999px; transition: background .15s ease;
}
.nav-links a:hover { background: rgba(68,40,17,.08); }
.nav-cta {
  margin-left: 6px; padding: 12px 24px !important; font-weight: 700 !important;
  background: var(--orange); color: #fff; border: 2.5px solid var(--brown);
  box-shadow: 3px 3px 0 var(--brown);
  transition: transform .14s ease, box-shadow .14s ease !important;
}
.nav-cta:hover { background: var(--orange) !important; transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--brown); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 10px;
  background: var(--cream); border: 2.5px solid var(--brown); border-radius: 12px;
  box-shadow: 3px 3px 0 var(--brown); cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; border-radius: 2px; background: var(--brown); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 799px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    padding: 6px 0 16px; gap: 6px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { text-align: center; font-size: 18px; padding: 13px 16px; }
  .nav-cta { margin-left: 0; }
  .nav-inner { flex-wrap: wrap; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden; background: var(--cream);
  padding: clamp(48px,6vw,92px) 0 clamp(40px,5vw,78px);
}
.hero-pattern {
  position: absolute; top: -90px; right: -120px; width: 520px; height: 520px; border-radius: 50%;
  background-image: url('../assets/patterns/star-brown-cream.svg'); background-size: 230px;
  opacity: .13; animation: ectf-spin 90s linear infinite;
}
.hero .float-star   { position: absolute; left: 3%;  top: 20%;   width: 54px; opacity: .9;  animation: ectf-spin 26s linear infinite; }
.hero .float-plus   { position: absolute; left: 46%; top: 7%;    width: 30px; opacity: .8;  animation: ectf-bob 5s ease-in-out infinite; }
.hero .float-diamond{ position: absolute; right: 7%; bottom: 8%; width: 34px; opacity: .85; animation: ectf-float 7s ease-in-out infinite; }

.hero-grid {
  position: relative; max-width: 1220px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,64px); align-items: center;
}
.hero-copy { flex: 1 1 460px; min-width: 320px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px;
  border: 2.5px solid var(--brown); border-radius: 999px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: #fff5; box-shadow: 3px 3px 0 rgba(68,40,17,.18);
}
.hero-badge img { width: 16px; }

.hero h1 {
  margin: 22px 0 0; font-size: clamp(44px,7.4vw,104px);
  line-height: .96; font-weight: 800; letter-spacing: -.022em;
}
.hero h1 .accent { color: var(--orange); }

.hero-sub {
  margin: 30px 0 0; font-size: clamp(18px,2.1vw,22px); line-height: 1.55;
  max-width: 560px; color: var(--ink-soft); font-weight: 500;
}
.underline-note { position: relative; white-space: nowrap; font-weight: 700; color: var(--brown); }
.underline-note svg { position: absolute; left: 0; bottom: -9px; width: 100%; height: 12px; }
.hero-sub strong { color: var(--brown); }

.hero-pills { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 0; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  border-radius: 14px; font-weight: 700; font-size: 15.5px; box-shadow: 3px 3px 0 var(--brown);
}
.pill img { width: 16px; }
.pill-green { background: var(--green); color: var(--cream); }
.pill-blue  { background: var(--blue); color: #fff; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 34px 0 0; }

.hero-art { flex: 1 1 360px; min-width: 300px; display: flex; justify-content: center; }
.hero-card-wrap { position: relative; width: min(420px,86vw); }
.hero-card {
  position: relative; background: var(--orange); border: 3.5px solid var(--brown);
  border-radius: 38px; box-shadow: 12px 12px 0 var(--brown);
  padding: 30px 28px 34px; transform: rotate(-2.2deg);
}
.hero-card-strip {
  height: 34px; border-radius: 14px;
  background-image: url('../assets/patterns/star-cream-orange.svg'); background-size: 128px;
  border: 2.5px solid var(--brown); margin-bottom: 24px;
}
.hero-card-logo { display: block; width: 84%; margin: 8px auto 6px; filter: drop-shadow(4px 4px 0 rgba(68,40,17,.35)); }

.hero-cup { position: absolute; right: -26px; top: -30px; width: 96px; height: 96px; animation: ectf-float 6s ease-in-out infinite; }
.hero-cup img:first-child { width: 100%; display: block; }
.hero-cup .steam { position: absolute; left: 24px; top: -26px; width: 38px; animation: ectf-steam 2.6s ease-in-out infinite; }
.hero-bean { position: absolute; left: -30px; bottom: 34px; width: 46px; animation: ectf-float2 7s ease-in-out infinite; }
.hero-star-sm { position: absolute; left: -18px; top: 30%; width: 30px; animation: ectf-spin 30s linear infinite; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--brown); border-top: 3px solid var(--brown); border-bottom: 3px solid var(--brown);
  overflow: hidden; padding: 15px 0;
}
.marquee-track { display: flex; width: max-content; animation: ectf-marquee 32s linear infinite; white-space: nowrap; }
.marquee-track span {
  display: inline-flex; align-items: center; font-size: 21px; font-weight: 800;
  letter-spacing: .02em; color: var(--cream); text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; background: var(--cream); padding: clamp(64px,8vw,118px) 0; }
.about .float-ring { position: absolute; right: 6%; top: 64px; width: 60px; opacity: .9; animation: ectf-bob 6s ease-in-out infinite; }

.about-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-wrap: wrap; gap: clamp(34px,5vw,72px); align-items: center;
}
.about-copy { flex: 1 1 420px; min-width: 300px; }
.about .kicker { color: var(--orange); }
.about h2 { margin: 16px 0 0; font-size: clamp(34px,5.4vw,66px); line-height: 1; font-weight: 800; letter-spacing: -.02em; }
.about-lede { margin: 26px 0 0; font-size: clamp(18px,2.1vw,23px); line-height: 1.55; color: var(--ink-soft); font-weight: 500; max-width: 540px; }

.stats { display: flex; gap: 30px; flex-wrap: wrap; margin: 36px 0 0; }
.stat-num { font-size: clamp(38px,5vw,56px); font-weight: 800; line-height: 1; }
.stat-num sup { font-size: .5em; }
.stat-label { font-size: 15px; font-weight: 700; letter-spacing: .04em; color: var(--brown); margin-top: 4px; }
.stat-divider { width: 2.5px; background: rgba(68,40,17,.2); border-radius: 2px; }

.about-art { flex: 1 1 320px; min-width: 280px; display: flex; justify-content: center; }
.about-tile {
  position: relative; width: min(380px,84vw); aspect-ratio: 1/1;
  border: 3.5px solid var(--brown); border-radius: 34px; box-shadow: 10px 10px 0 var(--brown);
  overflow: hidden; background: var(--green);
}
.about-tile-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/patterns/coffee-gold-green.svg');
  background-size: 130px; opacity: .4; mix-blend-mode: soft-light;
}
.about-tile-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 24px;
}
.about-tile-inner img { width: 118px; animation: ectf-bob 5s ease-in-out infinite; }
.about-tile-inner p { margin: 18px 0 0; color: var(--cream); font-size: 22px; font-weight: 800; line-height: 1.2; max-width: 240px; }

/* ============================================================
   PROGRAM
   ============================================================ */
.program {
  position: relative; background: var(--green);
  padding: clamp(88px,9vw,144px) 0; color: var(--cream); overflow: hidden;
}
.program-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/patterns/star-gold-green.svg');
  background-size: 240px; opacity: .16;
}
.wave-top, .wave-bottom {
  position: absolute; left: 0; width: 100%;
  height: clamp(38px,4.6vw,66px); z-index: 1; display: block;
}
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

.program-inner { position: relative; z-index: 2; }
.program-head { text-align: center; max-width: 760px; margin: 0 auto; }
.program .kicker { color: var(--gold); }
.program .kicker img { width: 18px; }
.program h2 { margin: 14px 0 0; font-size: clamp(36px,6vw,72px); line-height: .98; font-weight: 800; letter-spacing: -.02em; }
.program h2 .accent { color: var(--gold); }
.program-head p { margin: 20px 0 0; font-size: clamp(17px,2vw,21px); line-height: 1.5; color: #e7dcc6; font-weight: 500; }

.program-cards { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 54px; justify-content: center; }
.program-card {
  flex: 1 1 300px; min-width: 280px; max-width: 380px;
  background: var(--cream); color: var(--brown);
  border: 3.5px solid var(--brown); border-radius: 30px;
  box-shadow: 9px 9px 0 var(--brown-dark); padding: 32px 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-card:hover { transform: translate(-3px,-3px); box-shadow: 13px 13px 0 var(--brown-dark); }
.program-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.program-icon {
  display: inline-flex; width: 74px; height: 74px; align-items: center; justify-content: center;
  border-radius: 20px; border: 3px solid var(--brown);
}
.program-icon-gold   { background: var(--gold); }
.program-icon-orange { background: var(--orange); }
.program-icon-blue   { background: var(--blue); }
.program-icon img { width: 42px; height: 42px; }
.program-tag {
  font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; background: var(--brown); color: var(--cream);
}
.program-card h3 { margin: 0; font-size: 26px; font-weight: 800; line-height: 1.08; }
.program-card p { margin: 12px 0 0; font-size: 16.5px; line-height: 1.5; color: var(--ink-soft); font-weight: 500; }

/* ============================================================
   APPLY
   ============================================================ */
.apply { position: relative; background: var(--cream); padding: clamp(64px,8vw,120px) 0; overflow: hidden; }
.apply .float-star    { position: absolute; left: 5%;  top: 70px;    width: 44px; opacity: .85; animation: ectf-spin 34s linear infinite; }
.apply .float-diamond { position: absolute; right: 6%; bottom: 80px; width: 38px; opacity: .85; animation: ectf-float 7s ease-in-out infinite; }

.apply-wrap { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.apply-head { text-align: center; margin-bottom: 40px; }
.apply .kicker { color: var(--orange); }
.apply .kicker img { width: 16px; }
.apply h2 { margin: 14px 0 0; font-size: clamp(34px,5.6vw,64px); line-height: 1; font-weight: 800; letter-spacing: -.02em; }
.apply-head p { margin: 16px auto 0; font-size: clamp(17px,2vw,21px); line-height: 1.5; color: var(--ink-soft); font-weight: 500; max-width: 520px; }

.apply-card {
  background: var(--card); border: 3.5px solid var(--brown); border-radius: 34px;
  box-shadow: 10px 10px 0 var(--brown); padding: clamp(24px,4vw,44px);
}

.form-section-label {
  margin: 0 0 12px; font-size: 15px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
}

.tabs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.tab {
  flex: 1 1 190px; padding: 18px 20px; border-radius: 18px;
  border: 3px solid var(--brown); font-size: 18px; font-weight: 800; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  background: var(--cream); color: var(--brown);
  box-shadow: 3px 3px 0 rgba(68,40,17,.2);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.tab .tab-icon { display: inline-block; width: 22px; height: 22px; background: center/contain no-repeat; }
.tab[aria-pressed="true"] { background: var(--brown); color: var(--cream); box-shadow: 5px 5px 0 var(--orange); }
.tab:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.tab-sponsor .tab-icon { background-image: url('../assets/motifs/star-gold.svg'); }
.tab-exhibit .tab-icon { background-image: url('../assets/motifs/cup-brown.svg'); }
.tab-exhibit[aria-pressed="true"] .tab-icon { background-image: url('../assets/motifs/cup-cream.svg'); }

.fields { display: flex; flex-wrap: wrap; gap: 18px 20px; }
.field { flex: 1 1 240px; min-width: 200px; }
.field-full { display: block; margin-top: 22px; }
.field span, .field-full span { display: block; font-size: 14px; font-weight: 700; margin: 0 0 7px; }
.field .optional, .field-full .optional { display: inline; font-weight: 500; color: var(--ink-muted); margin: 0; }

.field input, .field-full input, .field-full textarea {
  width: 100%; padding: 14px 16px; border: 2.5px solid var(--brown); border-radius: 14px;
  background: var(--field); font-size: 16px; color: var(--brown); font-weight: 500; outline: none;
}
.field-full textarea { resize: vertical; }
.field input:focus, .field-full input:focus, .field-full textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(227,110,74,.27);
}

.form-branch { margin-top: 26px; padding-top: 26px; border-top: 2px dashed rgba(68,40,17,.33); }
.form-branch[hidden] { display: none; }
.chip-label { margin: 0 0 12px; font-size: 14px; font-weight: 700; }
.chip-label + .chips + .chip-label { margin-top: 22px; }
.chips { display: flex; gap: 11px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 11px 17px;
  border-radius: 999px; border: 2.5px solid var(--brown);
  font-size: 15px; font-weight: 700; cursor: pointer;
  background: transparent; color: var(--brown);
  transition: background .12s ease, color .12s ease, box-shadow .12s ease;
}
.chip:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.chips-orange .chip[aria-pressed="true"] { background: var(--orange); color: #fff; box-shadow: 3px 3px 0 var(--brown); }
.chips-blue   .chip[aria-pressed="true"] { background: var(--blue);   color: #fff; box-shadow: 3px 3px 0 var(--brown); }
.chips-green  .chip[aria-pressed="true"] { background: var(--green);  color: #fff; box-shadow: 3px 3px 0 var(--brown); }

.form-footer { margin-top: 30px; text-align: center; }
.btn-submit { padding: 17px 40px; font-size: 19px; background: var(--orange); color: #fff; box-shadow: 6px 6px 0 var(--brown); }
.btn-submit:hover:not(:disabled) { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--brown); }
.btn-submit:disabled { opacity: .65; cursor: wait; }
.form-note { margin: 14px 0 0; font-size: 14.5px; color: var(--ink-muted); font-weight: 600; }
.form-error { margin: 14px 0 0; font-size: 15.5px; color: #a33; font-weight: 700; }
.form-error a { color: inherit; }

/* honeypot — hidden from humans, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

.form-success { text-align: center; padding: 24px 8px; }
.form-success[hidden] { display: none; }
.success-check {
  width: 96px; height: 96px; margin: 0 auto; border-radius: 50%;
  background: var(--green); border: 3.5px solid var(--brown); box-shadow: 5px 5px 0 var(--brown);
  display: flex; align-items: center; justify-content: center;
}
.success-check span { font-size: 52px; color: var(--cream); line-height: 1; }
.form-success h3 { margin: 26px 0 0; font-size: clamp(28px,4vw,40px); font-weight: 800; line-height: 1.05; }
.form-success p { margin: 14px auto 0; font-size: 18px; color: var(--ink-soft); font-weight: 500; max-width: 400px; }
.btn-reset {
  margin-top: 26px; padding: 13px 28px; font-size: 16px; font-weight: 700;
  border-radius: 999px; background: transparent; color: var(--brown);
  border: 2.5px solid var(--brown); cursor: pointer;
}
.btn-reset:hover { background: var(--brown); color: var(--cream); }

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors {
  position: relative; background: var(--band); padding: clamp(56px,7vw,100px) 0;
  border-top: 3px solid var(--brown); border-bottom: 3px solid var(--brown);
}
.sponsors-wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; text-align: center; }
.sponsors .kicker { color: var(--green); gap: 12px; }
.sponsors h2 { margin: 14px 0 6px; font-size: clamp(30px,4.6vw,52px); line-height: 1; font-weight: 800; letter-spacing: -.02em; }

.presenting { display: flex; justify-content: center; margin-top: 30px; }
.presenting-card {
  background: var(--brown); border: 3.5px solid var(--brown); border-radius: 24px;
  box-shadow: 8px 8px 0 rgba(68,40,17,.28); padding: 32px 54px; transform: rotate(-1.2deg);
}
.presenting-name { font-size: clamp(38px,6vw,66px); font-weight: 800; letter-spacing: .14em; color: var(--cream); line-height: 1; }
.presenting-tag { display: block; font-size: 13px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* dynamic sponsor logo grid — populated from data/sponsors.json */
.sponsor-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 40px;
}
.sponsor-grid:empty { display: none; }
.sponsor-item {
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 3px solid var(--brown); border-radius: 20px;
  box-shadow: 5px 5px 0 rgba(68,40,17,.25);
  padding: 20px 28px; width: 200px; height: 110px;
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
a.sponsor-item:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(68,40,17,.25); }
.sponsor-item img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.sponsor-item .sponsor-name { font-size: 19px; font-weight: 800; color: var(--brown); text-align: center; line-height: 1.15; }

.sponsors-cta { margin-top: 34px; }
.btn-sponsor { padding: 14px 28px; font-size: 17px; background: var(--orange); color: #fff; box-shadow: 5px 5px 0 var(--brown); }
.btn-sponsor:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--brown); }

/* ============================================================
   MAP
   ============================================================ */
.map {
  position: relative; background: var(--blue);
  padding: clamp(88px,9vw,140px) 0; color: var(--cream); overflow: hidden;
}
.map-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/patterns/diamond-cream-blue.svg');
  background-size: 250px; opacity: .14;
}
.map-inner { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.map-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.map .kicker { color: var(--brown); }
.map .kicker img { width: 15px; }
.map h2 { margin: 14px 0 0; font-size: clamp(34px,5.6vw,64px); line-height: 1; font-weight: 800; letter-spacing: -.02em; color: var(--cream); }
.map-head p { margin: 16px 0 0; font-size: clamp(17px,2vw,20px); line-height: 1.5; color: #eaf1f5; font-weight: 500; }

.map-board {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16/10;
  background: var(--cream); border: 3.5px solid var(--brown); border-radius: 34px;
  box-shadow: 12px 12px 0 #2c4a5a; overflow: hidden;
}
.map-board-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/patterns/star-brown-cream.svg');
  background-size: 180px; opacity: .08;
}
.map-path { position: absolute; inset: 0; width: 100%; height: 100%; }

.zone {
  position: absolute; border: 3px solid var(--brown); border-radius: 20px;
  box-shadow: 5px 5px 0 var(--brown); padding: 14px 16px;
}
.zone img { display: block; margin-bottom: 6px; }
.zone-title { font-size: clamp(15px,2vw,19px); font-weight: 800; line-height: 1.05; }
.zone-sub { font-size: 12.5px; font-weight: 600; opacity: .9; }

.zone-lab    { left: 5%;  top: 12%;    width: 30%; min-width: 150px; background: var(--orange); transform: rotate(-2deg); color: #fff; }
.zone-lab img { width: 34px; }
.zone-stage  { right: 5%; top: 9%;     width: 30%; min-width: 150px; background: var(--green); transform: rotate(2deg); color: var(--cream); }
.zone-stage img { width: 32px; }
.zone-tent   { left: 33%; top: 44%;    width: 28%; min-width: 140px; background: var(--gold); transform: rotate(-1.5deg); color: var(--brown); padding: 13px 15px; }
.zone-tent img { width: 28px; }
.zone-tent .zone-sub { opacity: .85; }
.zone-roast  { left: 6%;  bottom: 11%; width: 29%; min-width: 145px; background: var(--card); transform: rotate(1.5deg); color: var(--brown); padding: 13px 15px; }
.zone-roast img { width: 28px; }
.zone-roast .zone-sub { color: var(--ink-soft); opacity: 1; }
.zone-food   { right: 6%; bottom: 12%; width: 28%; min-width: 140px; background: var(--blue); transform: rotate(-2deg); color: #fff; padding: 13px 15px; }
.zone-food img { width: 26px; }

.map-entrance {
  position: absolute; left: 50%; bottom: 3%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brown); color: var(--cream); border-radius: 999px; padding: 9px 20px;
  font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(0,0,0,.25); white-space: nowrap;
}
.map-caption { text-align: center; margin: 26px 0 0; font-size: 15px; font-weight: 600; color: #eaf1f5; }

/* mobile: absolute-positioned zones overlap below ~620px → stack them */
@media (max-width: 620px) {
  .map-board { aspect-ratio: auto; padding: 20px 18px 22px; }
  .map-path { display: none; }
  .zone { position: static; width: 100% !important; min-width: 0; transform: none !important; margin-bottom: 14px; }
  .map-entrance { position: static; transform: none; display: flex; justify-content: center; margin: 4px auto 0; width: max-content; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { position: relative; background: var(--cream); padding: clamp(64px,8vw,116px) 0; overflow: hidden; }
.faq .float-star { position: absolute; right: 7%; top: 80px; width: 46px; opacity: .85; animation: ectf-spin 30s linear infinite; }
.faq-wrap { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.faq-head { text-align: center; margin-bottom: 44px; }
.faq .kicker { color: var(--orange); }
.faq .kicker img { width: 16px; }
.faq h2 { margin: 14px 0 0; font-size: clamp(34px,5.6vw,60px); line-height: 1; font-weight: 800; letter-spacing: -.02em; }

.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--card); border: 3px solid var(--brown); border-radius: 22px;
  box-shadow: 5px 5px 0 var(--brown); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer;
  text-align: left; font-family: inherit;
}
.faq-q:focus-visible { outline: 3px solid var(--blue); outline-offset: -4px; border-radius: 22px; }
.faq-q .q-text { font-size: clamp(17px,2.2vw,22px); font-weight: 800; color: var(--brown); line-height: 1.2; }
.faq-sign {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: #fff; border: 2.5px solid var(--brown);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; line-height: 1;
}
.faq-a { margin: 0; padding: 0 26px 24px; font-size: 17.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 500; }
.faq-a[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--brown); color: var(--cream); overflow: hidden; }
.footer-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/patterns/coffee-gold-brown.svg');
  background-size: 150px; opacity: .16;
}
.footer-cta {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: clamp(64px,8vw,104px) 28px clamp(30px,4vw,50px); text-align: center;
}
.footer-cta .steam { width: 46px; margin: 0 auto 6px; display: block; animation: ectf-steam 2.8s ease-in-out infinite; }
.footer-cta h2 { margin: 0; font-size: clamp(38px,7vw,88px); line-height: .98; font-weight: 800; letter-spacing: -.02em; }
.btn-footer {
  margin-top: 32px; padding: 18px 40px; font-size: 20px;
  background: var(--gold); color: var(--brown); border-color: var(--cream);
  box-shadow: 6px 6px 0 rgba(0,0,0,.3);
}
.btn-footer:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 rgba(0,0,0,.3); }

.footer-cols {
  position: relative; max-width: 1120px; margin: 0 auto;
  padding: clamp(34px,4vw,48px) 28px clamp(30px,4vw,44px);
  display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between;
  border-top: 2px solid rgba(243,234,217,.2);
}
.footer-brand { flex: 1 1 260px; min-width: 240px; }
.footer-brand img { height: 50px; width: auto; display: block; }
.footer-brand p { margin: 16px 0 0; font-size: 15px; line-height: 1.55; color: #d9c9b0; font-weight: 500; max-width: 280px; }

.footer-col { flex: 0 1 auto; min-width: 180px; }
.footer-col-title {
  margin: 0 0 14px; font-size: 13px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.footer-contact a { display: block; font-size: 16px; font-weight: 600; text-decoration: none; color: var(--cream); margin-bottom: 9px; }
.footer-contact a:hover { color: var(--gold); }

.footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 600; text-decoration: none; color: var(--cream);
  transition: transform .14s ease;
}
.footer-social a:hover { transform: translateX(3px); }
.social-icon {
  display: inline-flex; flex: none; width: 34px; height: 34px;
  align-items: center; justify-content: center; border-radius: 11px;
  border: 2.5px solid var(--brown); box-shadow: 2.5px 2.5px 0 rgba(0,0,0,.28);
}
.social-ig { background: var(--orange); }
.social-tt { background: var(--blue); }
.social-fb { background: var(--green); }

.footer-legal { position: relative; background: var(--brown-dark); padding: 20px 28px; text-align: center; }
.footer-legal p { margin: 0; font-size: 14px; font-weight: 600; color: #d9c9b0; letter-spacing: .02em; }
.footer-legal .vantage { color: var(--gold); font-weight: 800; letter-spacing: .08em; }

/* ============================================================
   Small-screen fine-tuning
   ============================================================ */
@media (max-width: 480px) {
  .wrap, .nav-inner, .hero-grid, .about-grid, .apply-wrap, .sponsors-wrap, .map-inner, .faq-wrap { padding-left: 20px; padding-right: 20px; }
  .hero-cup { right: -8px; width: 76px; height: 76px; }
  .hero-bean { left: -12px; }
  .hero-star-sm { left: -8px; }
  .btn-primary, .btn-ghost { width: 100%; }
  .tab { flex-basis: 100%; }
  .presenting-card { padding: 26px 34px; }
  .sponsor-item { width: calc(50% - 11px); min-width: 140px; padding: 16px 18px; height: 96px; }
  .stats { gap: 20px; }
}
