/* =========================================================================
   towerrushrealmoney.com — emerald / amber theme
   Layout signature: sticky side navigation next to a wide content column.
   ========================================================================= */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  --ink-900: #04120f;
  --ink-800: #071c18;
  --ink-700: #0b2a24;
  --ink-600: #10382f;
  --emerald: #1c8f6a;
  --emerald-dim: #12604a;

  --amber-200: #ffe2a0;
  --amber-300: #ffbe3c;
  --amber-400: #f8a51b;
  --amber-500: #e07d05;

  --bg: #f4f7f4;
  --surface: #ffffff;
  --surface-2: #eef4f0;
  --line: #dde7e1;

  --text: #10201b;
  --text-soft: #46584f;
  --text-dim: #6c7d75;
  --on-dark: #ffffff;
  --on-dark-soft: #b3ccc1;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-h1: clamp(1.95rem, 1.2rem + 2.9vw, 3.3rem);
  --fs-h2: clamp(1.45rem, 1.1rem + 1.5vw, 2.15rem);
  --fs-h3: clamp(1.1rem, 1rem + 0.45vw, 1.35rem);
  --fs-body: clamp(0.97rem, 0.94rem + 0.18vw, 1.05rem);
  --fs-small: 0.86rem;

  --container: 1280px;
  --gutter: clamp(1rem, 0.5rem + 2vw, 2.5rem);
  --section-y: clamp(2.75rem, 2rem + 3.5vw, 5rem);
  --gap: clamp(1rem, 0.7rem + 1.2vw, 1.75rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(4, 32, 24, 0.07);
  --shadow: 0 14px 34px rgba(4, 32, 24, 0.1);

  --grad-amber: linear-gradient(180deg, var(--amber-200) 0%, var(--amber-300) 45%, var(--amber-500) 100%);
  --grad-night: linear-gradient(155deg, var(--ink-900) 0%, var(--ink-700) 60%, #12463a 100%);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

/* ---------- Reset and base ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { text-wrap: pretty; }
ul, ol { padding-left: 1.3em; }
li + li { margin-top: 0.5em; }
strong { font-weight: 700; }

:focus-visible { outline: 3px solid var(--amber-300); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--amber-300); color: var(--ink-900); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Utilities ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mt-gap { margin-top: var(--gap); }
.mt-lg { margin-top: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%); z-index: 1000;
  background: var(--amber-300); color: var(--ink-900); font-weight: 700;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: .8rem 1.9rem; border: 0; border-radius: 8px;
  font: inherit; font-weight: 800; font-size: 1rem; letter-spacing: .03em;
  text-transform: uppercase; text-align: center; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn--amber { background: var(--grad-amber); color: #3a2100; box-shadow: 0 8px 18px rgba(224, 125, 5, .32); }
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(224, 125, 5, .42); }
.btn--amber:active { transform: translateY(0) scale(.985); }
.btn--outline { background: transparent; color: var(--on-dark); border: 2px solid rgba(255, 255, 255, .38); }
.btn--outline:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn--lg { min-height: 56px; padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { min-height: 42px; padding: .55rem 1.3rem; font-size: .84rem; }

.btn__dot {
  width: 9px; height: 9px; border-radius: 50%; background: #3a2100;
  animation: blip 1.9s var(--ease) infinite;
}
@keyframes blip { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.65); } }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4, 18, 15, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); padding-block: .5rem; }
.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 38px; } }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.5rem, .1rem + 1vw, 1.5rem); list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  display: block; padding: .5rem .15rem; font-size: .82rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: rgba(255, 255, 255, .85);
  transition: color .2s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--amber-300); }
.nav__cta { display: none; }

.nav-toggle {
  display: none; width: 46px; height: 46px; margin-left: auto; padding: 0;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; max-height: 0;
    overflow: hidden; background: var(--ink-800);
    border-bottom: 1px solid rgba(255, 255, 255, .12); transition: max-height .3s var(--ease);
  }
  .nav.is-open { max-height: min(78vh, 560px); overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem var(--gutter) 1.25rem; }
  .nav__link { padding: .95rem .25rem; font-size: .95rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav__cta { display: block; margin-top: 1rem; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: var(--on-dark); background: var(--grad-night); }
.hero::before {
  content: ""; position: absolute; inset: -30% -20% auto; height: 120%;
  background: radial-gradient(ellipse at 70% 20%, rgba(28, 143, 106, .5), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1fr; align-items: center;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); padding-block: clamp(2.5rem, 1.8rem + 4vw, 5rem);
}
@media (min-width: 992px) { .hero__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }
.hero h1 { color: #fff; }
.hero__lead { margin-top: 1.15rem; font-size: clamp(1rem, .95rem + .4vw, 1.12rem); color: var(--on-dark-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero__note { margin-top: 1rem; font-size: var(--fs-small); color: rgba(255, 255, 255, .58); }
.hero__art { width: 100%; max-width: 300px; height: auto; margin-inline: auto; }
@media (min-width: 992px) { .hero__art { max-width: 460px; } }

/* ---------- Quick facts strip -------------------------------------------- */
.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr));
  gap: .8rem; margin-top: 2.25rem; padding: 0; list-style: none;
}
.facts li {
  margin: 0; padding: .9rem 1.05rem; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
}
.facts b { display: block; font-size: 1.12rem; color: var(--amber-200); }
.facts span { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255, 255, 255, .58); }

