/* ==================================================================
   THE GUNNERY GROUP — design system
   Built by SSDev · ss-dev.co.uk
   ================================================================== */

:root {
  /* palette — tinted neutrals, never pure black/white */
  --ink:        #08090A;
  --ink-2:      #0E1013;
  --panel:      #14171B;
  --panel-2:    #1B1F24;
  --line:       #262B31;
  --line-2:     #333940;

  --brass:      #C9963C;
  --brass-lit:  #E8BE6B;
  --brass-deep: #8A6420;

  /* Gunlicence.co.za brand orange, sampled from their roundel logo */
  --orange:     #F36F24;
  --orange-lit: #FF8D4C;
  --orange-deep:#8E3D10;
  --ink-brand:  #231F20;

  --paper:      #F3F1EC;
  --mute:       #9AA0A8;
  --mute-2:     #6C737C;

  --ok:         #4E9E6A;
  --warn:       #D4A03C;
  --bad:        #C0574B;
  --info:       #5A8CB8;

  --ff-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --ff-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --nav-h: 74px;
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 20px 60px -20px rgba(0,0,0,.75);
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* UA default gives buttons a white background — without this reset the cart
   button renders as a white box with white text and reads as blank */
button { font: inherit; color: inherit; cursor: pointer; background: transparent; border: 0; }

::selection { background: var(--brass); color: var(--ink); }

:focus-visible { outline: 2px solid var(--brass-lit); outline-offset: 3px; border-radius: 2px; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--ink);
  display: grid; place-items: center; transition: opacity .7s var(--ease), visibility .7s;
}
#preloader.gone { opacity: 0; visibility: hidden; }
.pre-mark { text-align: center; }
.pre-rings { width: 84px; height: 84px; margin: 0 auto 20px; position: relative; }
.pre-rings span {
  position: absolute; inset: 0; border: 1px solid var(--line-2); border-radius: 50%;
  animation: ringPulse 2s var(--ease) infinite;
}
.pre-rings span:nth-child(2) { inset: 14px; border-color: var(--brass-deep); animation-delay: .18s; }
.pre-rings span:nth-child(3) { inset: 28px; border-color: var(--brass); animation-delay: .36s; }
.pre-rings::after { content: ''; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--brass-lit); border-radius: 50%; }
@keyframes ringPulse { 0%,100% { opacity: .25; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }
.pre-word { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .32em; color: var(--mute-2); text-transform: uppercase; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(44px, 6vw, 80px) 0; }
.section--panel { background: var(--ink-2); }

.eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass); display: flex; align-items: center; gap: 12px; margin: 0 0 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--brass-deep); flex: none; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.08; margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 3.9vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
h4 { font-size: 1rem; }
p { margin: 0 0 1.1em; color: #D7D5D0; overflow-wrap: break-word; }
/* long unbroken tokens (domains, refs) must never widen the page */
p .mono, p code, .prop .mono { overflow-wrap: anywhere; }
.lead { font-size: clamp(1.02rem, 1.35vw, 1.2rem); color: #C9C7C2; max-width: 62ch; }
.dim { color: var(--mute); }
.small { font-size: .875rem; }
.mono { font-family: var(--ff-mono); }

.gold { color: var(--brass-lit); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--r); border: 1px solid transparent;
  font-family: var(--ff-body); font-weight: 600; font-size: .93rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s, box-shadow .35s;
  will-change: transform; text-align: center;
}
.btn--primary { background: var(--brass); color: #1A1206; box-shadow: 0 10px 30px -12px rgba(201,150,60,.7); }
.btn--primary:hover { background: var(--brass-lit); box-shadow: 0 16px 40px -12px rgba(232,190,107,.75); }
.btn--ghost { border-color: var(--line-2); color: var(--paper); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-lit); background: rgba(201,150,60,.06); }
.btn--sm { padding: 10px 18px; font-size: .82rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .38; pointer-events: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 900;
  display: flex; align-items: center;
  background: rgba(8,9,10,0); border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
}
.nav.solid { background: rgba(8,9,10,.9); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav__in { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__txt b { font-family: var(--ff-display); font-size: 1rem; letter-spacing: .01em; font-weight: 600; }
.brand__txt span { font-family: var(--ff-mono); font-size: 8.5px; letter-spacing: .2em; color: var(--mute-2); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 9px 13px; font-size: .875rem; color: #C6C4C0; border-radius: var(--r-sm);
  transition: color .25s, background .25s; white-space: nowrap;
}
.nav__links a:hover, .nav__links a.on { color: var(--brass-lit); background: rgba(201,150,60,.07); }
.nav__cta { display: flex; align-items: center; gap: 10px; flex: none; }

.cartbtn { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; background: transparent; border: 1px solid var(--line-2); border-radius: var(--r); color: var(--paper); font-size: .85rem; font-weight: 500; transition: border-color .25s, color .25s; }
.cartbtn:hover { border-color: var(--brass); color: var(--brass-lit); }
.cartbtn__n { min-width: 19px; height: 19px; padding: 0 5px; display: grid; place-items: center; background: var(--brass); color: #1A1206; border-radius: 10px; font-family: var(--ff-mono); font-size: 11px; font-weight: 700; }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { display: block; width: 17px; height: 1.5px; background: var(--paper); transition: transform .3s var(--ease), opacity .3s; }
.burger.on span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .burger { display: inline-flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,11,13,.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--pad) 26px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .32s var(--ease);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav__cta .btn { display: none; }
}

/* ---------- real brand marks ---------- */
/* Gunnery's roundel is dark-on-white artwork; inverting gives a clean white
   mark on the dark UI without touching their logo geometry. */
.mark-gunnery { filter: invert(1) brightness(1.9); }
.brand__mark--img { width: 36px; height: 36px; object-fit: contain; flex: none; }

/* Gunlicence's roundel is a JPEG with a white ground, so it sits on a light
   chip — the way a real brand lockup would present it. */
.logochip {
  background: #F7F5F1; border-radius: var(--r); padding: 10px 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.logochip img { height: 54px; width: auto; object-fit: contain; }
.logochip--sm img { height: 34px; }

.brandband { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .brandband { grid-template-columns: 1fr; } }
.brandcard { display: flex; gap: 20px; align-items: flex-start; }
.brandcard__l { flex: none; }
.brandcard h3 { margin-bottom: 4px; }
.brandcard .mono { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute-2); display: block; margin-bottom: 10px; }
@media (max-width: 480px) { .brandcard { flex-direction: column; gap: 14px; } }

.partners { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.partners .logochip img { height: 30px; }

/* ---------- Gunlicence (orange) section theme ---------- */
.theme-gl { --brass: var(--orange); --brass-lit: var(--orange-lit); --brass-deep: var(--orange-deep); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kb 26s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.14) translate3d(-1.4%,-1.2%,0); } }
@media (prefers-reduced-motion: reduce) { .hero__bg img { animation: none; } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,10,.86) 0%, rgba(8,9,10,.44) 34%, rgba(8,9,10,.82) 78%, var(--ink) 100%),
    radial-gradient(78% 62% at 22% 46%, rgba(201,150,60,.14), transparent 62%);
}
.hero__in { position: relative; z-index: 2; width: 100%; padding-top: 40px; padding-bottom: 60px; }
.hero h1 { max-width: 17ch; margin-bottom: 24px; }
.hero .lead { max-width: 54ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 46px; }

