@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --cream: #faf7f2;
  --cream2: #f3ede3;
  --cream3: #ebe3d5;
  --ink: #1a1510;
  --ink2: #2e2820;
  --muted: #7a6e62;
  --border: #e0d8cc;
  --gold: #c8860a;
  --gold2: #e8a020;
  --terracotta: #c04a2a;
  --sage: #4a7c59;
  --sky: #2a6090;
  --radius: 12px;
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Outfit', sans-serif;
}

html, body { background: var(--cream); color: var(--ink); font-family: var(--fb); line-height: 1.6; }

/* ── LAYOUT ── */
.page-wrap { display: flex; flex-direction: column; min-height: 100vh; }
.con { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.sec { padding: 4rem 0; }
.g2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.3rem; }
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px,1fr)); gap: 1.3rem; }
.g4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px,1fr)); gap: 1rem; }

/* ── NAV ── */
nav {
  background: var(--ink2);
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 100;
}
.nav-in {
  max-width: 1300px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: .4rem; height: 58px;
}
.logo { display: flex; align-items: center; gap: .6rem; cursor: pointer; margin-right: auto; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; background: var(--gold); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-weight: 900; font-size: .75rem; color: var(--ink2);
  font-style: italic; letter-spacing: -.5px; flex-shrink: 0;
}
.logo-txt { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; color: var(--cream); letter-spacing: .02em; }
.nbtn {
  padding: .32rem .7rem; border-radius: 4px; cursor: pointer; font-size: .76rem;
  font-weight: 500; color: rgba(250,247,242,.6); transition: all .15s;
  border: none; background: none; font-family: var(--fb); letter-spacing: .03em;
  text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center;
}
.nbtn:hover { color: var(--cream); background: rgba(255,255,255,.07); }
.nbtn.act { color: var(--gold2); font-weight: 600; }
.nbtn.adm { color: var(--terracotta); border: 1px solid rgba(192,74,42,.4); }
.nbtn.adm:hover { background: rgba(192,74,42,.1); color: var(--terracotta); }
.cart-btn {
  position: relative; background: rgba(200,134,10,.15); border: 1px solid rgba(200,134,10,.4);
  border-radius: 5px; padding: .3rem .7rem; font-size: .76rem; color: var(--gold2);
  cursor: pointer; font-family: var(--fb); font-weight: 600;
}
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--terracotta); color: #fff;
  border-radius: 50%; width: 16px; height: 16px; font-size: .55rem;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ── BUTTONS ── */
.bp {
  background: var(--gold); color: var(--ink2); padding: .72rem 1.7rem;
  border-radius: var(--radius); font-weight: 700; cursor: pointer; border: none;
  font-family: var(--fb); font-size: .88rem; transition: all .2s; display: inline-block; letter-spacing: .02em;
}
.bp:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,134,10,.25); }
.bs {
  background: transparent; color: var(--ink); padding: .72rem 1.7rem;
  border-radius: var(--radius); font-weight: 600; cursor: pointer;
  border: 2px solid var(--ink); font-family: var(--fb); font-size: .88rem; transition: all .2s; display: inline-block;
}
.bs:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.bsm { padding: .38rem 1rem !important; font-size: .76rem !important; }
.bs-light { border-color: rgba(250,247,242,.3); color: var(--cream); }
.bs-light:hover { background: rgba(255,255,255,.1); color: var(--cream); }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; transition: all .22s; cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,21,16,.04);
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,21,16,.1); }
.card-nocursor { cursor: default; }
.card-nocursor:hover { transform: none; }

