/* ============================================================
   OXO PlayCraft — Design System
   Style: Trust & Authority (B2B, elegant, accessible)
   Audience: decision-makers 40–60 — large type, high contrast
   ============================================================ */

:root {
  /* Brand */
  --brand: #E8722A;          /* OXO orange (accent / CTA) */
  --brand-strong: #C4561A;   /* orange for text on light (AA) */
  --brand-soft: #FBEDE2;     /* tint background */
  --teal: #0E5C57;           /* trust secondary */
  --teal-soft: #E5F0EE;

  /* Neutrals (warm) */
  --ink: #1B1E22;            /* primary text */
  --ink-soft: #4C525B;       /* secondary text */
  --ink-faint: #6E747D;      /* meta text */
  --bg: #FBFAF8;             /* page background */
  --surface: #FFFFFF;
  --surface-alt: #F4F1EC;
  --line: #E6E0D7;
  --line-strong: #D6CFC3;

  /* Category accents */
  --c-tramp: #E8722A;
  --c-soft: #1F8A8A;
  --c-arcade: #7A4FCB;
  --c-vr: #2563C9;
  --c-adv: #C24B3A;

  /* System */
  --ok: #1E7D43;
  --ring: #2563C9;

  /* Type */
  --font-head: "Lexend", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / shape */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(27,30,34,.06), 0 1px 3px rgba(27,30,34,.05);
  --shadow-md: 0 6px 18px rgba(27,30,34,.08), 0 2px 6px rgba(27,30,34,.05);
  --shadow-lg: 0 18px 50px rgba(27,30,34,.13);
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;       /* 17px base, large for readability */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-strong); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--brand); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 4rem); }
.section--alt { background: var(--surface-alt); }
.section--ink { background: var(--ink); color: #F3F1ED; }
.center { text-align: center; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }
.measure { max-width: 56ch; }
.measure-wide { max-width: 70ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-strong);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); display: inline-block; }
.section--ink .eyebrow { color: #F0A877; }
.section--ink h2, .section--ink h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-decoration: none; min-height: 48px;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-strong); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }
.btn--wa { background: #1FA855; color: #fff; }
.btn--wa:hover { background: #178043; color:#fff; transform: translateY(-1px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.06rem; min-height: 54px; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--ring); outline-offset: 2px;
}

/* ---------- Header ---------- */
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color:#fff; padding: .7rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; color:#fff; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,248,.88); backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.brand:hover { color: inherit; }
.brand__mark { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -.01em; line-height: 1; }
.brand__sub { display:block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: auto; list-style: none; padding: 0; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  color: var(--ink-soft); text-decoration: none; padding: .55rem .7rem; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--ink); background: var(--surface-alt); }
.nav__links a[aria-current="page"] { color: var(--brand-strong); font-weight: 600; }
/* dropdown */
.nav__drop { position: relative; }
.nav__drop-trigger {
  display: inline-flex; align-items: center; gap: .3rem; font-family: var(--font-head);
  font-weight: 500; font-size: .98rem; color: var(--ink-soft); background: none; border: none;
  padding: .55rem .7rem; border-radius: 8px; cursor: pointer; transition: color .15s, background .15s;
}
.nav__drop-trigger:hover, .nav__drop-trigger--active { color: var(--ink); background: var(--surface-alt); }
.nav__drop-trigger--active { color: var(--brand-strong); font-weight: 600; }
.nav__drop-trigger svg { transition: transform .2s; }
.nav__submenu {
  list-style: none; padding: .5rem; margin: 0; position: absolute; top: calc(100% + .4rem); left: 0;
  min-width: 290px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); display: grid; gap: 2px; z-index: 120;
  opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .18s ease;
}
.nav__drop:hover .nav__submenu,
.nav__drop:focus-within .nav__submenu,
.nav__drop[data-dropopen="true"] .nav__submenu { opacity: 1; transform: none; pointer-events: auto; }
.nav__drop:hover .nav__drop-trigger svg,
.nav__drop[data-dropopen="true"] .nav__drop-trigger svg { transform: rotate(180deg); }
.nav__submenu a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem .85rem; border-radius: 9px; color: var(--ink) !important; font-weight: 500;
}
.nav__submenu a:hover { background: var(--surface-alt); }
.nav__submenu a em { font-style: normal; font-size: .8rem; color: var(--ink-faint); background: var(--surface-alt); padding: .1rem .5rem; border-radius: 999px; }
.nav__sub-all { border-top: 1px solid var(--line); margin-top: 3px; padding-top: 3px; }
.nav__sub-all a { color: var(--brand-strong) !important; font-weight: 600; }
.nav__sub-all a em { display: none; }
.nav__sub-all svg { width: 16px; height: 16px; }

