/* SearchItAllDay design system.
   Purple identity (committed brand), OKLCH throughout. Homepage reads brand-forward
   and confident; the results page reads product: fast, legible, function-first.
   No cream defaults, no gradient text, no eyebrow scaffolding, no lazy card grids. */

:root {
  /* ---- brand ramp (violet) ---- */
  --violet: oklch(0.55 0.238 292);
  --violet-deep: oklch(0.44 0.205 290);
  --violet-bright: oklch(0.68 0.205 300);
  --violet-ink: oklch(0.40 0.20 292);
  --on-violet: #fff;

  /* ---- neutrals: cool, violet-tinted white (never warm/cream) ---- */
  --bg: oklch(0.986 0.006 292);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.972 0.008 292);
  --ink: oklch(0.235 0.028 288);
  --ink-2: oklch(0.34 0.03 289);
  --muted: oklch(0.505 0.026 289);
  --faint: oklch(0.62 0.02 289);
  --hairline: oklch(0.912 0.011 291);
  --hairline-2: oklch(0.86 0.016 291);

  --link: var(--violet-ink);
  --visited: oklch(0.45 0.15 320);

  /* ---- shape + shadow ---- */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px oklch(0.4 0.05 290 / 0.06), 0 2px 6px oklch(0.4 0.05 290 / 0.05);
  --shadow: 0 6px 20px oklch(0.4 0.08 290 / 0.10), 0 2px 6px oklch(0.4 0.05 290 / 0.06);
  --shadow-lg: 0 24px 60px oklch(0.42 0.12 291 / 0.18), 0 6px 18px oklch(0.4 0.08 290 / 0.10);
  --ring: 0 0 0 4px oklch(0.6 0.2 292 / 0.18);

  /* ---- type ---- */
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-ui: 'Public Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ---- z-scale (semantic) ---- */
  --z-base: 0;
  --z-sticky: 100;
  --z-dropdown: 200;
  --z-overlay: 300;

  --wrap: 1120px;
  --measure: 68ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; margin: 0; }
p { margin: 0 0 1rem; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
/* transparent outline becomes a visible system-colored ring in forced-colors /
   high-contrast mode, where author box-shadows are dropped */
:focus-visible { outline: 2px solid transparent; outline-offset: 2px; box-shadow: var(--ring); border-radius: 6px; }
@media (forced-colors: active) { :focus-visible { outline-color: Highlight; } }
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.25rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ================= brand mark ================= */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark { display: inline-grid; place-items: center; width: 2.1em; height: 2.1em; border-radius: 28%;
  background: linear-gradient(155deg, var(--violet-bright), var(--violet) 45%, var(--violet-deep));
  box-shadow: 0 6px 16px oklch(0.55 0.22 292 / 0.35), inset 0 1px 0 oklch(1 0 0 / 0.35);
  color: #fff; }
.brand__mark svg { width: 58%; height: 58%; }
.brand__wm { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.35rem; color: var(--ink); }
.brand__wm b { color: var(--violet); font-weight: 800; }

/* ================= top nav ================= */
.mast { position: sticky; top: 0; z-index: var(--z-sticky); background: oklch(0.986 0.006 292 / 0.82);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; }
.mast.is-stuck { border-color: var(--hairline); box-shadow: var(--shadow-sm); }
.mast__in { display: flex; align-items: center; gap: 1.25rem; height: 66px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; font-weight: 600; font-size: 0.94rem; }
.nav a { color: var(--ink-2); }
.nav a:hover { color: var(--violet); text-decoration: none; }
.nav a.is-active { color: var(--violet); }
.navburger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--hairline-2); border-radius: var(--r-sm);
  background: var(--surface); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.navburger span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s; }
.navburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: var(--z-overlay); visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: oklch(0.2 0.04 290 / 0.5); opacity: 0; transition: opacity 0.3s; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(84vw, 320px); background: var(--surface);
  box-shadow: var(--shadow-lg); transform: translateX(102%); transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem 1.15rem; display: flex; flex-direction: column; gap: 0.25rem; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.8rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--hairline); }
.drawer__close { width: 42px; height: 42px; display: grid; place-items: center; border: 0; background: transparent; border-radius: var(--r-sm); color: var(--ink); }
.drawer__panel a { padding: 0.85rem 0.25rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--hairline); }
html.nav-lock { overflow: hidden; }

/* ================= search field (shared) ================= */
.field { position: relative; z-index: 4; }
.field:focus-within { z-index: var(--z-dropdown); } /* dropdown must overlay siblings (chips, disclosure) */
.field__box { display: flex; align-items: center; gap: 0.5rem; min-width: 0; background: var(--surface); border: 1.5px solid var(--hairline-2);
  border-radius: var(--r-pill); padding: 0.5rem 0.5rem 0.5rem 1.15rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s, transform 0.25s; }
