/* ============================================================
   RARE CANDY COLLECTIBLES — Demo B · "Lights On"
   The neon sign at night; a bright professional shop by day.
   Palette drawn from the shop's real neon sign.
   Greenshields Studio demo — not production.
   ============================================================ */

:root {
  --night: #0b0a13;          /* hero + footer night */
  --night-soft: #171528;
  --white: #ffffff;
  --paper: #f7f6fb;          /* cool near-white, tinted to the sign's violet */
  --ink: #1c1730;
  --ink-soft: #4f4964;
  --orange: #c93e08;         /* flame — primary action (AA on white) */
  --orange-bright: #f1500f;  /* flame — glows, accents on dark */
  --amber: #ffb300;
  --blue: #2b3bd6;           /* wing blue — links, secondary */
  --blue-bright: #4d6bff;
  --purple: #6d1fb8;         /* lettering violet */
  --cyan: #8fe0f7;           /* claw ice — decor on dark only */
  --line: #e4e1ee;
  --line-dark: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --font-display: "Gabarito", system-ui, sans-serif;
  --font-body: "Wix Madefor Text", system-ui, sans-serif;
  --shadow-card: 0 2px 6px rgba(28, 23, 48, 0.06), 0 14px 34px rgba(28, 23, 48, 0.08);
  --z-sticky: 40;
  --z-overlay: 50;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { color: var(--blue); }

h1, h2, h3 { text-wrap: balance; font-family: var(--font-display); }
p { text-wrap: pretty; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }

.h-section {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 0.4em;
}
.section { padding: clamp(3.6rem, 8vw, 6.2rem) 0; }
.section-lede { color: var(--ink-soft); max-width: 60ch; margin-bottom: 2.6rem; font-size: 1.06rem; }

/* ============================================================
   ANNOUNCEMENT + NAV
   ============================================================ */
.annbar {
  background: var(--orange);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.02em;
}
.annbar a { color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.85rem 0;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand .rc { color: var(--orange); }
.nav-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--orange-bright); }
.nav-cart {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cart:hover { background: var(--orange); transform: translateY(-1px); }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav .wrap { flex-wrap: wrap; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 1.5px solid var(--line);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
  }
  .nav-cart { order: 2; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0.5rem 0 0.3rem;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   HERO — the sign, switched on
   ============================================================ */
.hero {
  position: relative;
  background: var(--night);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("neon-hero.jpg") center right / cover no-repeat;
}
html.js .hero-bg { animation: neon-on 2.4s steps(1, end) both; }
@keyframes neon-on {
  0%   { filter: brightness(0.25) saturate(0.4); }
  8%   { filter: brightness(0.9) saturate(0.95); }
  12%  { filter: brightness(0.3) saturate(0.5); }
  20%  { filter: brightness(1) saturate(1); }
  24%  { filter: brightness(0.45) saturate(0.6); }
  34%  { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1) saturate(1); }
}
@media (prefers-reduced-motion: reduce) {
  html.js .hero-bg { animation: none; }
}
/* readability scrim over the left column */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(11, 10, 19, 0.94) 0%,
    rgba(11, 10, 19, 0.82) 34%,
    rgba(11, 10, 19, 0.25) 58%,
    rgba(11, 10, 19, 0.05) 80%);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  min-height: min(82vh, 780px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
}
.hero-copy { max-width: 34rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(143, 224, 247, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .hero-badge .dot { animation: none; } }
.hero h1 {
  font-size: clamp(2.7rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.hero h1 .glow-orange { color: var(--orange-bright); text-shadow: 0 0 24px rgba(241, 80, 15, 0.55); }
.hero h1 .glow-blue { color: var(--blue-bright); text-shadow: 0 0 24px rgba(77, 107, 255, 0.55); }
.hero-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-bright); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(241, 80, 15, 0.35); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn-outline-light:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

.hero-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-dark);
  background: rgba(11, 10, 19, 0.72);
  backdrop-filter: blur(4px);
}
.hero-strip .wrap {
  min-height: 0;
  padding: 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.4rem;
  align-items: center;
}
.hero-strip span { font-size: 0.86rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.hero-strip b { color: var(--amber); }

@media (max-width: 880px) {
  .hero-bg { background-position: 78% center; }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(11, 10, 19, 0.9) 0%,
      rgba(11, 10, 19, 0.72) 55%,
      rgba(11, 10, 19, 0.45) 100%);
  }
  .hero .wrap { min-height: min(74vh, 620px); align-items: flex-end; padding: 7rem 0 3rem; }
}

