/* ElevaEstrecho — independent design system (not RiseSeat) */
:root {
  --ink: #14221f;
  --ink-soft: #2a3d38;
  --fog: #e4ece8;
  --mist: #f3f7f5;
  --paper: #fbfcfb;
  --pine: #1f6b5a;
  --pine-deep: #154d41;
  --steel: #3d5a73;
  --line: #c5d4ce;
  --warn: #8a4b2e;
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Karla", sans-serif;
  --shadow: 0 18px 50px rgba(20, 34, 31, 0.12);
  --max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(61, 90, 115, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(31, 107, 90, 0.1), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 40%, var(--fog) 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font-family: inherit; }

.ee-wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* ——— Header v2: utility strip + stacked brand dock ——— */
.ee-topbar {
  background:
    repeating-linear-gradient(
      -18deg,
      #2a4558 0 10px,
      #243d4e 10px 20px
    );
  color: #d8e4ec;
  font-size: 0.78rem;
}
.ee-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  min-height: 2.35rem;
  padding: 0.35rem 0;
}
.ee-topbar__ad {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f0b429;
  color: #1a2430;
  padding: 0.2rem 0.55rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  padding-right: 0.85rem;
}
.ee-topbar a {
  color: #e7f0f6;
  text-decoration: none;
  font-weight: 600;
}
.ee-topbar a:hover { text-decoration: underline; }
.ee-topbar__note {
  font-weight: 600;
  opacity: 0.95;
}
@media (max-width: 720px) {
  .ee-topbar__note { width: 100%; }
}

.ee-ad-banner {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  background: #fff8e6;
  border: 1px solid #e2c56a;
  border-left: 5px solid #f0b429;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
}
.ee-ad-banner strong { color: #14221f; }

.ee-seller-box {
  margin-top: 1.1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #e4f0eb;
  max-width: 36rem;
}
.ee-seller-box strong { color: #fff; }

.ee-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 3px solid #1f6b5a;
  box-shadow: 0 10px 28px rgba(20, 34, 31, 0.08);
}
.ee-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 1rem;
  min-height: 5.1rem;
}
.ee-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.65rem 0;
}
.ee-logo__mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  color: #fff;
  background: linear-gradient(145deg, #1f6b5a 0%, #3d5a73 100%);
  border-radius: 0 12px 0 12px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}
.ee-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.ee-logo__text span:first-child {
  font-size: 1.35rem;
  color: #154d41;
}
.ee-logo__text span:last-child {
  font-size: 1.05rem;
  color: #3d5a73;
}

.ee-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0 0.5rem;
}
.ee-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
}
.ee-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: #1f6b5a;
  transition: width 0.2s ease, left 0.2s ease;
}
.ee-nav a:hover {
  color: #154d41;
  background: rgba(31, 107, 90, 0.08);
}
.ee-nav a:hover::after {
  width: 40%;
  left: 30%;
}

.ee-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}
.ee-header__price {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
  padding-right: 0.35rem;
  border-right: 2px solid #c5d4ce;
  margin-right: 0.15rem;
}
.ee-header__price small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3d5a73;
  font-weight: 700;
}
.ee-header__price strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #154d41;
}