.field__box:focus-within { border-color: var(--violet); box-shadow: var(--shadow), var(--ring); }
.field__icon { color: var(--faint); flex: 0 0 auto; display: grid; place-items: center; }
.field input { flex: 1; min-width: 0; border: 0; background: transparent; font-family: var(--font-ui); color: var(--ink);
  font-size: 1.05rem; padding: 0.45rem 0; }
.field input::placeholder { color: var(--muted); }
.field input:focus { outline: none; }
.field__go { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 0.4rem; border: 0; border-radius: var(--r-pill);
  background: linear-gradient(160deg, var(--violet), var(--violet-deep));
  color: var(--on-violet); font-weight: 700; padding: 0.62rem 1.4rem; box-shadow: 0 4px 12px oklch(0.5 0.2 292 / 0.35);
  transition: transform 0.18s, box-shadow 0.2s, filter 0.2s; }
.field__go-ic { display: none; }
.field__go:hover { filter: brightness(1.06); box-shadow: 0 6px 18px oklch(0.5 0.2 292 / 0.45); }
.field__go:active { transform: translateY(1px); }

/* autocomplete dropdown */
.field__pop { position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: var(--z-dropdown);
  background: var(--surface); border: 1px solid var(--hairline-2); border-radius: var(--r); box-shadow: var(--shadow-lg);
  overflow: hidden; padding: 0.35rem; display: none; }
.field__pop.is-open { display: block; }
.sug { display: flex; align-items: center; gap: 0.7rem; width: 100%; text-align: left; border: 0; background: transparent;
  padding: 0.62rem 0.8rem; border-radius: var(--r-sm); color: var(--ink); font-size: 0.98rem; }
.sug:hover, .sug.is-active { background: var(--surface-2); }
.sug svg { color: var(--faint); flex: 0 0 auto; }
.sug b { color: var(--ink); font-weight: 700; }

/* ================= homepage hero ================= */
.hero { position: relative; min-height: calc(100vh - 66px); display: grid; place-items: center; padding: 2rem 0 4rem; overflow: clip; }
.hero__aura { position: absolute; inset: -20% -10% auto; height: 70vh; pointer-events: none; z-index: var(--z-base);
  background:
    radial-gradient(42vw 42vw at 30% 20%, oklch(0.7 0.19 300 / 0.28), transparent 60%),
    radial-gradient(38vw 38vw at 72% 8%, oklch(0.72 0.16 262 / 0.22), transparent 62%),
    radial-gradient(30vw 30vw at 52% 32%, oklch(0.66 0.2 330 / 0.16), transparent 60%);
  filter: blur(6px); animation: drift 22s ease-in-out infinite alternate; }
.hero__grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); }
.hero__in { position: relative; z-index: 1; text-align: center; width: min(760px, 92vw); }
.hero__mark { display: inline-grid; place-items: center; width: 92px; height: 92px; border-radius: 26%;
  background: linear-gradient(155deg, var(--violet-bright), var(--violet) 45%, var(--violet-deep)); color: #fff;
  box-shadow: 0 18px 40px oklch(0.55 0.22 292 / 0.4), inset 0 2px 0 oklch(1 0 0 / 0.4); margin-bottom: 1.4rem; }
.hero__mark svg { width: 54%; height: 54%; }
.hero__wm { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 8vw, 5rem); letter-spacing: -0.045em;
  line-height: 0.95; color: var(--ink); }
.hero__wm b { color: var(--violet); font-weight: 800; }
.hero__tag { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.2rem); margin: 0.9rem 0 2rem; }
.hero__field { width: min(660px, 92vw); margin: 0 auto; position: relative; }
/* the reveal animation promotes chips + disclosure to their own stacking contexts;
   lift the field wrapper above them so the autocomplete dropdown always overlays */
.hero__field:focus-within, .serp__field:focus-within { z-index: var(--z-dropdown); }
.hero__field .field__box { padding: 0.6rem 0.6rem 0.6rem 1.35rem; border-radius: var(--r-pill); }
.hero__field .field input { font-size: 1.1rem; padding: 0.6rem 0; }