.nav__cta { display: flex; align-items: center; gap: .6rem; margin-left: .6rem; }
.nav__toggle { display: none; margin-left: auto; background: none; border: 1.5px solid var(--line-strong); border-radius: 9px; width: 48px; height: 46px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 26px; height: 26px; color: var(--ink); }

@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__links, .nav__cta {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 1rem clamp(1.1rem,4vw,2.5rem);
    gap: .2rem; margin: 0; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s ease;
  }
  .nav__cta { inset: auto 0 auto 0; top: auto; border-bottom: none; padding-top: 0; flex-direction: column; }
  .nav[data-open="true"] .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav[data-open="true"] .nav__cta { transform: none; opacity: 1; pointer-events: auto; position: static; box-shadow: none; }
  .nav__links a { padding: .85rem .6rem; font-size: 1.05rem; }
  .nav__links { box-shadow: none; }
  .nav__cta .btn { width: 100%; }
  /* dropdown becomes inline on mobile */
  .nav__drop-trigger { width: 100%; justify-content: space-between; padding: .85rem .6rem; font-size: 1.05rem; }
  .nav__submenu { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; border: none; min-width: 0; padding: 0 0 .4rem 1rem; }
  .nav__submenu a { padding: .7rem .6rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #F3F1ED; }
.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .9; }
.hero__grad { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(232,114,42,.32), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(14,92,87,.42), transparent 55%),
    linear-gradient(180deg, rgba(20,22,26,.55), rgba(20,22,26,.82)); }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero h1 { color: #fff; max-width: 18ch; }
.hero h1 .hl { color: #FBB47A; }
.hero__lead { color: #E3DFD8; font-size: clamp(1.12rem, 1.8vw, 1.4rem); max-width: 52ch; margin-top: 1.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero__stat b { font-family: var(--font-head); font-size: clamp(1.7rem,3vw,2.3rem); font-weight: 700; color: #fff; display: block; line-height: 1; }
.hero__stat span { font-size: .92rem; color: #C9C4BC; margin-top: .35rem; display: block; }

/* ---------- Generic cards & grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card--pad { padding: 1.6rem; }

/* Feature card */
.feature { padding: 1.7rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature__ic { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-strong); margin-bottom: 1.1rem; }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); }

/* ---------- Category cards ---------- */
.cat-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; text-decoration: none; color: inherit; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.cat-card__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; color: #fff; overflow: hidden; }
.cat-card__media .ico { width: 64px; height: 64px; opacity: .96; position: relative; z-index: 2; }
.cat-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(0,0,0,.12)); z-index: 1; }
.cat-card__num { position: absolute; top: 12px; left: 14px; z-index: 3; font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: rgba(255,255,255,.85); letter-spacing: .05em; }
.cat-card__count { position: absolute; top: 12px; right: 14px; z-index: 3; background: rgba(0,0,0,.32); color:#fff; font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; backdrop-filter: blur(4px); }
.cat-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.cat-card__body h3 { margin-bottom: .45rem; }
.cat-card__body p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.cat-card__link { margin-top: 1rem; font-family: var(--font-head); font-weight: 600; color: var(--brand-strong); display: inline-flex; align-items: center; gap: .4rem; font-size: .98rem; }
.cat-card:hover .cat-card__link { gap: .65rem; }

/* ---------- Attraction (product) cards ---------- */
.prod-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr; } }