.ee-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.ee-btn:hover { transform: translateY(-1px); }
.ee-btn--primary { background: var(--pine); color: #fff; }
.ee-btn--primary:hover { background: var(--pine-deep); }
.ee-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.ee-btn--ghost:hover { border-color: var(--pine); color: var(--pine-deep); }
.ee-btn--light { background: #fff; color: var(--pine-deep); }
.ee-btn--sm { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
.ee-btn--buy {
  background: #14221f;
  color: #fff;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 1.45rem;
  box-shadow: 4px 4px 0 #f0b429;
}
.ee-btn--buy:hover {
  background: #1f6b5a;
  box-shadow: 4px 4px 0 #3d5a73;
}

.ee-menu-btn {
  display: inline-flex;
  width: 2.7rem;
  height: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 2px solid #14221f;
  background: #f0b429;
  border-radius: 0;
  cursor: pointer;
}
.ee-menu-btn span,
.ee-menu-btn span::before,
.ee-menu-btn span::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: #14221f;
  position: relative;
}
.ee-menu-btn span::before,
.ee-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.ee-menu-btn span::before { top: -5px; }
.ee-menu-btn span::after { top: 5px; }

#ee-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: #f3f7f5;
  border-top: 1px solid var(--line);
}
#ee-mobile-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}
#ee-mobile-nav a:hover { background: #fff; color: #1f6b5a; }

@media (min-width: 900px) {
  .ee-nav { display: flex; }
  .ee-header__price { display: flex; }
  .ee-menu-btn { display: none; }
}
@media (max-width: 899px) {
  .ee-header__row { grid-template-columns: 1fr auto; }
  .ee-nav { display: none; }
}

/* Hero — full-bleed, brand-first */
.ee-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4faf7;
}
.ee-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ee-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: ee-drift 18s ease-in-out infinite alternate;
}
.ee-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 35, 31, 0.88) 0%, rgba(15, 35, 31, 0.55) 42%, rgba(15, 35, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 35, 31, 0.55), transparent 45%);
}
.ee-hero__content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  max-width: 38rem;
  animation: ee-rise 0.9s ease both;
}
.ee-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #b7d4cb;
  margin: 0 0 0.85rem;
}
.ee-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}
.ee-hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 0 0 0.35rem;
  color: #fff;
}
.ee-hero p {
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  color: #d7e7e1;
  max-width: 34rem;
}
.ee-hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.ee-hero__meta {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #b9cec7;
}

@keyframes ee-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@keyframes ee-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.ee-section { padding: 4.5rem 0; }
.ee-section--band {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}
.ee-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
.ee-lead {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 1.05rem;
}

.ee-split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .ee-split { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; }
  .ee-split--rev > :first-child { order: 2; }
}

.ee-feature-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.ee-feature-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  animation: ee-rise 0.7s ease both;
}
.ee-feature-list li:nth-child(2) { animation-delay: 0.08s; }
.ee-feature-list li:nth-child(3) { animation-delay: 0.16s; }
.ee-feature-list li:nth-child(4) { animation-delay: 0.24s; }
.ee-feature-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
}
.ee-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--pine);
  font-size: 1.2rem;
}