/* category chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.4rem; }
.chip { border: 1px solid var(--hairline-2); background: var(--surface); color: var(--ink-2); font-weight: 600;
  font-size: 0.9rem; padding: 0.5rem 1.05rem; border-radius: var(--r-pill); transition: transform 0.18s, border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.chip:hover { color: var(--violet); border-color: var(--violet); box-shadow: var(--shadow-sm); transform: translateY(-2px); text-decoration: none; }

.disclosure { max-width: 60ch; margin: 2.4rem auto 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.disclosure a { color: var(--violet-ink); font-weight: 600; }

/* ================= footer ================= */
.foot { border-top: 1px solid var(--hairline); margin-top: 4rem; padding: 2rem 0; }
.foot__in { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; color: var(--muted); font-size: 0.9rem; }
.foot__links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot__links a { color: var(--ink-2); }
.foot__links a:hover { color: var(--violet); text-decoration: none; }

/* ================= cookie consent ================= */
.consent { position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: var(--z-overlay);
  width: min(760px, calc(100vw - 2rem)); display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1.2rem;
  background: var(--surface); border: 1px solid var(--hairline-2); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 1rem 1.2rem; }
.consent__msg { margin: 0; flex: 1; min-width: 220px; font-size: 0.9rem; color: var(--ink-2); }
.consent__msg a { color: var(--violet-ink); font-weight: 600; }
.consent__act { display: flex; gap: 0.6rem; margin-left: auto; }
.consent__btn { border: 1px solid var(--hairline-2); background: var(--surface); color: var(--ink); font-weight: 600; padding: 0.55rem 1.1rem; border-radius: var(--r-pill); }
.consent__btn:hover { border-color: var(--violet); color: var(--violet); }
.consent__btn--solid { background: linear-gradient(160deg, var(--violet), var(--violet-deep)); color: #fff; border-color: transparent; }
.consent__btn--solid:hover { color: #fff; filter: brightness(1.06); }
@media (max-width: 480px) { .consent__act { width: 100%; } .consent__btn { flex: 1; } }

/* ================= results page ================= */
.serp { padding: 1.4rem 0 3rem; }
.serp__head { position: sticky; top: 0; z-index: var(--z-sticky); background: oklch(0.986 0.006 292 / 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline); }
.serp__headin { display: flex; align-items: center; gap: 1rem; height: 70px; }
.serp__headin .brand__wm { display: none; }
.serp__field { flex: 1; min-width: 0; max-width: 640px; position: relative; }
.serp__field .field__box { padding: 0.35rem 0.35rem 0.35rem 1rem; }
.serp__field .field input { font-size: 1rem; padding: 0.4rem 0; }
.serp__field .field__go { padding: 0.5rem 1.1rem; }

.serp__grid { display: grid; grid-template-columns: minmax(0, 720px); gap: 0; padding-top: 1.4rem; min-width: 0; }
#serp-results { min-width: 0; max-width: 100%; }
.serp__meta { overflow-wrap: anywhere; }
.res__url span { overflow-wrap: anywhere; min-width: 0; }
.serp__meta { color: var(--muted); font-family: var(--font-mono); font-size: 0.8rem; margin-bottom: 1.2rem; }
.serp__spell { margin-bottom: 1rem; color: var(--ink-2); }
.serp__spell a { color: var(--violet-ink); font-style: italic; font-weight: 600; }

/* sponsored block: clearly labeled, reserved, pluggable */
.spon { margin: 0 0 1.6rem; padding: 0; }
.spon__tag { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet-ink); background: oklch(0.6 0.2 292 / 0.1);
  border-radius: var(--r-pill); padding: 0.16rem 0.6rem; margin-bottom: 0.6rem; }
.spon__slot { min-height: 90px; border-radius: var(--r); }
/* dev/unconnected placeholder inside a sponsored slot */
.spon__ph { border: 1px dashed var(--hairline-2); border-radius: var(--r); background: var(--surface-2); color: var(--muted);
  padding: 1rem 1.15rem; font-size: 0.88rem; }

/* organic results: no cards. vertical rhythm + hairlines. */
.res { padding: 1rem 0 1.15rem; border-bottom: 1px solid var(--hairline); }
.res__url { display: flex; align-items: center; gap: 0.5rem; color: var(--ink-2); font-family: var(--font-mono); font-size: 0.78rem; margin-bottom: 0.28rem; }
.res__fav { width: 18px; height: 18px; border-radius: 4px; flex: 0 0 auto; background: var(--surface-2); border: 1px solid var(--hairline); }
.res__title { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; letter-spacing: -0.01em; line-height: 1.25; margin: 0 0 0.3rem; }
.res__title a { color: var(--violet-ink); }
.res__title a:visited { color: var(--visited); }
.res__snippet { color: var(--ink-2); font-size: 0.96rem; max-width: var(--measure); }

/* related searches */
.rel { margin-top: 2rem; }
.rel h2 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.rel__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.6rem; }
.rel__item { display: flex; align-items: center; gap: 0.6rem; border: 1px solid var(--hairline-2); border-radius: var(--r-pill);
  padding: 0.6rem 1rem; color: var(--ink); background: var(--surface); font-size: 0.94rem; transition: border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.rel__item:hover { border-color: var(--violet); color: var(--violet); box-shadow: var(--shadow-sm); text-decoration: none; }
.rel__item svg { color: var(--faint); flex: 0 0 auto; }

/* pagination */
.pager { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 2.4rem; }
.pager a, .pager span { min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-sm);
  font-weight: 600; color: var(--ink-2); font-size: 0.95rem; }