.prod { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .18s, border-color .2s; }
.prod:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--line-strong); }
.prod__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.prod__ph { display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--ink-faint); }
.prod__ph svg { width: 34px; height: 34px; opacity: .55; }
.prod__ph span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.prod__accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.prod__tags { position: absolute; bottom: 10px; left: 10px; display: flex; gap: .4rem; flex-wrap: wrap; }
.tag { background: rgba(27,30,34,.78); color: #fff; font-size: .72rem; font-weight: 600; padding: .22rem .55rem; border-radius: 6px; backdrop-filter: blur(3px); }
.prod__body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.prod__body h3 { font-size: 1.12rem; line-height: 1.25; margin-bottom: .7rem; }
.prod__meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .86rem; color: var(--ink-faint); margin-bottom: .85rem; }
.prod__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.prod__specs { list-style: none; padding: 0; margin: 0 0 1rem; border-top: 1px solid var(--line); }
.prod__specs li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.prod__specs dt, .prod__specs .k { color: var(--ink-faint); }
.prod__specs .v { color: var(--ink); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.prod__price { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; padding-top: .9rem; }
.prod__price .lbl { font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-faint); }
.prod__price .amt { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--teal); font-variant-numeric: tabular-nums; }
.prod__cta { margin-top: 1rem; }
.prod__cta a { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--brand-strong); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.prod__cta a:hover { gap: .55rem; }
.prod__cta a svg, .cat-card__link svg, .crumbs svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Subcategory band */
.subhead { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin: 2.6rem 0 1.3rem; padding-bottom: .7rem; border-bottom: 2px solid var(--line); }
.subhead h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.subhead .count { color: var(--ink-faint); font-size: .92rem; font-weight: 600; }
.subhead--accent { border-color: currentColor; }

/* ---------- Filter bar ---------- */
.filterbar { position: sticky; top: 74px; z-index: 40; background: rgba(251,250,248,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); padding: .9rem 0; }
.filterbar__inner { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.search { flex: 1; min-width: 220px; position: relative; }
.search input { width: 100%; padding: .75rem 1rem .75rem 2.7rem; border: 1.5px solid var(--line-strong); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; background: var(--surface); color: var(--ink); min-height: 48px; }
.search svg { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-faint); }
.chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { font-family: var(--font-head); font-weight: 500; font-size: .92rem; padding: .6rem 1rem; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--ink-soft); cursor: pointer; min-height: 44px; transition: .15s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.noresults { text-align: center; padding: 3rem 1rem; color: var(--ink-faint); }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 1.3rem; grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr;} }
.step { padding: 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); position: relative; }
.step__n { counter-increment: step; font-family: var(--font-head); font-weight: 700; font-size: 1rem; width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 1rem; }
.step__n::before { content: counter(step,decimal-leading-zero); }
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
@media (max-width:700px){ .statband{ grid-template-columns: repeat(2,1fr);} }
.statband b { font-family: var(--font-head); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 700; color: var(--brand); display: block; line-height: 1; }
.statband span { color: var(--ink-soft); font-size: .96rem; margin-top: .5rem; display: block; }
.section--ink .statband b { color: #FBB47A; }
.section--ink .statband span { color: #C9C4BC; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--brand-strong); font-weight: 400; flex-shrink: 0; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--ink), #2a2e34); color: #fff; border-radius: 22px; padding: clamp(2.2rem,5vw,3.6rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 85% 10%, rgba(232,114,42,.3), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#DDD8D1; max-width: 50ch; margin: 1rem auto 0; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Contact / forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px){ .form-grid{ grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); }
.field label .req { color: var(--brand-strong); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem .95rem; border: 1.5px solid var(--line-strong);
  border-radius: 10px; background: var(--surface); color: var(--ink); min-height: 50px; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ring); }
.field .hint { font-size: .85rem; color: var(--ink-faint); }
.form-note { font-size: .9rem; color: var(--ink-faint); margin-top: 1rem; }

.contact-cols { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 880px){ .contact-cols{ grid-template-columns: 1fr; } }
.infocard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.infocard + .infocard { margin-top: 1.2rem; }
.infoitem { display: flex; gap: .9rem; align-items: flex-start; padding: .7rem 0; }
.infoitem svg { width: 22px; height: 22px; color: var(--brand-strong); flex-shrink: 0; margin-top: 3px; }
.infoitem b { font-family: var(--font-head); display: block; font-size: .98rem; }
.infoitem a, .infoitem span { color: var(--ink-soft); text-decoration: none; }
.infoitem a:hover { color: var(--brand-strong); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .9rem; color: var(--ink-faint); padding-block: 1.1rem; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--brand-strong); }
.crumbs span { margin-inline: .45rem; color: var(--line-strong); }

/* page header band */
.pagehead { background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.pagehead__inner { padding-block: clamp(1.5rem, 4vw, 2.8rem) clamp(2rem,5vw,3rem); }
.pagehead h1 { max-width: 20ch; }
.pagehead .lead { margin-top: 1rem; }
.pagehead__metarow { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.6rem; }
.pagehead__metarow .m b { font-family: var(--font-head); font-size: 1.4rem; color: var(--ink); display:block; line-height:1; }
.pagehead__metarow .m span { font-size: .86rem; color: var(--ink-faint); }
.accent-bar { height: 5px; width: 64px; border-radius: 3px; margin-bottom: 1.3rem; }

/* prose */
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); max-width: 68ch; }
.prose h2 { margin: 2.2rem 0 1rem; }
.prose h3 { margin: 1.6rem 0 .6rem; }
.prose ul { margin: 0 0 1.2rem 1.2rem; color: var(--ink-soft); max-width: 66ch; }
.prose li { margin-bottom: .5rem; }