/* ---------- Breadcrumbs -------------------------------------------------- */
.breadcrumbs { padding-block: .85rem; font-size: var(--fs-small); color: var(--text-dim); background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; display: flex; gap: .5rem; align-items: center; }
.breadcrumbs li + li::before { content: "/"; color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--amber-500); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--text); font-weight: 600; }

/* ---------- Layout: sticky side navigation + content --------------------- */
.layout { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem); padding-block: var(--section-y); }
@media (min-width: 1100px) { .layout { grid-template-columns: 250px minmax(0, 1fr); } }

.sidenav { display: none; }
@media (min-width: 1100px) {
  .sidenav { display: block; position: sticky; top: calc(var(--header-h) + 20px); align-self: start; max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto; }
}
.sidenav h2 { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .9rem; }
.sidenav ol { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.sidenav li { margin: 0; }
.sidenav a {
  display: block; padding: .48rem 0 .48rem .95rem; font-size: .9rem; color: var(--text-soft);
  border-left: 2px solid var(--line); transition: color .2s var(--ease), border-color .2s var(--ease);
}
.sidenav a:hover { color: var(--amber-500); border-left-color: var(--amber-300); }
.sidenav a[aria-current] { color: var(--text); font-weight: 700; border-left-color: var(--emerald); }
.sidenav__cta { margin-top: 1.4rem; }
.sidenav__cta .btn { width: 100%; }

/* mobile counterpart of the side navigation */
.toc { padding: 1.2rem 1.3rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (min-width: 1100px) { .toc { display: none; } }
.toc h2 { font-size: .95rem; text-transform: uppercase; letter-spacing: .07em; }
.toc ol { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: .25rem 1.4rem; margin-top: .85rem; padding-left: 1.15em; }
.toc li { margin: 0; }
.toc a { display: block; padding: .3rem 0; font-size: .92rem; color: var(--text-soft); }
.toc a:hover { color: var(--amber-500); text-decoration: underline; }

/* ---------- Content sections --------------------------------------------- */
.block { scroll-margin-top: calc(var(--header-h) + 18px); }
.block + .block { margin-top: clamp(2.5rem, 1.8rem + 3vw, 4.25rem); }
.block > * + * { margin-top: 1.1rem; }
.block h2 { padding-bottom: .7rem; border-bottom: 3px solid var(--emerald); }
.block h3 { margin-top: 1.6rem; }
.block p { color: var(--text-soft); }
.block li { color: var(--text-soft); }

.lead-in { font-size: clamp(1.02rem, .96rem + .4vw, 1.15rem); color: var(--text) !important; }

/* ---------- Cards -------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: var(--gap); }
.card { padding: 1.4rem 1.35rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 .45rem; font-size: 1.05rem; }
.card p { color: var(--text-soft); font-size: .96rem; }
.card__tag { display: inline-block; margin-bottom: .7rem; padding: .22rem .6rem; border-radius: 5px; background: var(--surface-2); color: var(--emerald-dim); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Stacked "floor" list ----------------------------------------- */
.floors { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.floors li {
  margin: 0; padding: .95rem 1.15rem .95rem 3.3rem; position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--emerald); border-radius: var(--radius-sm);
  color: var(--text-soft);
}
.floors li::before {
  counter-increment: f; content: counter(f);
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 6px;
  background: var(--grad-amber); color: #3a2100; font-weight: 800; font-size: .82rem;
}
.floors { counter-reset: f; }
.floors strong { color: var(--text); }

/* ---------- Checklist ---------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 2rem; margin-top: .8rem; color: var(--text-soft); }
.checklist li:first-child { margin-top: 0; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .34em; width: 19px; height: 19px; border-radius: 5px; background: var(--grad-amber); }
.checklist li::after { content: ""; position: absolute; left: 5.5px; top: calc(.34em + 6px); width: 8px; height: 4px; border-left: 2px solid #3a2100; border-bottom: 2px solid #3a2100; transform: rotate(-45deg); }
.checklist strong { color: var(--text); }

/* ---------- Tables ------------------------------------------------------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: .96rem; }
caption { padding: 1rem 1.2rem 0; text-align: left; font-size: var(--fs-small); color: var(--text-dim); }
thead th { padding: .9rem 1.2rem; text-align: left; font-weight: 800; font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--on-dark); background: var(--ink-700); }
tbody th, tbody td { padding: .85rem 1.2rem; border-top: 1px solid var(--line); vertical-align: top; color: var(--text-soft); }
tbody th { text-align: left; font-weight: 700; color: var(--text); }
tbody tr:nth-child(even) { background: var(--surface-2); }

@media (max-width: 620px) {
  .table--stack thead { display: none; }
  .table--stack tbody tr { display: block; padding: .4rem 0; border-top: 1px solid var(--line); }
  .table--stack tbody tr:first-child { border-top: 0; }
  .table--stack tbody th, .table--stack tbody td { display: block; border: 0; padding: .3rem 1.1rem .65rem; text-align: left; }
  .table--stack tbody td::before {
    content: attr(data-label); display: block; margin-bottom: .12rem;
    font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim);
  }
  .table--stack tbody th { padding-block: .7rem; background: var(--surface-2); border-radius: 8px; margin-bottom: .3rem; }
}

/* ---------- Callout ------------------------------------------------------ */
.callout { display: flex; gap: 1rem; padding: 1.15rem 1.3rem; border-radius: var(--radius); background: var(--surface); border-left: 5px solid var(--amber-400); box-shadow: var(--shadow-sm); }
.callout svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--amber-500); }
.callout h3 { margin: 0 0 .3rem; font-size: 1.02rem; }
.callout p { color: var(--text-soft); margin: 0; }
.callout--danger { background: #fff5f4; border-left-color: #d64545; }
.callout--danger svg { color: #d64545; }

/* ---------- Highlight panel ---------------------------------------------- */
.panel-dark {
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); border-radius: var(--radius-lg);
  background: var(--grad-night); color: var(--on-dark);
}
.panel-dark h3 { color: #fff; margin: 0 0 .6rem; }
.panel-dark p { color: var(--on-dark-soft); }
.panel-dark .checklist li { color: var(--on-dark-soft); }
.panel-dark .checklist strong { color: #fff; }

/* ---------- Pros / cons -------------------------------------------------- */
.pc { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: var(--gap); }
.pc__col { padding: 1.4rem 1.35rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pc__col h3 { display: flex; align-items: center; gap: .55rem; margin: 0 0 .9rem; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .05em; }
.pc__col ul { list-style: none; margin: 0; padding: 0; }
.pc__col li { position: relative; padding-left: 1.75rem; margin-top: .65rem; color: var(--text-soft); }
.pc__col li:first-child { margin-top: 0; }
.pc__col li::before { position: absolute; left: 0; top: -1px; font-weight: 800; font-size: 1.1rem; }
.pc--pro li::before { content: "+"; color: #16875f; }
.pc--con li::before { content: "\2212"; color: #c0392b; }
.pc__badge { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 7px; color: #fff; font-size: .95rem; }
.pc--pro .pc__badge { background: #16875f; }
.pc--con .pc__badge { background: #c0392b; }

/* ---------- Inline CTA --------------------------------------------------- */
.cta-inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding: clamp(1.1rem, .9rem + 1vw, 1.6rem) clamp(1.2rem, 1rem + 1vw, 1.9rem);
  border-radius: var(--radius); background: var(--ink-700); color: var(--on-dark);
  border: 1px solid rgba(255, 255, 255, .1);
}
.cta-inline p { margin: 0; font-weight: 700; color: #fff; font-size: clamp(1rem, .95rem + .3vw, 1.1rem); }
.cta-inline small { display: block; font-weight: 400; font-size: .84rem; color: var(--on-dark-soft); margin-top: .2rem; }

/* ---------- Figures ------------------------------------------------------ */
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.figure figcaption { margin-top: .6rem; font-size: var(--fs-small); color: var(--text-dim); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: var(--gap); align-items: center; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { display: grid; gap: .7rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__item[open] { border-color: var(--emerald); }
.faq__q { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; font-size: 1rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: ""; margin-left: auto; width: 11px; height: 11px; border-right: 2.5px solid var(--emerald); border-bottom: 2.5px solid var(--emerald); transform: rotate(45deg) translate(-2px, -2px); transition: transform .25s var(--ease); }
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translate(-4px, -4px); }
.faq__a { padding: 0 1.25rem 1.2rem; color: var(--text-soft); }

/* ---------- Final CTA band ----------------------------------------------- */
.cta-band { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); background: var(--grad-night); color: var(--on-dark); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: -40% -10% auto; height: 140%; background: radial-gradient(ellipse at 50% 20%, rgba(248, 165, 27, .25), transparent 62%); }
.cta-band > .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 46rem; margin: .9rem auto 0; color: var(--on-dark-soft); }
.cta-band .btn { margin-top: 1.7rem; }
.cta-band small { display: block; margin-top: 1.1rem; font-size: var(--fs-small); color: rgba(255, 255, 255, .55); }

/* ---------- Prose (legal pages) ------------------------------------------ */
.panel { max-width: 900px; margin-inline: auto; padding: clamp(1.4rem, 1rem + 1.6vw, 2.6rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2.1em; padding-bottom: .5rem; border-bottom: 2px solid var(--line); }
.prose h3 { margin-top: 1.5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose a { color: #a06400; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--amber-500); }
.prose li { color: var(--text-soft); }

.related { margin-top: 2rem; padding: 1.2rem 1.3rem; background: var(--surface-2); border-radius: var(--radius); }
.related h2 { margin: 0 0 .7rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); border: 0; padding: 0; }
.related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.related li { margin: 0; }
.related a { color: var(--emerald-dim); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Forms -------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; max-width: 34rem; }
.form label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .35rem; }
.form input, .form textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; font-size: 1rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form textarea:focus { border-color: var(--amber-400); box-shadow: 0 0 0 4px rgba(248, 165, 27, .2); outline: none; }
.form textarea { min-height: 150px; resize: vertical; }
.form__hint { font-size: var(--fs-small); color: var(--text-dim); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li { margin: 0; }
.contact-list strong { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { padding-block: clamp(2.25rem, 1.8rem + 2vw, 3.5rem) 2rem; background: var(--ink-900); color: var(--on-dark-soft); font-size: .93rem; }
.site-footer a { color: var(--on-dark-soft); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--amber-300); }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); gap: clamp(1.6rem, 1.2rem + 2vw, 3rem); padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__brand img { height: 58px; width: auto; }
.footer__brand p { margin-top: .9rem; color: rgba(255, 255, 255, .55); font-size: .87rem; }
.footer__col h3 { margin-bottom: .9rem; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-top: .55rem; }
.footer__col li:first-child { margin-top: 0; }
.footer__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; padding-block: 1.6rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__badges img { height: auto; width: auto; max-height: 28px; max-width: 125px; opacity: .72; transition: opacity .2s var(--ease); }
.footer__badges a:hover img { opacity: 1; }
.footer__age { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .45); font-weight: 800; color: #fff; font-size: .88rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .83rem; color: rgba(255, 255, 255, .5); }
.footer__disclaimer { margin-top: .9rem; max-width: 74ch; font-size: .79rem; line-height: 1.62; color: rgba(255, 255, 255, .55); }

/* ---------- Back to top + catfish ---------------------------------------- */
.to-top {
  position: fixed; right: clamp(.85rem, .5rem + 1vw, 1.6rem); bottom: clamp(.85rem, .5rem + 1vw, 1.6rem);
  z-index: 90; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 0;
  border-radius: 10px; background: var(--grad-amber); color: #3a2100; box-shadow: var(--shadow);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, bottom .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 19px; height: 19px; }
body.has-catfish .to-top { bottom: calc(clamp(.85rem, .5rem + 1vw, 1.6rem) + 74px); }

.catfish {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem clamp(.8rem, .5rem + 1.5vw, 1.5rem);
  background: rgba(4, 18, 15, .96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--amber-400); color: var(--on-dark);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.catfish.is-visible { transform: translateY(0); }
.catfish__text { flex: 1 1 auto; min-width: 0; }
.catfish__text b { display: block; font-size: .95rem; color: #fff; }
.catfish__text span { display: block; font-size: .78rem; color: var(--on-dark-soft); }
.catfish .btn { flex: 0 0 auto; }
.catfish__close {
  flex: 0 0 auto; width: 32px; height: 32px; padding: 0; border: 0; border-radius: 8px;
  background: rgba(255, 255, 255, .1); color: #fff; font-size: 1.05rem; line-height: 1; cursor: pointer;
}
.catfish__close:hover { background: rgba(255, 255, 255, .2); }
@media (max-width: 560px) {
  .catfish { gap: .6rem; padding: .6rem .7rem; }
  .catfish__text span { display: none; }
  .catfish .btn { min-height: 42px; padding: .5rem 1rem; font-size: .82rem; }
}

/* ---------- Legal / info pages ------------------------------------------- */
.hero--page .hero__inner { grid-template-columns: 1fr; padding-block: clamp(2rem, 1.5rem + 3vw, 3.5rem); }
.hero--page::before { opacity: .55; }
.page-section { padding-block: var(--section-y); }
.back-home { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.back-home a { font-weight: 700; }