.hero__strip { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); padding-top: 26px; }
.hero__strip div { padding-right: 34px; margin-right: 34px; border-right: 1px solid var(--line); }
.hero__strip div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__strip b { display: block; font-family: var(--ff-display); font-size: 1.5rem; color: var(--brass-lit); line-height: 1.2; }
.hero__strip span { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute-2); }
@media (max-width: 640px) {
  .hero__strip div { padding-right: 20px; margin-right: 20px; margin-bottom: 14px; }
  .hero__strip b { font-size: 1.2rem; }
}

/* page hero (inner pages) */
.phero { position: relative; padding: calc(var(--nav-h) + clamp(60px,9vw,110px)) 0 clamp(46px,6vw,74px); overflow: hidden; }
.phero__bg { position: absolute; inset: 0; z-index: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,10,.9), rgba(8,9,10,.72) 50%, var(--ink) 100%); }
.phero__in { position: relative; z-index: 2; }
.phero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 20ch; }
.phero .lead { max-width: 60ch; margin-bottom: 0; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 22px; }
/* grid children default to min-width:auto, which lets a wide table push the
   whole page sideways — this is the fix for that class of horizontal scroll */
.grid > * { min-width: 0; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; position: relative; overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s;
}
.card:hover { border-color: var(--line-2); background: var(--panel-2); }
.card--link:hover { transform: translateY(-3px); border-color: var(--brass-deep); }

.pathcard { display: flex; flex-direction: column; min-height: 340px; padding: 0; overflow: hidden; }
.pathcard__img { position: relative; height: 190px; overflow: hidden; flex: none; }
.pathcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pathcard:hover .pathcard__img img { transform: scale(1.05); }
.pathcard__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,23,27,.96)); }
.pathcard__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.pathcard__body h3 { margin-bottom: 8px; }
.pathcard__body p { font-size: .93rem; margin-bottom: 18px; }
.pathcard__go { margin-top: auto; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
.pathcard:hover .pathcard__go { gap: 14px; }

/* price / package cards */
.pkg { display: flex; flex-direction: column; }
.pkg__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.pkg__price { font-family: var(--ff-mono); font-size: 1.35rem; color: var(--brass-lit); white-space: nowrap; font-weight: 500; }
.pkg__meta { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-2); margin-bottom: 14px; }
.pkg__kit { list-style: none; margin: 0 0 22px; padding: 0; }
.pkg__kit li { position: relative; padding-left: 18px; font-size: .89rem; color: #BFBDB8; margin-bottom: 6px; }
.pkg__kit li::before { content: ''; position: absolute; left: 0; top: .62em; width: 6px; height: 1px; background: var(--brass); }
@media (max-width: 560px) {
  .pkg__kit li { margin-bottom: 10px; }
  .pkg__kit li a, p a.gold { display: inline-block; min-height: 30px; padding: 4px 0; }
}
.pkg .btn { margin-top: auto; }

.tag {
  display: inline-block; padding: 4px 10px; border-radius: 100px; font-family: var(--ff-mono);
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; flex: none;
  background: rgba(201,150,60,.13); color: var(--brass-lit); border: 1px solid rgba(201,150,60,.3);
}

/* ---------- steps ---------- */
.steps { counter-reset: s; display: grid; gap: 2px; }
.step { display: grid; grid-template-columns: 78px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: var(--ff-mono); font-size: 2.4rem; color: var(--line-2); line-height: 1; letter-spacing: -.04em; }
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 10px; font-size: .95rem; }
@media (max-width: 660px) { .step { grid-template-columns: 1fr; gap: 8px; } .step__n { font-size: 1.6rem; } }