/* ── BADGES ── */
.bdg { display: inline-block; padding: .2rem .58rem; border-radius: 4px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.ba { background: rgba(200,134,10,.12); color: var(--gold); border: 1px solid rgba(200,134,10,.3); }
.bb { background: rgba(42,96,144,.1); color: var(--sky); border: 1px solid rgba(42,96,144,.25); }
.bg { background: rgba(74,124,89,.1); color: var(--sage); border: 1px solid rgba(74,124,89,.25); }
.br { background: rgba(192,74,42,.1); color: var(--terracotta); border: 1px solid rgba(192,74,42,.25); }

/* ── SECTION HEADERS ── */
.slbl {
  font-family: var(--fb); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: var(--gold); margin-bottom: .45rem;
  display: flex; align-items: center; gap: .5rem;
}
.slbl::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.stitle { font-family: var(--fh); font-size: clamp(1.7rem,4vw,2.5rem); font-weight: 900; color: var(--ink); line-height: 1.1; }
.ssub { color: var(--muted); font-size: .9rem; margin-top: .55rem; max-width: 560px; }

/* ── PAGE HEADER ── */
.pghdr { padding: 2.8rem 0 2rem; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.pgtag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); margin-bottom: .55rem; }
.pghdr h1 { font-family: var(--fh); font-size: clamp(2rem,5vw,3.2rem); font-weight: 900; color: var(--ink); line-height: 1.05; }
.pghdr p { color: var(--muted); margin-top: .6rem; font-size: .94rem; }