/* ============================================================
   PRODUCT CARDS — "fresh in the cabinet"
   ============================================================ */
.cab-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cab-head .all {
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--blue);
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.prod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.prod:hover { transform: translateY(-6px); box-shadow: 0 6px 14px rgba(28,23,48,0.08), 0 24px 48px rgba(28,23,48,0.14); }
.prod-art {
  position: relative;
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.prod-art.tone-orange { background: radial-gradient(circle at 50% 120%, #ffd9c4, #fff1e8); }
.prod-art.tone-blue   { background: radial-gradient(circle at 50% 120%, #ccd6ff, #ecefff); }
.prod-art.tone-purple { background: radial-gradient(circle at 50% 120%, #e2ccf7, #f4ecfd); }
.prod-art.tone-cyan   { background: radial-gradient(circle at 50% 120%, #c8ecf7, #eaf8fd); }
.prod-art svg { width: 46%; height: auto; filter: drop-shadow(0 14px 18px rgba(28, 23, 48, 0.18)); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.prod:hover .prod-art svg { transform: translateY(-5px) rotate(-1.6deg); }
@media (prefers-reduced-motion: reduce) {
  .prod, .prod-art svg { transition: none; }
}
.prod-flag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.prod-flag.f-orange { background: var(--orange); }
.prod-flag.f-blue { background: var(--blue); }
.prod-flag.f-purple { background: var(--purple); }
.prod-flag.f-ink { background: var(--ink); }
.prod-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.prod-name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; line-height: 1.25; }
.prod-meta { font-size: 0.86rem; color: var(--ink-soft); }
.prod-foot {
  margin-top: auto;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.prod-price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.prod-add {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.prod:hover .prod-add { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ============================================================
   CATEGORY TILES — the sign's colours, used functionally
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}
.cat {
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.6rem;
  color: #fff;
  text-decoration: none;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.cat:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(28, 23, 48, 0.22); }
.cat.c-orange { background: linear-gradient(150deg, #e6520f, #a83305); }
.cat.c-blue   { background: linear-gradient(150deg, #3a4de0, #1f2a9e); }
.cat.c-purple { background: linear-gradient(150deg, #7d2ecb, #4d1585); }
.cat.c-ink    { background: linear-gradient(150deg, #29233f, #12101f); }
.cat h3 { font-weight: 800; font-size: 1.35rem; margin-bottom: 0.3rem; }
.cat p { font-size: 0.9rem; opacity: 0.88; max-width: 26ch; }
.cat .go {
  margin-top: auto;
  padding-top: 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cat .go::after { content: "→"; transition: transform 0.25s; }
.cat:hover .go::after { transform: translateX(5px); }
.cat svg {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  opacity: 0.18;
}

/* ============================================================
   GRADE LADDER — "same card, five prices" (CSS radio tabs)
   ============================================================ */
.ladder {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.ladder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 880px) { .ladder-grid { grid-template-columns: 1fr; } }

.ladder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.ladder-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ladder-card > input { position: absolute; opacity: 0; pointer-events: none; }
.ladder-tabs label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ladder-tabs label:hover { border-color: var(--purple); color: var(--purple); }
#g-raw:focus-visible ~ .ladder-tabs .l-raw,
#g-7:focus-visible   ~ .ladder-tabs .l-7,
#g-8:focus-visible   ~ .ladder-tabs .l-8,
#g-9:focus-visible   ~ .ladder-tabs .l-9,
#g-10:focus-visible  ~ .ladder-tabs .l-10 { outline: 3px solid var(--blue-bright); outline-offset: 2px; }

.grade-panel { display: none; }
#g-raw:checked  ~ .panels .p-raw,
#g-7:checked    ~ .panels .p-7,
#g-8:checked    ~ .panels .p-8,
#g-9:checked    ~ .panels .p-9,
#g-10:checked   ~ .panels .p-10 { display: block; }
#g-raw:checked  ~ .ladder-tabs .l-raw,
#g-7:checked    ~ .ladder-tabs .l-7,
#g-8:checked    ~ .ladder-tabs .l-8,
#g-9:checked    ~ .ladder-tabs .l-9,
#g-10:checked   ~ .ladder-tabs .l-10 { border-color: var(--purple); background: var(--purple); color: #fff; }

.grade-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.grade-sub { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.grade-meter {
  height: 12px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.grade-meter i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange-bright));
}
.grade-note { font-size: 0.95rem; color: var(--ink-soft); }
.grade-note b { color: var(--ink); }
.ladder-foot {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}
.trust {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.trust .t-ico {
  width: 3rem; height: 3rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}
.trust .t-ico svg { width: 1.4rem; height: 1.4rem; }
.trust .t-ico.i-orange { background: var(--orange); }
.trust .t-ico.i-blue { background: var(--blue); }
.trust .t-ico.i-purple { background: var(--purple); }
.trust .t-ico.i-ink { background: var(--ink); }
.trust b { font-family: var(--font-display); font-size: 1.02rem; display: block; margin-bottom: 0.15rem; }
.trust span { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   IG BAND — night again
   ============================================================ */
.igband {
  background: var(--night);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.igband::before, .igband::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}
.igband::before { background: var(--orange-bright); top: -180px; left: -120px; }
.igband::after { background: var(--blue); bottom: -200px; right: -120px; }
.igband .wrap { position: relative; z-index: 1; }
.igband h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 800; margin-bottom: 0.5rem; }
.igband p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.8rem; }

/* ============================================================
   FOOTER — night
   ============================================================ */
footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line-dark);
  padding: 3.2rem 0 2rem;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.foot-grid img { width: 150px; mix-blend-mode: screen; margin-bottom: 0.9rem; }
.foot-grid h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
}
.foot-grid ul { list-style: none; display: grid; gap: 0.5rem; }
.foot-grid a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.foot-grid a:hover { color: var(--amber); }
.foot-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INNER-PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--night);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 8vw, 5.4rem) 0;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(110px);
  opacity: 0.4;
  top: -220px; right: -140px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 56ch; font-size: 1.06rem; }

/* about */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.prose { max-width: 66ch; }
.prose p + p { margin-top: 1.05em; }
.prose .lead { font-size: 1.16rem; color: var(--ink); font-weight: 500; }
.prose p { color: var(--ink-soft); }

/* values band */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.5rem;
}
.value .v-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  margin-bottom: 0.9rem;
}
.value h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.35rem; }
.value p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; gap: 1.05rem; }
.form-row { display: grid; gap: 1.05rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #cfcadd;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #6b6580; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(43, 59, 214, 0.14);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.form .btn { justify-self: start; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); }
.form-success {
  border: 1.5px solid #1c9c53;
  border-radius: 10px;
  background: #ecfaf1;
  color: #14572f;
  font-weight: 600;
  padding: 1rem 1.2rem;
  display: none;
}
.form-success.show { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.contact-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.contact-card > p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.4rem; }
.contact-list { list-style: none; display: grid; gap: 1.2rem; margin-top: 2rem; }
.contact-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: start; }
.contact-list b { font-family: var(--font-display); display: block; }
.contact-list span { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   REVEALS — enhancement only
   ============================================================ */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

.demo-ribbon {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: var(--z-overlay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28, 23, 48, 0.88);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  pointer-events: none;
}