/* ---------- table ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel); }
table.t { width: 100%; border-collapse: collapse; min-width: 560px; }
table.t th, table.t td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .9rem; }
table.t th { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute-2); font-weight: 500; background: var(--ink-2); }
table.t tr:last-child td { border-bottom: 0; }
table.t td.num { font-family: var(--ff-mono); color: var(--brass-lit); white-space: nowrap; }

/* ---------- accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; background: none; border: 0; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; font-family: var(--ff-display); font-size: 1.02rem; font-weight: 500; }
.acc__head:hover { color: var(--brass-lit); }
.acc__ico { flex: none; width: 22px; height: 22px; position: relative; }
.acc__ico::before, .acc__ico::after { content: ''; position: absolute; left: 50%; top: 50%; background: var(--brass); transition: transform .32s var(--ease); }
.acc__ico::before { width: 12px; height: 1px; margin: 0 0 0 -6px; }
.acc__ico::after { width: 1px; height: 12px; margin: -6px 0 0 0; }
.acc__item.open .acc__ico::after { transform: rotate(90deg); }
.acc__body { display: none; padding: 0 0 24px; max-width: 76ch; }
.acc__item.open .acc__body { display: block; }

/* ---------- footer ---------- */
.foot { background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(50px,6vw,76px) 0 30px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h4 { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute-2); margin-bottom: 16px; font-weight: 500; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 9px; }
.foot a { font-size: .9rem; color: #BFBDB8; transition: color .25s; display: inline-block; min-height: 24px; }
@media (max-width: 560px) {
  /* comfortable tap targets on a phone */
  .foot li { margin-bottom: 4px; }
  .foot a { padding: 6px 0; min-height: 34px; }
}
.foot a:hover { color: var(--brass-lit); }
.foot__bar { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--mute-2); }
.foot__bar a { color: var(--mute); }
.ssdev { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; }
.ssdev b { color: var(--brass); letter-spacing: .16em; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); }
.rv.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1 !important; transform: none !important; } }

/* ---------- toast ---------- */
/* bottom-LEFT so toasts can never sit on top of the cart or booking CTA,
   which live in the bottom-right of their drawers */
#toasts { position: fixed; left: 18px; bottom: 18px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; max-width: calc(100vw - 36px); pointer-events: none; }
.toast {
  background: var(--panel-2); border: 1px solid var(--line-2); border-left: 3px solid var(--brass);
  border-radius: var(--r); padding: 13px 18px; font-size: .875rem; box-shadow: var(--shadow);
  animation: tin .4s var(--ease); max-width: 340px;
}
.toast.ok { border-left-color: var(--ok); }
.toast.bad { border-left-color: var(--bad); }
@keyframes tin { from { opacity: 0; transform: translateX(18px); } }

/* ---------- modal / drawer shell ---------- */
.ov { position: fixed; inset: 0; z-index: 950; display: none; }
.ov.open { display: block; }
.ov__bd { position: absolute; inset: 0; background: rgba(4,5,6,.82); backdrop-filter: blur(5px); animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }

/* ---------- utility ---------- */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.center { text-align: center; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.stack > * + * { margin-top: 14px; }
.flex { display: flex; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 100px; background: transparent;
  font-size: .82rem; color: #C6C4C0; transition: .25s var(--ease); white-space: nowrap;
}
.chip:hover { border-color: var(--brass-deep); color: var(--brass-lit); }
.chip.on { background: var(--brass); border-color: var(--brass); color: #1A1206; font-weight: 600; }

.notice {
  border: 1px solid var(--line); border-left: 3px solid var(--brass); background: rgba(201,150,60,.05);
  border-radius: var(--r); padding: 16px 20px; font-size: .89rem; color: #C9C7C2;
}
.notice b { color: var(--brass-lit); }

/* form fields */
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--ink-2); border: 1px solid var(--line-2);
  border-radius: var(--r); color: var(--paper); font-family: var(--ff-body); font-size: .93rem;
  transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); outline: none; }
.field textarea { resize: vertical; min-height: 96px; }
.field .err { color: var(--bad); font-size: .78rem; margin-top: 5px; display: none; }
.field.bad input, .field.bad select { border-color: var(--bad); }
.field.bad .err { display: block; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .f2 { grid-template-columns: 1fr; } }