/* values list */
.checklist { list-style: none; padding: 0; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--ok); flex-shrink: 0; margin-top: 3px; }
.checklist b { color: var(--ink); font-family: var(--font-head); }

/* ---------- Formats / sample projects ---------- */
.format-sec { border-top: 1px solid var(--line); }
.format-sec:nth-child(even) { background: var(--surface-alt); }
.format-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
@media (max-width: 760px){ .format-head{ grid-template-columns: 1fr; } }
.format-invest { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 260px; }
.format-invest .lbl { font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-faint); }
.format-invest .amt { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; line-height: 1.1; margin-top: .25rem; }
.format-body { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2.5rem; margin-top: 2rem; align-items: start; }
@media (max-width: 820px){ .format-body{ grid-template-columns: 1fr; gap: 1.6rem; } }
.format-specs .prod__specs li:first-child { border-top: none; }

/* ---------- Project cards ---------- */
.proj { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s; }
.proj:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proj__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; }
.proj__area { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.34); color: #fff; font-size: .8rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; backdrop-filter: blur(4px); }
.proj__body { padding: 1.3rem 1.4rem 1.5rem; }
.proj__meta { font-size: .85rem; color: var(--ink-faint); margin-bottom: .4rem; }
.proj__body h3 { margin-bottom: .5rem; }
.proj__body p { color: var(--ink-soft); font-size: .96rem; }
.proj__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.proj__tag { font-size: .76rem; font-weight: 600; color: var(--ink-soft); background: var(--surface-alt); border: 1px solid var(--line); padding: .25rem .6rem; border-radius: 999px; }
.notice { background: var(--brand-soft); border: 1px solid #F0C9A8; border-radius: var(--radius); padding: 1rem 1.3rem; margin-bottom: 2rem; color: var(--ink-soft); font-size: .96rem; }
.notice strong { color: var(--brand-strong); }

/* ---------- Blog ---------- */
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card__link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.post-card__media { aspect-ratio: 16/9; display: grid; place-items: center; background: linear-gradient(150deg, var(--teal), #0a3f3b); color: #fff; }
.post-card__media .ico { width: 54px; height: 54px; opacity: .9; }
.post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.post-card__body p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.post-card__body .cat-card__link { margin-top: 1rem; }

/* ---------- Article ---------- */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
@media (max-width: 900px){ .article-wrap{ grid-template-columns: 1fr; gap: 2rem; } }
.article { font-size: 1.12rem; }
.article h2 { font-size: clamp(1.4rem,2.4vw,1.8rem); margin: 2.2rem 0 .9rem; }
.article h3 { font-size: 1.2rem; margin: 1.6rem 0 .5rem; }
.article p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.article ul { margin: 0 0 1.3rem 1.3rem; color: var(--ink-soft); }
.article li { margin-bottom: .55rem; }
.article strong { color: var(--ink); }
.article-aside { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
@media (max-width: 900px){ .article-aside{ position: static; } }
.aside-links { list-style: none; padding: 0; display: grid; gap: .7rem; }
.aside-links a { font-family: var(--font-head); font-weight: 500; color: var(--ink); text-decoration: none; font-size: .98rem; }
.aside-links a:hover { color: var(--brand-strong); }
.article-aside svg { width: 16px; height: 16px; display: inline; vertical-align: -2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C9C4BC; padding-block: 3.2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: #C9C4BC; text-decoration: none; font-size: .96rem; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #A8A39B; font-size: .94rem; margin-top: 1rem; max-width: 34ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: #8E8980; }
.footer-bottom a { color: #8E8980; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #1FA855; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .18s; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@media print { .wa-float, .site-header, .wa-float { display:none; } }

/* utilities */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.6rem}
.hide { display: none !important; }
.text-soft { color: var(--ink-soft); }
.disclaimer { font-size: .86rem; color: var(--ink-faint); border-left: 3px solid var(--line-strong); padding: .3rem 0 .3rem 1rem; max-width: 70ch; }
