/* ==========================================================================
   GameOdyssey site styles
   Brand: sky-blue gradient nav, silver/grey panels, rounded display face.
   Mobile-first; one file, no build step.
   ========================================================================== */

@font-face {
  font-family: "GO Rounded";
  src: url("../fonts/ARLRDBD.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #14a4cf;
  --blue-light: #5ecbef;
  --blue-dark: #0d86ab;
  --ink: #3a3c40;
  --ink-soft: #6d6e71;
  --ink-mute: #939598;
  --panel: #e9eaeb;
  --panel-2: #f4f5f6;
  --line: #d8d9db;
  --bg: #ffffff;
  --footer: #2b2d30;
  --footer-2: #1f2123;
  --accent: var(--blue);
  --radius: 10px;
  --shadow: 0 6px 24px rgba(20, 30, 40, 0.10);
  --display: "GO Rounded", "Arial Rounded MT Bold", "Nunito", "Segoe UI", system-ui, sans-serif;
  --body: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
  --header-h: 82px;
}

*,
*::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;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); }
a:hover { color: var(--blue); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 0; top: -100px; z-index: 100;
  background: var(--blue-dark); color: #fff; padding: 0.5rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4em;
  font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.02em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 0; border-radius: 6px;
  padding: 0.7em 1.4em; line-height: 1.1; white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, filter 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  box-shadow: 0 2px 0 var(--blue-dark), 0 6px 14px rgba(20, 164, 207, 0.35);
}
.btn--primary:hover { color: #fff; filter: brightness(1.06); }
.btn--ghost {
  color: var(--ink); background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn--ghost:hover { color: var(--blue-dark); box-shadow: inset 0 0 0 2px var(--blue); }
.btn--sm { font-size: 0.8rem; padding: 0.6em 1.1em; }
.btn--lg { font-size: 1.05rem; padding: 0.85em 1.8em; }
.btn.is-disabled {
  cursor: default; color: var(--ink-soft); background: var(--panel); box-shadow: inset 0 0 0 2px var(--line);
  filter: none; transform: none;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, #62cdef 0%, #29b3dd 55%, #14a4cf 100%);
  box-shadow: 0 2px 10px rgba(0, 40, 60, 0.25);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand img { width: clamp(180px, 22vw, 250px); height: auto; }

.site-nav ul { display: flex; gap: 4px; }
.site-nav a {
  display: block; padding: 0.65em 1.4em; border-radius: 6px;
  font-family: var(--display); font-size: 0.95rem; text-transform: lowercase; color: #fff; text-decoration: none;
  background: rgba(255, 255, 255, 0.12); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: background 0.15s ease;
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }
.site-nav a[aria-current="page"] { background: rgba(0, 60, 90, 0.35); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3); }
.site-nav { display: flex; align-items: center; gap: 1rem; }
.social { display: flex; gap: 0.25rem; }
.social a { color: #fff; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.12); }
.social a:hover { background: rgba(255,255,255,0.28); color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 8px; border: 0; border-radius: 6px;
  background: rgba(255, 255, 255, 0.15); cursor: pointer; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 3px; border-radius: 2px; background: #fff; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    background: linear-gradient(180deg, #14a4cf, #0f8fb6);
    box-shadow: 0 8px 16px rgba(0, 40, 60, 0.3);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; }
  .site-nav a { text-align: center; }
  .social { justify-content: center; }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section--tint { background: var(--panel-2); }
.section__head { max-width: 720px; margin-bottom: 2rem; }
.section__title { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; }
.section__lead { font-size: 1.05rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Hero carousel (home)
   -------------------------------------------------------------------------- */
.hero { position: relative; background: #0b1512; color: #fff; }
.hero__viewport { position: relative; overflow: hidden; }
.hero__track {
  display: flex; width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 0.7, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) { .hero__track { transition: none; } }
.slide { position: relative; flex: 0 0 100%; min-width: 0; }
.slide__art { position: relative; }
.slide__art img { width: 100%; height: auto; }
@media (max-width: 900px) {
  .slide__art img { height: clamp(260px, 52vw, 440px); object-fit: cover; object-position: 38% center; }
}

.slide__panel {
  position: absolute; right: clamp(1rem, 6vw, 7rem); top: 50%; transform: translateY(-50%);
  width: min(380px, 40%);
  padding: 1.4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(236, 238, 240, 0.96), rgba(214, 217, 220, 0.96));
  color: var(--ink); border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 #fff;
}
.slide__kicker { font-family: var(--display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-dark); margin-bottom: 0.25em; }
.slide__title { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 0.4em; }
.slide__text { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.1em; }
.slide__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

@media (max-width: 900px) {
  .slide { display: flex; flex-direction: column; }
  .slide__panel {
    position: static; transform: none; width: auto; border-radius: 0; flex: 1;
    padding: 1.25rem 1rem 1.5rem;
    background: linear-gradient(180deg, #eceef0, #dfe2e5);
  }
  .slide__text { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border: 0; border-radius: 50%; cursor: pointer;
  color: #fff; background: rgba(20, 164, 207, 0.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; transition: background 0.15s ease, opacity 0.15s ease;
}
.hero__arrow:hover { background: rgba(20, 164, 207, 0.9); }
.hero__arrow--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.hero__arrow--next { right: clamp(0.5rem, 2vw, 1.5rem); }
@media (max-width: 900px) {
  .hero__arrow { top: clamp(130px, 26vw, 220px); }
}

.hero-nav {
  display: flex; justify-content: center; align-items: center; gap: clamp(6px, 1.2vw, 16px);
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #f2f3f4, #dcdedf);
  box-shadow: inset 0 1px 0 #fff, 0 -1px 0 #c9cbcd;
}
.hero-nav__btn {
  width: 56px; height: 56px; padding: 0; border: 0; border-radius: 10px; cursor: pointer;
  background: transparent; opacity: 0.45; transition: opacity 0.15s ease, transform 0.15s ease;
}
.hero-nav__btn img { width: 100%; height: 100%; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.25); }
.hero-nav__btn:hover, .hero-nav__btn.is-active { opacity: 1; }
.hero-nav__btn.is-active { transform: translateY(-3px); }
.hero-nav__pause {
  width: 32px; height: 32px; margin-left: 0.5rem; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(0,0,0,0.08); position: relative;
}
.hero-nav__pause::before, .hero-nav__pause::after {
  content: ""; position: absolute; top: 9px; width: 4px; height: 14px; background: var(--ink-soft); border-radius: 1px;
}
.hero-nav__pause::before { left: 11px; }
.hero-nav__pause::after { left: 17px; }
.hero-nav__pause[aria-pressed="true"]::before {
  left: 12px; top: 8px; width: 0; height: 0; background: transparent; border-radius: 0;
  border-left: 12px solid var(--ink-soft); border-top: 8px solid transparent; border-bottom: 8px solid transparent;
}
.hero-nav__pause[aria-pressed="true"]::after { display: none; }
@media (max-width: 600px) {
  .hero-nav__btn { width: 42px; height: 42px; border-radius: 8px; }
}

/* Ship exhaust flicker (Word Invader banner). Position is a percentage of the
   1920x600 artwork, set inline via --x/--y so it stays glued to the nozzle. */
.exhaust {
  position: absolute; left: var(--x); top: var(--y);
  width: 4.6%; aspect-ratio: 3.4 / 1;
  transform: translate(-88%, -50%);
  pointer-events: none;
  filter: blur(1.5px);
  opacity: 0; transition: opacity 0.4s ease;
}
.slide__art.is-loaded .exhaust { opacity: 1; }
.exhaust i {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse at 78% 50%, #ffffff 0%, #cdf6ff 18%, rgba(84, 220, 255, 0.85) 38%, rgba(40, 170, 230, 0.35) 62%, rgba(40, 170, 230, 0) 75%);
  mix-blend-mode: screen;
  transform-origin: 85% 50%;
  animation: exhaust-flicker 0.9s steps(1, end) infinite;
}
.exhaust i + i {
  inset: 15% -70% 15% 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(140, 240, 255, 0.75) 0%, rgba(60, 200, 255, 0.35) 35%, rgba(60, 200, 255, 0) 70%);
  animation: exhaust-trail 1.3s ease-in-out infinite alternate;
  filter: blur(3px);
}
@keyframes exhaust-flicker {
  0%   { opacity: 0.95; transform: scale(1, 1); }
  12%  { opacity: 0.7;  transform: scale(0.86, 0.9); }
  24%  { opacity: 1;    transform: scale(1.12, 1.05); }
  37%  { opacity: 0.8;  transform: scale(0.95, 0.95); }
  51%  { opacity: 1;    transform: scale(1.06, 1.08); }
  63%  { opacity: 0.65; transform: scale(0.82, 0.88); }
  78%  { opacity: 0.9;  transform: scale(1.0, 1.0); }
  90%  { opacity: 1;    transform: scale(1.15, 1.02); }
}
@keyframes exhaust-trail {
  from { opacity: 0.35; transform: scaleX(0.8); }
  to   { opacity: 0.8;  transform: scaleX(1.25); }
}
@media (max-width: 900px) { .exhaust { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .exhaust i { animation: none; opacity: 0.85; }
}

/* --------------------------------------------------------------------------
   Game cards
   -------------------------------------------------------------------------- */
.games-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.game-card {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #f6f7f8, #e6e8ea);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 1px 0 #fff inset, 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 1px 0 #fff inset, var(--shadow); }
.game-card__media { display: block; padding: 1rem 1rem 0; }
.game-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; box-shadow: 0 3px 8px rgba(0,0,0,0.2); }
.game-card__body { display: flex; flex-direction: column; flex: 1; padding: 0.9rem 1rem 1.1rem; }
.game-card__title { font-size: 1.05rem; margin-bottom: 0.25em; text-align: center; }
.game-card__title a { color: var(--ink); text-decoration: none; }
.game-card__title a:hover { color: var(--blue-dark); }
.game-card__text { font-size: 0.88rem; color: var(--ink-soft); text-align: center; flex: 1; margin-bottom: 0.9em; }
.game-card__actions { display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
.game-card--soon .game-card__media img { filter: saturate(0.6); opacity: 0.85; }

/* --------------------------------------------------------------------------
   About, featured title, Bob strip
   -------------------------------------------------------------------------- */
.about { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
.about__figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (min-width: 860px) { .about { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }

.featured {
  display: grid; gap: 1.5rem; align-items: center; grid-template-columns: 1fr;
  padding: 1.25rem; border-radius: var(--radius);
  background: linear-gradient(180deg, #f6f7f8, #e6e8ea); border: 1px solid var(--line);
  box-shadow: 0 1px 0 #fff inset, 0 4px 14px rgba(0, 0, 0, 0.06);
}
.featured__media { display: block; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: #000; }
.featured__media img { width: 100%; aspect-ratio: 460 / 215; object-fit: cover; transition: transform 0.2s ease; }
.featured__media:hover img { transform: scale(1.03); }
.featured__kicker { font-family: var(--display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-dark); margin-bottom: 0.25em; }
.featured__body .section__title { margin-bottom: 0.4em; }
@media (min-width: 760px) { .featured { grid-template-columns: 1.1fr 1fr; gap: 2.5rem; padding: 1.5rem; } }

.age-gate { border: 0; padding: 0; border-radius: var(--radius); max-width: min(92vw, 480px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.age-gate::backdrop { background: rgba(0, 0, 0, 0.6); }
.age-gate__inner { margin: 0; padding: 1.75rem 1.75rem 1.5rem; text-align: center; background: linear-gradient(180deg, #f6f7f8, #e6e8ea); }
.age-gate__inner h2 { font-size: 1.4rem; text-transform: uppercase; }
.age-gate__inner p { color: var(--ink-soft); }
.age-gate__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }

/* Strip above the footer that Bob walks along. */
.bob-strip { position: relative; height: 150px; background: #fff; overflow: hidden; }

/* Bob's walk. The sprite sheet is 16 frames of 128x130, facing left.
   .bob-runner carries him across the strip; .bob plays the walk cycle and
   applies scale (depth) and the horizontal flip for left-to-right walkers. */
.bob-stage { position: absolute; inset: 0; pointer-events: none; }
.bob-runner {
  position: absolute; left: -140px; bottom: var(--bottom, 0);
  width: 128px; height: 130px;
  animation: bob-cross var(--cross, 40s) linear var(--delay, 0s) infinite;
  will-change: transform;
}
.bob-runner--rtl { animation-direction: reverse; }
.bob {
  width: 128px; height: 130px;
  background: url("../img/site/bob-walk.png") 0 0 / 2048px 130px no-repeat;
  transform-origin: 50% 100%;
  transform: scale(var(--s, 1)) scaleX(-1);
  animation: bob-walk var(--step, 1.3s) steps(16) infinite;
}
.bob-runner--rtl .bob { transform: scale(var(--s, 1)); }
@keyframes bob-walk {
  from { background-position: 0 0; }
  to   { background-position: -2048px 0; }
}
@keyframes bob-cross {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 280px)); }
}
@media (max-width: 600px) {
  .bob-runner--ltr:nth-child(1), .bob-runner--rtl:nth-child(2) { display: none; } /* two walkers is plenty on a phone */
}
@media (prefers-reduced-motion: reduce) {
  .bob-stage { display: none; }
}

/* --------------------------------------------------------------------------
   Game product pages
   -------------------------------------------------------------------------- */
.game-hero {
  position: relative; color: #fff; text-align: center; background: #0d1414;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  isolation: isolate; overflow: hidden;
}
.game-hero__bg {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.game-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%);
}
.game-hero__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.game-hero__logo { width: min(100%, 560px); height: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)); }
.game-hero__tagline { font-family: var(--display); font-size: clamp(1.1rem, 2.4vw, 1.6rem); text-transform: uppercase; letter-spacing: 0.04em; text-shadow: 0 2px 8px rgba(0,0,0,0.7); margin: 0.25rem 0 0.5rem; }
.game-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.game-hero__note { font-size: 0.9rem; opacity: 0.85; margin-top: 0.5rem; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

.game-about { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.game-about__text p { font-size: 1.05rem; }
.game-about__aside {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.5rem; border-radius: var(--radius);
  background: linear-gradient(180deg, #f6f7f8, #e6e8ea); border: 1px solid var(--line);
}
.game-about__aside img { width: 140px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.feature-list { width: 100%; }
.feature-list li { padding: 0.55em 0 0.55em 1.6em; border-top: 1px solid var(--line); position: relative; font-family: var(--display); font-size: 0.95rem; }
.feature-list li::before { content: ""; position: absolute; left: 0.2em; top: 0.95em; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.feature-list__note { font-size: 0.85rem; color: var(--ink-mute); text-align: center; margin: 0; }
@media (min-width: 860px) { .game-about { grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; } }

.video-frame {
  max-width: 960px; margin-inline: auto; border-radius: var(--radius); overflow: hidden;
  background: #000; box-shadow: var(--shadow); aspect-ratio: 16 / 9;
}
.video-frame video { width: 100%; height: 100%; object-fit: contain; }

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery__item { display: block; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: #000; }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.2s ease; }
.gallery__item:hover img { transform: scale(1.03); }

.game-cta {
  background: linear-gradient(180deg, #2b2d30, #1f2123); color: #fff; padding: 2.5rem 0;
}
.game-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2rem; text-align: center; }
.game-cta__text { font-family: var(--display); font-size: clamp(1.1rem, 2.2vw, 1.5rem); text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1400px); max-height: 96vh; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.88); }
.lightbox__inner { position: relative; }
.lightbox img { max-width: min(96vw, 1400px); max-height: 90vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox__close, .lightbox__nav {
  position: absolute; border: 0; border-radius: 50%; width: 44px; height: 44px; cursor: pointer;
  background: rgba(255,255,255,0.15); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.35); }
.lightbox__close { top: 8px; right: 8px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 8px; }
.lightbox__nav--next { right: 8px; }
.lightbox__caption { color: #fff; text-align: center; font-size: 0.9rem; margin: 0.6rem 0 0; opacity: 0.8; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact { grid-template-columns: 1fr 1.4fr; gap: 3rem; } }
.contact__email { color: var(--ink-soft); }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-family: var(--display); font-size: 0.9rem; color: var(--ink-soft); }
.field input, .field textarea {
  font: inherit; color: var(--ink); width: 100%;
  padding: 0.7em 0.9em; border: 2px solid var(--line); border-radius: 6px; background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,164,207,0.2); }
.field textarea { resize: vertical; min-height: 160px; }
.field--hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 0.8em 1em; border-radius: 6px; font-weight: 600; }
.form-status.is-ok { background: #e3f7ec; color: #1e6b3a; }
.form-status.is-error { background: #fdeaea; color: #9b2c2c; }
.contact-form .btn { justify-self: start; }

/* --------------------------------------------------------------------------
   Prose (legal pages)
   -------------------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.2rem; margin-top: 2em; }
.prose ul { padding-left: 1.2em; list-style: disc; }
.prose li { margin-bottom: 0.5em; }
.prose__meta { color: var(--ink-mute); font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--footer), var(--footer-2)); color: #b9bbbe;
  padding: 2.5rem 0 0; margin-top: 0;
}
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); max-width: 820px; }
.site-footer__heading { font-size: 0.95rem; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75em; }
.site-footer li { margin-bottom: 0.35em; }
.site-footer a { color: #b9bbbe; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem;
  margin-top: 2.5rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem; font-family: var(--display); color: var(--ink-mute);
}
.site-footer__bottom p { margin: 0; }