.pager a:hover { background: var(--surface-2); text-decoration: none; color: var(--violet); }
.pager .is-cur { background: var(--violet); color: #fff; }

/* states */
.state { padding: 2.5rem 0; max-width: var(--measure); }
.state h2 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.state p { color: var(--muted); }
.skel { padding: 1rem 0 1.15rem; border-bottom: 1px solid var(--hairline); }
.skel__line { height: 12px; border-radius: 6px; background: linear-gradient(90deg, var(--surface-2), var(--hairline), var(--surface-2));
  background-size: 200% 100%; animation: shimmer 1.3s linear infinite; margin-bottom: 0.5rem; }
.skel__line.w1 { width: 30%; height: 10px; } .skel__line.w2 { width: 70%; height: 16px; } .skel__line.w3 { width: 92%; } .skel__line.w4 { width: 60%; }

/* ================= prose (legal/trust) ================= */
.page { padding: 2.5rem 0 1rem; }
.page__head { max-width: var(--measure); margin-bottom: 1.6rem; }
.page__head h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.03em; }
.page__head p { color: var(--muted); font-size: 1.1rem; margin-top: 0.6rem; }
.prose { max-width: var(--measure); color: var(--ink-2); font-size: 1.02rem; text-wrap: pretty; }
.prose h2 { font-size: 1.5rem; margin: 2.2rem 0 0.7rem; color: var(--ink); }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 0.5rem; color: var(--ink); }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.prose li { margin: 0.4rem 0; }
.prose a { color: var(--violet-ink); font-weight: 600; }
.prose strong { color: var(--ink); }
.updated { display: inline-block; font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ================= contact form ================= */
.cform { max-width: var(--measure); margin: 1.5rem 0 0; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.cform__field { display: block; margin-bottom: 1rem; }
.cform__field > span { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--ink); }
.cform__field input, .cform__field textarea { width: 100%; font: inherit; color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--hairline-2); border-radius: var(--r-sm); padding: 0.7rem 0.85rem; }
.cform__field input:focus, .cform__field textarea:focus { outline: none; border-color: var(--violet); box-shadow: var(--ring); }
.cform__field textarea { resize: vertical; min-height: 130px; }
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cform__foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.3rem; }
.cform__btn { border: 0; border-radius: var(--r-pill); background: linear-gradient(160deg, var(--violet), var(--violet-deep));
  color: #fff; font-weight: 700; padding: 0.72rem 1.6rem; box-shadow: 0 4px 12px oklch(0.5 0.2 292 / 0.35); transition: filter 0.2s; }
.cform__btn:hover { filter: brightness(1.06); }
.cform__btn:disabled { opacity: 0.6; cursor: default; filter: none; }
.cform__status { margin: 0; font-size: 0.92rem; font-weight: 600; }
.cform__status.is-ok { color: var(--violet-ink); }
.cform__status.is-err { color: oklch(0.55 0.2 25); }
.cform__fine { margin-top: 1.1rem; font-size: 0.85rem; color: var(--muted); }
.cform__fine a { color: var(--violet-ink); font-weight: 600; }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }

/* ================= motion ================= */
@keyframes drift { from { transform: translate3d(-2%, -1%, 0) scale(1.02); } to { transform: translate3d(3%, 2%, 0) scale(1.08); } }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.reveal { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.reveal-1 { animation-delay: 0.05s; } .reveal-2 { animation-delay: 0.14s; } .reveal-3 { animation-delay: 0.24s; }
.reveal-4 { animation-delay: 0.36s; } .reveal-5 { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero__aura { animation: none; }
}

/* ================= responsive ================= */
@media (max-width: 720px) {
  .nav { display: none; }
  .navburger { display: flex; }
  .serp__grid { grid-template-columns: 1fr; }
  .serp__field { max-width: none; }
  .serp__headin { height: 62px; gap: 0.6rem; }
  .hero { min-height: auto; padding-top: 3rem; }
}
@media (max-width: 420px) {
  .field__go span { display: none; }
  .field__go-ic { display: block; }
  .field__go { padding: 0.66rem 0.85rem; }
}