/* ── HERO ── */
.hero { min-height: 520px; display: flex; align-items: stretch; background: var(--ink2); overflow: hidden; }
.hero-left {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem 4rem 4rem; position: relative;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,134,10,.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-right {
  width: 420px; flex-shrink: 0; background: var(--cream2);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.hero-right-inner { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; justify-content: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,134,10,.15); border: 1px solid rgba(200,134,10,.35);
  border-radius: 4px; padding: .28rem .85rem;
  font-size: .68rem; font-weight: 700; color: var(--gold2);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; font-family: var(--fb);
}
.htitle { font-family: var(--fh); font-size: clamp(2.4rem,5.5vw,4rem); font-weight: 900; line-height: 1.0; color: var(--cream); margin-bottom: 1.2rem; }
.htitle em { color: var(--gold2); font-style: italic; }
.hdesc { font-size: .97rem; color: rgba(250,247,242,.65); max-width: 480px; margin-bottom: 2rem; line-height: 1.75; }
.hbtns { display: flex; gap: .8rem; flex-wrap: wrap; }
.hstats { display: flex; gap: 2rem; margin-top: 2.8rem; padding-top: 2.5rem; border-top: 1px solid rgba(250,247,242,.12); flex-wrap: wrap; }
.sv { font-family: var(--fh); font-size: 1.8rem; font-weight: 900; color: var(--gold2); line-height: 1; }
.sl2 { font-size: .72rem; color: rgba(250,247,242,.5); font-family: var(--fb); margin-top: .1rem; text-transform: uppercase; letter-spacing: .05em; }

/* ── HERO EVENT CARDS ── */
.hev { background: #fff; border-radius: 10px; padding: .9rem 1rem; border-left: 3px solid var(--gold); box-shadow: 0 2px 10px rgba(26,21,16,.08); cursor: pointer; transition: transform .18s; }
.hev:hover { transform: translateX(3px); }
.hev-d { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .18rem; font-weight: 600; }
.hev-t { font-family: var(--fh); font-size: .92rem; font-weight: 700; color: var(--ink); }
.hev-l { font-size: .72rem; color: var(--muted); margin-top: .15rem; }

/* ── MARQUEE ── */
.mqwrap { overflow: hidden; padding: .8rem 0; background: var(--ink); }
.mqtrack { display: flex; gap: .9rem; animation: mq 30s linear infinite; width: max-content; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mqchip { background: rgba(200,134,10,.15); border: 1px solid rgba(200,134,10,.3); border-radius: 3px; padding: .34rem .85rem; font-size: .72rem; white-space: nowrap; color: var(--gold2); font-family: var(--fb); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ── NEWS ── */
.ntitle { font-family: var(--fh); font-size: 1.05rem; font-weight: 700; line-height: 1.25; color: var(--ink); margin-bottom: .42rem; }
.nexc { font-size: .82rem; color: var(--muted); line-height: 1.65; flex: 1; }
.nrm { font-size: .76rem; color: var(--gold); font-weight: 700; padding-top: .65rem; letter-spacing: .03em; }
.fn-big { display: flex; gap: 1.5rem; padding: 1.8rem; }
.fn-icon { font-size: 5rem; flex-shrink: 0; width: 140px; display: flex; align-items: center; justify-content: center; background: var(--cream2); border-radius: 10px; }
.fn-body { flex: 1; display: flex; flex-direction: column; }
.fn-title { font-family: var(--fh); font-size: 1.4rem; font-weight: 900; color: var(--ink); line-height: 1.2; margin-bottom: .6rem; }

/* ── DIRECTORY ── */
.dlogoph { width: 44px; height: 44px; border-radius: 8px; background: var(--cream2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.dhdr { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .6rem; }
.dname { font-family: var(--fh); font-size: .97rem; font-weight: 700; color: var(--ink); }
.dcat { font-size: .72rem; color: var(--muted); font-weight: 500; }
.ddesc { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.dtags { display: flex; gap: .28rem; flex-wrap: wrap; margin-top: .65rem; }
.tag { background: var(--cream2); color: var(--muted); padding: .14rem .44rem; border-radius: 4px; font-size: .66rem; font-weight: 500; }
.dfoot { display: flex; justify-content: space-between; align-items: center; margin-top: .85rem; padding-top: .85rem; border-top: 1px solid var(--border); }
.rv { font-weight: 700; color: var(--gold); font-size: .8rem; }
.rc { color: var(--muted); font-size: .7rem; }
.vbdg { font-size: .69rem; color: var(--sage); font-weight: 700; display: flex; align-items: center; gap: .2rem; }
.frib { position: absolute; top: 10px; right: 10px; background: var(--gold); color: var(--ink2); font-size: .58rem; font-weight: 800; padding: .15rem .46rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--fb); }

/* ── PLACEHOLDERS ── */
.cphsm { width: 100%; aspect-ratio: 16/7; background: var(--cream2); border-radius: 8px; margin-bottom: .85rem; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; }
.cph { width: 100%; aspect-ratio: 16/9; background: var(--cream2); border-radius: 8px; margin-bottom: .85rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }

/* ── EVENTS ── */
.etitle { font-family: var(--fh); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.eprice { font-family: var(--fh); font-weight: 700; color: var(--gold); font-size: .95rem; }
.pbar { height: 5px; background: var(--cream2); border-radius: 3px; overflow: hidden; margin: .3rem 0 .7rem; }
.pfill { height: 100%; border-radius: 3px; }

/* ── FILTERS & SEARCH ── */
.flts { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.fbtn { padding: .38rem .95rem; border-radius: 100px; border: 2px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; font-family: var(--fb); font-size: .76rem; transition: all .18s; font-weight: 500; }
.fbtn.act { background: var(--gold); color: var(--ink2); border-color: var(--gold); font-weight: 700; }
.sin { flex: 1; min-width: 200px; background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: .6rem .9rem; color: var(--ink); font-family: var(--fb); font-size: .85rem; outline: none; transition: border-color .2s; }
.sin:focus { border-color: var(--gold); }
.selin { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: .6rem .9rem; color: var(--ink); font-family: var(--fb); font-size: .85rem; outline: none; cursor: pointer; }

/* ── SHOP ── */
.pcrd { position: relative; display: flex; flex-direction: column; }
.pbdg { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: #fff; font-size: .62rem; font-weight: 800; padding: .16rem .68rem; border-radius: 100px; text-transform: uppercase; white-space: nowrap; font-family: var(--fb); letter-spacing: .06em; }
.pname { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: .4rem 0; }
.pprice { font-family: var(--fh); font-size: 1.9rem; font-weight: 900; color: var(--gold); margin-bottom: .8rem; line-height: 1; }
.pfeats { list-style: none; display: flex; flex-direction: column; gap: .34rem; margin-bottom: 1rem; flex: 1; }
.pfeats li { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.pfeats li::before { content: "✓"; color: var(--sage); font-weight: 800; flex-shrink: 0; }

/* ── TEAM ── */
.tav { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--terracotta)); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-weight: 900; font-size: .95rem; color: #fff; margin-bottom: .7rem; font-style: italic; }
.tname { font-family: var(--fh); font-size: .97rem; font-weight: 700; color: var(--ink); }
.trole { font-size: .72rem; color: var(--gold); font-weight: 600; margin-bottom: .32rem; text-transform: uppercase; letter-spacing: .04em; }
.tbio { font-size: .78rem; color: var(--muted); }

/* ── CONTACT FORM ── */
.flbl { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.finp, .ftxt { background: #fff; border: 2px solid var(--border); border-radius: 8px; padding: .7rem .9rem; color: var(--ink); font-family: var(--fb); font-size: .88rem; outline: none; width: 100%; transition: border-color .2s; }
.finp:focus, .ftxt:focus { border-color: var(--gold); }
.ftxt { resize: vertical; min-height: 110px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.fgrp { display: flex; flex-direction: column; gap: .35rem; }
.cion { width: 44px; height: 44px; background: rgba(200,134,10,.1); border: 1px solid rgba(200,134,10,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cdet h3 { font-family: var(--fh); font-weight: 700; margin-bottom: .15rem; font-size: .93rem; }
.cdet p { color: var(--muted); font-size: .8rem; }

/* ── DETAIL PAGES ── */
.backbtn { display: inline-flex; align-items: center; gap: .35rem; color: var(--muted); font-size: .8rem; cursor: pointer; margin-bottom: 1.6rem; padding: .36rem .78rem; border-radius: 6px; border: 1px solid var(--border); background: #fff; transition: all .18s; font-family: var(--fb); text-decoration: none; }
.backbtn:hover { color: var(--ink); border-color: var(--ink); }
.dhero { border-radius: 16px; overflow: hidden; margin-bottom: 2rem; background: var(--cream2); display: flex; align-items: center; justify-content: center; font-size: 5rem; min-height: 220px; border: 1px solid var(--border); }
.dtitle { font-family: var(--fh); font-size: clamp(1.6rem,4vw,2.6rem); font-weight: 900; color: var(--ink); line-height: 1.1; margin-bottom: .85rem; }
.dmeta { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 2px solid var(--border); }
.dmi { display: flex; align-items: center; gap: .32rem; font-size: .8rem; color: var(--muted); }
.dbody { font-size: .96rem; line-height: 1.85; color: var(--ink2); }
.dbody p { margin-bottom: 1.1rem; }
.dlayout { display: grid; grid-template-columns: 1fr 300px; gap: 2.2rem; }
.sidebar { display: flex; flex-direction: column; gap: 1rem; }
.scard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; }
.scard h3 { font-family: var(--fh); font-weight: 700; font-size: .95rem; margin-bottom: .85rem; color: var(--ink); border-bottom: 1px solid var(--border); padding-bottom: .65rem; }
.mlbl { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .15rem; }
.mval { font-size: .84rem; color: var(--ink); }

/* ── ADMIN ── */
.admin-layout { display: flex; min-height: calc(100vh - 58px); }
.admin-sb { width: 225px; background: var(--ink2); border-right: 3px solid var(--gold); padding: 1rem; display: flex; flex-direction: column; gap: .14rem; flex-shrink: 0; }
.admin-sbt { font-family: var(--fb); font-weight: 700; font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(250,247,242,.35); padding: .35rem .6rem; margin-bottom: .1rem; }
.admin-sbi { padding: .55rem .65rem; border-radius: 6px; cursor: pointer; font-size: .8rem; color: rgba(250,247,242,.55); transition: all .15s; display: flex; align-items: center; gap: .52rem; border: none; background: none; font-family: var(--fb); width: 100%; text-align: left; text-decoration: none; }
.admin-sbi:hover { color: var(--cream); background: rgba(255,255,255,.08); }
.admin-sbi.act { color: var(--gold2); background: rgba(200,134,10,.12); font-weight: 600; border-left: 2px solid var(--gold); }
.admin-con { flex: 1; padding: 2rem; background: var(--cream); overflow-y: auto; }
.admin-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; flex-wrap: wrap; gap: .8rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.admin-title { font-family: var(--fh); font-size: 1.5rem; font-weight: 900; color: var(--ink); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(115px,1fr)); gap: .9rem; margin-bottom: 1.4rem; }
.admin-stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: .95rem; border-top: 3px solid var(--gold); }
.admin-sv { font-family: var(--fh); font-size: 1.7rem; font-weight: 900; color: var(--gold); }
.admin-sk { font-size: .7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.tbl th { text-align: left; padding: .65rem .9rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: var(--cream2); border-bottom: 1px solid var(--border); }
.tbl td { padding: .75rem .9rem; font-size: .82rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: var(--cream); }
.abtn { padding: .24rem .58rem; border-radius: 5px; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; font-size: .7rem; transition: all .15s; font-family: var(--fb); }
.abtn:hover { color: var(--ink); border-color: var(--ink); }
.abtn.del:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,21,16,.6); backdrop-filter: blur(4px); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal { background: #fff; border-radius: var(--radius); padding: 2rem; width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; border-top: 3px solid var(--gold); }
.modal h2 { font-family: var(--fh); font-weight: 900; font-size: 1.3rem; margin-bottom: 1.4rem; color: var(--ink); }
.modal-foot { display: flex; gap: .7rem; justify-content: flex-end; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }

/* ── STATS BAR ── */
.statrow { background: var(--ink2); padding: 2.5rem 2rem; display: flex; border-radius: var(--radius); overflow: hidden; }
.statitem { flex: 1; text-align: center; padding: .8rem; border-right: 1px solid rgba(250,247,242,.08); }
.statitem:last-child { border-right: none; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); background: var(--ink2); border: 2px solid var(--gold); color: var(--gold2); padding: .6rem 1.3rem; border-radius: 6px; font-weight: 600; z-index: 3000; font-size: .8rem; animation: tin .3s ease; white-space: nowrap; font-family: var(--fb); pointer-events: none; }
@keyframes tin { from { opacity: 0; transform: translateX(-50%) translateY(14px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ── MISC ── */
.ruled { border: none; border-top: 2px solid var(--border); margin: 3rem 0; }

/* ── FOOTER ── */
site-footer { background: var(--ink2); border-top: 3px solid var(--gold); padding: 1.5rem; text-align: center; color: rgba(250,247,242,.4); font-size: .73rem; font-family: var(--fb); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-right { width: 100%; }
  .dlayout { grid-template-columns: 1fr; }
  .fn-big { flex-direction: column; }
  .fn-icon { width: 100%; height: 100px; }
  .admin-sb { display: none; }
}
@media (max-width: 640px) {
  .hero-left { padding: 2.5rem 1.5rem; }
  .frow { grid-template-columns: 1fr; }
  .nav-in { gap: .2rem; }
  .nbtn { font-size: .68rem; padding: .28rem .48rem; }
}

/* ── PARTNER CARDS ── */
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transition: all .2s;
  min-width: 140px;
}
.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,134,10,.12);
}

/* ── MOBILE NAV ── */
.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  padding: .3rem .5rem;
  margin-left: auto;
  line-height: 1;
}
#mob-menu {
  display: none;
  flex-direction: column;
  background: var(--ink2);
  border-bottom: 3px solid var(--gold);
  padding: .5rem;
}
#mob-menu.open { display: flex; }
#mob-menu a {
  color: rgba(250,247,242,.75);
  padding: .65rem .9rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  font-family: var(--fb);
}
#mob-menu a:hover { background: rgba(255,255,255,.07); color: var(--cream); }

@media (max-width: 768px) {
  .burger-btn { display: flex !important; align-items: center; }
  .desktop-nav-link { display: none !important; }
}