.ee-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #d7e0db;
}
.ee-media-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.ee-rail {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .ee-rail { grid-template-columns: repeat(2, 1fr); }
}
.ee-rail article {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.ee-rail img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.ee-rail h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.25rem;
}
.ee-rail ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.ee-gallery {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ee-gallery img {
  flex: 0 0 min(72vw, 280px);
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.ee-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ee-specs th,
.ee-specs td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.ee-specs th {
  width: 42%;
  font-weight: 700;
  color: var(--ink);
}
.ee-specs td { color: var(--ink-soft); }

.ee-price-panel {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.ee-price-panel div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
}
.ee-price-panel .ee-total {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 0.35rem;
}

.ee-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.ee-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
}
.ee-faq summary::-webkit-details-marker { display: none; }
.ee-faq p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.ee-cta-band {
  margin: 2rem 0 0;
  padding: 2.5rem 1.5rem;
  background:
    linear-gradient(135deg, var(--pine-deep), var(--steel));
  color: #f3faf7;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.ee-cta-band::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.ee-cta-band h2 {
  color: #fff;
  margin: 0;
  max-width: 18ch;
}
.ee-cta-band p { color: #d5e8e1; max-width: 36rem; }
.ee-cta-band .ee-hero__cta { position: relative; z-index: 1; }

/* ——— Footer v2: light editorial slab + mega brand ——— */
.ee-footer {
  margin-top: 4.5rem;
  background:
    linear-gradient(180deg, #eef4f1 0%, #e4ece8 100%);
  color: var(--ink);
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.ee-footer__ribbon {
  height: 10px;
  background: linear-gradient(90deg, #f0b429 0 22%, #1f6b5a 22% 58%, #3d5a73 58% 100%);
}
.ee-footer__main {
  display: grid;
  gap: 2rem;
  padding: 2.75rem 0 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .ee-footer__main {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}
.ee-footer__mega {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0;
  color: #154d41;
}
.ee-footer__tag {
  margin: 0.85rem 0 1.25rem;
  max-width: 28rem;
  color: var(--ink-soft);
  font-size: 1rem;
}
.ee-footer__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid #3d5a73;
  padding: 1.15rem 1.2rem;
  box-shadow: 8px 8px 0 rgba(61, 90, 115, 0.12);
}
.ee-footer__panel h2 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
  color: #3d5a73;
}
.ee-footer__panel address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ee-footer__panel a {
  color: #154d41;
  font-weight: 700;
  text-decoration: none;
}
.ee-footer__panel a:hover { text-decoration: underline; }

.ee-footer__legal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  color: #14221f;
}
.ee-footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: center;
}
.ee-footer__legal-nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: #2a3d38;
  padding: 0.25rem 0.45rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid transparent;
}
.ee-footer__legal-nav a:hover {
  border-color: #1f6b5a;
  color: #154d41;
  background: #fff;
}
.ee-footer__legal-nav span {
  color: #9aabb0;
  font-size: 0.75rem;
  user-select: none;
}

.ee-footer__base {
  border-top: 1px dashed #b7c7c0;
  padding: 1rem 0 1.35rem;
  font-size: 0.78rem;
  color: #5d726b;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}
.ee-footer__watermark {
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 12rem);
  letter-spacing: -0.06em;
  color: rgba(31, 107, 90, 0.07);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

/* Inner pages */
.ee-page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.ee-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
}
.ee-page-hero p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  max-width: 40rem;
}
.ee-prose {
  padding: 2.5rem 0 4rem;
  max-width: 44rem;
}
.ee-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2.25rem 0 0.65rem;
}
.ee-prose h3 {
  font-size: 1.05rem;
  margin: 1.4rem 0 0.45rem;
}
.ee-prose p,
.ee-prose li { color: var(--ink-soft); }
.ee-prose ul,
.ee-prose ol { padding-left: 1.15rem; }
.ee-prose strong { color: var(--ink); }
.ee-prose a { color: #154d41; font-weight: 600; }
.ee-prose code {
  font-size: 0.85em;
  background: rgba(31, 107, 90, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
.ee-aside {
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--pine);
  background: rgba(31, 107, 90, 0.08);
  font-size: 0.92rem;
}
.ee-updated {
  margin-top: 2rem !important;
  font-size: 0.82rem !important;
  color: #6a7f77 !important;
}
.ee-legal-layout {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
  align-items: start;
}
@media (min-width: 960px) {
  .ee-legal-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.5rem;
  }
  .ee-legal-layout .ee-prose {
    max-width: none;
    padding-top: 0.5rem;
  }
}
.ee-toc {
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(61, 90, 115, 0.08);
}
.ee-toc strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}
.ee-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.ee-toc a {
  color: #154d41;
  text-decoration: none;
  font-weight: 600;
}
.ee-toc a:hover { text-decoration: underline; }
.ee-related {
  position: sticky;
  top: 6.5rem;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid #1f6b5a;
  border-radius: var(--radius);
}
.ee-related h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.ee-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.ee-related a {
  display: block;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid #e6eeea;
}
.ee-related a:hover { color: #1f6b5a; }
.ee-form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .ee-form-row { grid-template-columns: 1fr 1fr; }
}
.ee-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.ee-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ee-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.35rem; }
.ee-form input,
.ee-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  font: inherit;
}
.ee-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.ee-check button[role="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border: 1px solid var(--pine);
  background: #fff;
  border-radius: 2px;
  flex: 0 0 auto;
  cursor: pointer;
  display: grid;
  place-content: center;
  padding: 0;
  color: #fff;
}
.ee-check button[role="checkbox"][aria-checked="true"] {
  background: var(--pine);
}

.ee-withdraw {
  border: 1px dashed var(--line);
  padding: 1.25rem;
  background: #fff;
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  .ee-hero__media img,
  .ee-feature-list li,
  .ee-hero__content { animation: none; }
}
