/* Layout grid (mobile-first; breakpoints 576/768/992/1200/1400). */
:root {
  --se-gutter-x: 1.5rem;
  --se-gutter-y: 0;
}

/* ---------- Container ---------- */
.se-container,
.se-container-fluid,
.se-container-sm,
.se-container-md,
.se-container-lg,
.se-container-xl,
.se-container-xxl {
  width: 100%;
  padding-right: calc(var(--se-gutter-x) * .5);
  padding-left: calc(var(--se-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .se-container,
  .se-container-sm { max-width: 540px; }
}
@media (min-width: 768px) {
  .se-container,
  .se-container-sm,
  .se-container-md { max-width: 720px; }
}
@media (min-width: 992px) {
  .se-container,
  .se-container-sm,
  .se-container-md,
  .se-container-lg { max-width: 960px; }
}
@media (min-width: 1200px) {
  .se-container,
  .se-container-sm,
  .se-container-md,
  .se-container-lg,
  .se-container-xl { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .se-container,
  .se-container-sm,
  .se-container-md,
  .se-container-lg,
  .se-container-xl,
  .se-container-xxl { max-width: 1320px; }
}

/* ---------- Row ---------- */
.se-row {
  --se-gutter-x: 1.5rem;
  --se-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--se-gutter-y) * -1);
  margin-right: calc(var(--se-gutter-x) * -.5);
  margin-left: calc(var(--se-gutter-x) * -.5);
}
.se-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--se-gutter-x) * .5);
  padding-left: calc(var(--se-gutter-x) * .5);
  margin-top: var(--se-gutter-y);
}

/* ---------- Cols (xs, mobile baseline) ---------- */
.se-col       { flex: 1 0 0%; }
.se-col-auto  { flex: 0 0 auto; width: auto; }
.se-col-1  { flex: 0 0 auto; width: 8.33333333%; }
.se-col-2  { flex: 0 0 auto; width: 16.66666667%; }
.se-col-3  { flex: 0 0 auto; width: 25%; }
.se-col-4  { flex: 0 0 auto; width: 33.33333333%; }
.se-col-5  { flex: 0 0 auto; width: 41.66666667%; }
.se-col-6  { flex: 0 0 auto; width: 50%; }
.se-col-7  { flex: 0 0 auto; width: 58.33333333%; }
.se-col-8  { flex: 0 0 auto; width: 66.66666667%; }
.se-col-9  { flex: 0 0 auto; width: 75%; }
.se-col-10 { flex: 0 0 auto; width: 83.33333333%; }
.se-col-11 { flex: 0 0 auto; width: 91.66666667%; }
.se-col-12 { flex: 0 0 auto; width: 100%; }

/* ---------- Offsets (xs) ---------- */
.se-offset-1  { margin-left: 8.33333333%; }
.se-offset-2  { margin-left: 16.66666667%; }
.se-offset-3  { margin-left: 25%; }
.se-offset-4  { margin-left: 33.33333333%; }
.se-offset-5  { margin-left: 41.66666667%; }
.se-offset-6  { margin-left: 50%; }
.se-offset-7  { margin-left: 58.33333333%; }
.se-offset-8  { margin-left: 66.66666667%; }
.se-offset-9  { margin-left: 75%; }
.se-offset-10 { margin-left: 83.33333333%; }
.se-offset-11 { margin-left: 91.66666667%; }

/* ---------- Order (xs) ---------- */
.se-order-first { order: -1; }
.se-order-last  { order: 6; }
.se-order-0 { order: 0; }
.se-order-1 { order: 1; }
.se-order-2 { order: 2; }
.se-order-3 { order: 3; }
.se-order-4 { order: 4; }
.se-order-5 { order: 5; }

/* ---------- Gutters (xs) ---------- */
.se-g-0,  .se-gx-0 { --se-gutter-x: 0; }
.se-g-0,  .se-gy-0 { --se-gutter-y: 0; }
.se-g-1,  .se-gx-1 { --se-gutter-x: .25rem; }
.se-g-1,  .se-gy-1 { --se-gutter-y: .25rem; }
.se-g-2,  .se-gx-2 { --se-gutter-x: .5rem; }
.se-g-2,  .se-gy-2 { --se-gutter-y: .5rem; }
.se-g-3,  .se-gx-3 { --se-gutter-x: 1rem; }
.se-g-3,  .se-gy-3 { --se-gutter-y: 1rem; }
.se-g-4,  .se-gx-4 { --se-gutter-x: 1.5rem; }
.se-g-4,  .se-gy-4 { --se-gutter-y: 1.5rem; }
.se-g-5,  .se-gx-5 { --se-gutter-x: 3rem; }
.se-g-5,  .se-gy-5 { --se-gutter-y: 3rem; }

/* ============================================================
   sm (>= 576px)
   ============================================================ */
@media (min-width: 576px) {
  .se-col-sm       { flex: 1 0 0%; }
  .se-col-sm-auto  { flex: 0 0 auto; width: auto; }
  .se-col-sm-1  { flex: 0 0 auto; width: 8.33333333%; }
  .se-col-sm-2  { flex: 0 0 auto; width: 16.66666667%; }
  .se-col-sm-3  { flex: 0 0 auto; width: 25%; }
  .se-col-sm-4  { flex: 0 0 auto; width: 33.33333333%; }
  .se-col-sm-5  { flex: 0 0 auto; width: 41.66666667%; }
  .se-col-sm-6  { flex: 0 0 auto; width: 50%; }
  .se-col-sm-7  { flex: 0 0 auto; width: 58.33333333%; }
  .se-col-sm-8  { flex: 0 0 auto; width: 66.66666667%; }
  .se-col-sm-9  { flex: 0 0 auto; width: 75%; }
  .se-col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
  .se-col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
  .se-col-sm-12 { flex: 0 0 auto; width: 100%; }
  .se-offset-sm-0  { margin-left: 0; }
  .se-offset-sm-1  { margin-left: 8.33333333%; }
  .se-offset-sm-2  { margin-left: 16.66666667%; }
  .se-offset-sm-3  { margin-left: 25%; }
  .se-offset-sm-4  { margin-left: 33.33333333%; }
  .se-offset-sm-5  { margin-left: 41.66666667%; }
  .se-offset-sm-6  { margin-left: 50%; }
  .se-offset-sm-7  { margin-left: 58.33333333%; }
  .se-offset-sm-8  { margin-left: 66.66666667%; }
  .se-offset-sm-9  { margin-left: 75%; }
  .se-offset-sm-10 { margin-left: 83.33333333%; }
  .se-offset-sm-11 { margin-left: 91.66666667%; }
  .se-order-sm-first { order: -1; }
  .se-order-sm-last  { order: 6; }
  .se-order-sm-0 { order: 0; }
  .se-order-sm-1 { order: 1; }
  .se-order-sm-2 { order: 2; }
  .se-order-sm-3 { order: 3; }
  .se-order-sm-4 { order: 4; }
  .se-order-sm-5 { order: 5; }
}

/* ============================================================
   md (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .se-col-md       { flex: 1 0 0%; }
  .se-col-md-auto  { flex: 0 0 auto; width: auto; }
  .se-col-md-1  { flex: 0 0 auto; width: 8.33333333%; }
  .se-col-md-2  { flex: 0 0 auto; width: 16.66666667%; }
  .se-col-md-3  { flex: 0 0 auto; width: 25%; }
  .se-col-md-4  { flex: 0 0 auto; width: 33.33333333%; }
  .se-col-md-5  { flex: 0 0 auto; width: 41.66666667%; }
  .se-col-md-6  { flex: 0 0 auto; width: 50%; }
  .se-col-md-7  { flex: 0 0 auto; width: 58.33333333%; }
  .se-col-md-8  { flex: 0 0 auto; width: 66.66666667%; }
  .se-col-md-9  { flex: 0 0 auto; width: 75%; }
  .se-col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .se-col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  .se-col-md-12 { flex: 0 0 auto; width: 100%; }
  .se-offset-md-0  { margin-left: 0; }
  .se-offset-md-1  { margin-left: 8.33333333%; }
  .se-offset-md-2  { margin-left: 16.66666667%; }
  .se-offset-md-3  { margin-left: 25%; }
  .se-offset-md-4  { margin-left: 33.33333333%; }
  .se-offset-md-5  { margin-left: 41.66666667%; }
  .se-offset-md-6  { margin-left: 50%; }
  .se-offset-md-7  { margin-left: 58.33333333%; }
  .se-offset-md-8  { margin-left: 66.66666667%; }
  .se-offset-md-9  { margin-left: 75%; }
  .se-offset-md-10 { margin-left: 83.33333333%; }
  .se-offset-md-11 { margin-left: 91.66666667%; }
  .se-order-md-first { order: -1; }
  .se-order-md-last  { order: 6; }
  .se-order-md-0 { order: 0; }
  .se-order-md-1 { order: 1; }
  .se-order-md-2 { order: 2; }
  .se-order-md-3 { order: 3; }
  .se-order-md-4 { order: 4; }
  .se-order-md-5 { order: 5; }
}

/* ============================================================
   lg (>= 992px)
   ============================================================ */
@media (min-width: 992px) {
  .se-col-lg       { flex: 1 0 0%; }
  .se-col-lg-auto  { flex: 0 0 auto; width: auto; }
  .se-col-lg-1  { flex: 0 0 auto; width: 8.33333333%; }
  .se-col-lg-2  { flex: 0 0 auto; width: 16.66666667%; }
  .se-col-lg-3  { flex: 0 0 auto; width: 25%; }
  .se-col-lg-4  { flex: 0 0 auto; width: 33.33333333%; }
  .se-col-lg-5  { flex: 0 0 auto; width: 41.66666667%; }
  .se-col-lg-6  { flex: 0 0 auto; width: 50%; }
  .se-col-lg-7  { flex: 0 0 auto; width: 58.33333333%; }
  .se-col-lg-8  { flex: 0 0 auto; width: 66.66666667%; }
  .se-col-lg-9  { flex: 0 0 auto; width: 75%; }
  .se-col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .se-col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  .se-col-lg-12 { flex: 0 0 auto; width: 100%; }
  .se-offset-lg-0  { margin-left: 0; }
  .se-offset-lg-1  { margin-left: 8.33333333%; }
  .se-offset-lg-2  { margin-left: 16.66666667%; }
  .se-offset-lg-3  { margin-left: 25%; }
  .se-offset-lg-4  { margin-left: 33.33333333%; }
  .se-offset-lg-5  { margin-left: 41.66666667%; }
  .se-offset-lg-6  { margin-left: 50%; }
  .se-offset-lg-7  { margin-left: 58.33333333%; }
  .se-offset-lg-8  { margin-left: 66.66666667%; }
  .se-offset-lg-9  { margin-left: 75%; }
  .se-offset-lg-10 { margin-left: 83.33333333%; }
  .se-offset-lg-11 { margin-left: 91.66666667%; }
  .se-order-lg-first { order: -1; }
  .se-order-lg-last  { order: 6; }
  .se-order-lg-0 { order: 0; }
  .se-order-lg-1 { order: 1; }
  .se-order-lg-2 { order: 2; }
  .se-order-lg-3 { order: 3; }
  .se-order-lg-4 { order: 4; }
  .se-order-lg-5 { order: 5; }
}

/* ============================================================
   xl (>= 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .se-col-xl       { flex: 1 0 0%; }
  .se-col-xl-auto  { flex: 0 0 auto; width: auto; }
  .se-col-xl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .se-col-xl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .se-col-xl-3  { flex: 0 0 auto; width: 25%; }
  .se-col-xl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .se-col-xl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .se-col-xl-6  { flex: 0 0 auto; width: 50%; }
  .se-col-xl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .se-col-xl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .se-col-xl-9  { flex: 0 0 auto; width: 75%; }
  .se-col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .se-col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .se-col-xl-12 { flex: 0 0 auto; width: 100%; }
  .se-offset-xl-0  { margin-left: 0; }
  .se-offset-xl-1  { margin-left: 8.33333333%; }
  .se-offset-xl-2  { margin-left: 16.66666667%; }
  .se-offset-xl-3  { margin-left: 25%; }
  .se-offset-xl-4  { margin-left: 33.33333333%; }
  .se-offset-xl-5  { margin-left: 41.66666667%; }
  .se-offset-xl-6  { margin-left: 50%; }
  .se-offset-xl-7  { margin-left: 58.33333333%; }
  .se-offset-xl-8  { margin-left: 66.66666667%; }
  .se-offset-xl-9  { margin-left: 75%; }
  .se-offset-xl-10 { margin-left: 83.33333333%; }
  .se-offset-xl-11 { margin-left: 91.66666667%; }
  .se-order-xl-first { order: -1; }
  .se-order-xl-last  { order: 6; }
  .se-order-xl-0 { order: 0; }
  .se-order-xl-1 { order: 1; }
  .se-order-xl-2 { order: 2; }
  .se-order-xl-3 { order: 3; }
  .se-order-xl-4 { order: 4; }
  .se-order-xl-5 { order: 5; }
}

/* ============================================================
   xxl (>= 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  .se-col-xxl       { flex: 1 0 0%; }
  .se-col-xxl-auto  { flex: 0 0 auto; width: auto; }
  .se-col-xxl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .se-col-xxl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .se-col-xxl-3  { flex: 0 0 auto; width: 25%; }
  .se-col-xxl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .se-col-xxl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .se-col-xxl-6  { flex: 0 0 auto; width: 50%; }
  .se-col-xxl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .se-col-xxl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .se-col-xxl-9  { flex: 0 0 auto; width: 75%; }
  .se-col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .se-col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .se-col-xxl-12 { flex: 0 0 auto; width: 100%; }
  .se-offset-xxl-0  { margin-left: 0; }
  .se-offset-xxl-1  { margin-left: 8.33333333%; }
  .se-offset-xxl-2  { margin-left: 16.66666667%; }
  .se-offset-xxl-3  { margin-left: 25%; }
  .se-offset-xxl-4  { margin-left: 33.33333333%; }
  .se-offset-xxl-5  { margin-left: 41.66666667%; }
  .se-offset-xxl-6  { margin-left: 50%; }
  .se-offset-xxl-7  { margin-left: 58.33333333%; }
  .se-offset-xxl-8  { margin-left: 66.66666667%; }
  .se-offset-xxl-9  { margin-left: 75%; }
  .se-offset-xxl-10 { margin-left: 83.33333333%; }
  .se-offset-xxl-11 { margin-left: 91.66666667%; }
  .se-order-xxl-first { order: -1; }
  .se-order-xxl-last  { order: 6; }
  .se-order-xxl-0 { order: 0; }
  .se-order-xxl-1 { order: 1; }
  .se-order-xxl-2 { order: 2; }
  .se-order-xxl-3 { order: 3; }
  .se-order-xxl-4 { order: 4; }
  .se-order-xxl-5 { order: 5; }
}

/* SITE: SovereignEdge | Architecture: A (flat) | Design: Nordic Calm #27 | Generated: 2026-05-18 */
/* Prefix: se | CSS: fairway/sovereign.css | IMG: divot/ */

/* === TOKENS ================================================== */
:root {
  --se-bg:        #fef9ef;
  --se-bg-deep:   #f0ebe0;
  --se-bg-dark:   #2d3a2e;
  --se-text:      #1a1a1a;
  --se-primary:   #5a6c5d;
  --se-accent:    #d4956a;
  --se-muted:     #7a7a7a;
  --se-border:    #e8e3d8;
  --se-white:     #ffffff;
  --se-cream-lt:  #fdfaf4;
  --se-radius:    4px;
  --se-shadow:    0 2px 8px rgba(90,108,93,.06);
  --se-display:   'Cormorant Garamond', Georgia, serif;
  --se-body:      'Inter', system-ui, sans-serif;
  --se-mono:      'Courier New', monospace;
  --se-trans:     .18s ease;
}

/* === BASE ==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--se-body);
  font-size: 1rem;
  color: var(--se-text);
  background: var(--se-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--se-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
input, select, textarea, button { font-family: inherit; font-size: 1rem; }

/* === PRELOADER ================================================ */
.se-preloader {
  position: fixed; inset: 0;
  background: var(--se-bg-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}
.se-preloader.se-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.se-preloader__word {
  font-family: var(--se-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--se-bg);
  letter-spacing: .12em;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--se-accent);
  width: 0;
  animation: se-typewriter 1.6s steps(13, end) .3s forwards,
             se-caret-blink .75s step-end 1.9s 3;
}
@keyframes se-typewriter {
  from { width: 0; }
  to   { width: 13ch; }
}
@keyframes se-caret-blink {
  0%, 100% { border-color: var(--se-accent); }
  50%       { border-color: transparent; }
}

/* === AGE GATE ================================================= */
.se-agegate {
  position: fixed; inset: 0;
  background: rgba(45,58,46,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 8888;
  padding: 1rem;
}
.se-agegate.se-hidden { display: none; }
.se-agegate__box {
  background: var(--se-bg);
  border-radius: var(--se-radius);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45,58,46,.25);
}
.se-agegate__icon { font-size: 3rem; line-height: 1; margin-bottom: .75rem; }
.se-agegate__title { font-family: var(--se-display); font-size: 1.6rem; font-weight: 600; margin-bottom: .5rem; }
.se-agegate__sub { color: var(--se-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.se-agegate__btn {
  display: inline-block;
  background: var(--se-primary);
  color: var(--se-white);
  padding: .8rem 2.2rem;
  border: none; cursor: pointer;
  border-radius: var(--se-radius);
  font-size: 1rem; font-weight: 500;
  letter-spacing: .04em;
  transition: background var(--se-trans);
  min-height: 44px;
}
.se-agegate__btn:hover { background: var(--se-bg-dark); }

/* === COOKIE PANEL slide-in from right ======================== */
.se-cookie {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--se-white);
  box-shadow: -4px 0 20px rgba(0,0,0,.12);
  z-index: 7777;
  flex-direction: column;
  overflow-y: auto;
}
.se-cookie.se-open { display: flex; }
.se-cookie__head {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid var(--se-border);
  display: flex; justify-content: space-between; align-items: center;
}
.se-cookie__head h2 { font-family: var(--se-display); font-size: 1.25rem; font-weight: 600; }
.se-cookie__close {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--se-muted); padding: .25rem;
  min-height: 44px; min-width: 44px;
}
.se-cookie__body { padding: 1.25rem; flex: 1; }
.se-cookie__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid var(--se-border);
}
.se-cookie__row:last-child { border-bottom: none; }
.se-cookie__label { font-weight: 500; font-size: .9rem; }
.se-cookie__desc { font-size: .8rem; color: var(--se-muted); margin-top: .2rem; }
.se-toggle {
  position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; margin-left: 1rem;
}
.se-toggle input { opacity: 0; width: 0; height: 0; }
.se-toggle__slider {
  position: absolute; inset: 0;
  background: var(--se-border); border-radius: 12px; cursor: pointer;
  transition: background var(--se-trans);
}
.se-toggle input:checked + .se-toggle__slider { background: var(--se-primary); }
.se-toggle__slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--se-white);
  left: 3px; top: 3px;
  transition: transform var(--se-trans);
}
.se-toggle input:checked + .se-toggle__slider::before { transform: translateX(20px); }
.se-cookie__foot { padding: 1rem 1.25rem; border-top: 1px solid var(--se-border); display: flex; gap: .75rem; }
.se-cookie__save {
  flex: 1; padding: .75rem;
  background: var(--se-primary); color: var(--se-white);
  border: none; border-radius: var(--se-radius); cursor: pointer;
  font-weight: 500; font-size: .95rem; min-height: 44px;
  transition: background var(--se-trans);
}
.se-cookie__save:hover { background: var(--se-bg-dark); }
.se-cookie__accept-all {
  flex: 1; padding: .75rem;
  background: var(--se-accent); color: var(--se-white);
  border: none; border-radius: var(--se-radius); cursor: pointer;
  font-weight: 500; font-size: .95rem; min-height: 44px;
  transition: background var(--se-trans);
}
.se-cookie__accept-all:hover { background: #c07d52; }
.se-cookiebar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--se-bg-dark); color: var(--se-bg);
  padding: .9rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  z-index: 6666;
  font-size: .88rem;
}
.se-cookiebar.se-hidden { display: none; }
.se-cookiebar p { flex: 1; min-width: 200px; }
.se-cookiebar a { color: var(--se-accent); }
.se-cookiebar__btns { display: flex; gap: .6rem; }
.se-cookiebar__ok {
  background: var(--se-accent); color: var(--se-white);
  border: none; padding: .5rem 1.1rem; border-radius: var(--se-radius);
  cursor: pointer; font-size: .88rem; white-space: nowrap; min-height: 44px;
}
.se-cookiebar__settings {
  background: none; color: var(--se-bg); border: 1px solid rgba(254,249,239,.4);
  padding: .5rem 1rem; border-radius: var(--se-radius);
  cursor: pointer; font-size: .88rem; white-space: nowrap; min-height: 44px;
}

/* === HEADER ================================================== */
.se-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--se-bg);
  border-bottom: 1px solid var(--se-border);
  height: 60px;
}
.se-header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex; align-items: center; gap: 1.25rem;
}
.se-header__brand {
  font-family: var(--se-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--se-primary);
  letter-spacing: .03em;
  flex-shrink: 0;
  display: inline-flex; align-items: center; min-height: 44px;
}
.se-header__brand:hover { text-decoration: none; }
.se-header__nav {
  display: flex; align-items: center; gap: .15rem;
  flex: 1;
}
.se-header__nav a {
  padding: 0 .65rem;
  font-size: .8rem; font-weight: 500;
  color: var(--se-muted);
  border-radius: var(--se-radius);
  transition: color var(--se-trans), background var(--se-trans);
  white-space: nowrap;
  display: inline-flex; align-items: center; min-height: 44px;
}
.se-header__nav a:hover { color: var(--se-primary); background: var(--se-bg-deep); text-decoration: none; }
.se-header__badge {
  background: var(--se-accent);
  color: var(--se-white);
  font-size: .7rem; font-weight: 700;
  padding: .2rem .5rem;
  border-radius: var(--se-radius);
  letter-spacing: .06em;
  flex-shrink: 0;
  margin-left: auto;
}
.se-header__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: .5rem;
  min-height: 44px; min-width: 44px; align-items: center; justify-content: center;
}
.se-header__burger span {
  display: block; width: 22px; height: 2px; background: var(--se-text); border-radius: 2px;
}

/* === HERO ==================================================== */
.se-hero {
  min-height: 420px;
  position: relative;
  display: flex; align-items: flex-end;
  color: var(--se-white);
  overflow: hidden;
}
.se-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,58,46,.88) 0%, rgba(45,58,46,.45) 60%, rgba(45,58,46,.2) 100%);
  z-index: 1;
}
.se-hero__content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}
.se-hero__kicker {
  display: inline-block;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--se-accent); margin-bottom: .75rem;
}
.se-hero h1 {
  font-family: var(--se-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 1rem;
}
.se-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 1.25rem;
}
.se-hero__meta {
  font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .04em;
}

/* === SECTION SHARED ========================================== */
.se-section { padding: 4rem 0; }
.se-section--alt { background: var(--se-bg-deep); }
.se-section--dark { background: var(--se-bg-dark); color: var(--se-bg); }
.se-wrap { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.se-section-head { text-align: center; margin-bottom: 2.5rem; }
.se-section-head h2 {
  font-family: var(--se-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; margin-bottom: .5rem;
}
.se-section-head p { color: var(--se-muted); max-width: 560px; margin: 0 auto; }
.se-section-head--light h2 { color: var(--se-bg); }
.se-section-head--light p { color: rgba(254,249,239,.7); }

/* === AFFILIATE DISCLOSURE pub-receipt ========================= */
.se-receipt {
  background: var(--se-bg-deep);
  border: 1px dashed var(--se-border);
  border-radius: var(--se-radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--se-mono);
  font-size: .82rem;
  line-height: 1.8;
}
.se-receipt__head {
  display: flex; justify-content: space-between;
  border-bottom: 1px dashed var(--se-border);
  padding-bottom: .5rem; margin-bottom: .75rem;
  font-weight: 700; font-size: .8rem; letter-spacing: .06em;
}
.se-receipt__row { display: flex; gap: .5rem; }
.se-receipt__key { flex: 0 0 220px; color: var(--se-muted); }
.se-receipt__val { font-weight: 600; color: var(--se-text); }
.se-receipt__val--ok { color: #2d7a4f; }
.se-receipt__val--no { color: #c04040; }
.se-receipt__foot {
  border-top: 1px dashed var(--se-border);
  padding-top: .5rem; margin-top: .75rem;
  font-size: .75rem; color: var(--se-muted);
}
.se-rg-notice {
  background: rgba(90,108,93,.08);
  border-left: 3px solid var(--se-primary);
  border-radius: var(--se-radius);
  padding: .9rem 1.25rem;
  margin-bottom: 2rem;
  font-size: .88rem;
}
.se-rg-notice a { font-weight: 600; color: var(--se-primary); }

/* === COMPARISON TABLE ======================================== */
.se-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1rem; }
.se-table {
  width: 100%; min-width: 640px;
  border-collapse: collapse;
  font-size: .88rem;
}
.se-table th {
  background: var(--se-primary);
  color: var(--se-white);
  padding: .75rem .85rem;
  text-align: center;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.se-table th:first-child { text-align: left; min-width: 140px; }
.se-table td {
  padding: 1rem .85rem;
  border-bottom: 1px solid var(--se-border);
  text-align: center;
  vertical-align: middle;
}
.se-table td:first-child { text-align: left; }
.se-table tr:hover td { background: var(--se-bg-deep); }
.se-table tr:last-child td { border-bottom: none; }
.se-table__partner { display: flex; align-items: center; gap: .65rem; }
.se-table__logo-wrap {
  background: var(--se-bg-deep); border: 1px solid var(--se-border);
  border-radius: var(--se-radius); padding: .3rem .5rem;
  display: flex; align-items: center; min-width: 72px; height: 40px;
}
.se-table__logo { height: 26px; width: auto; max-width: 80px; object-fit: contain; }
.se-table__name { font-weight: 600; font-size: .88rem; }
.se-visit-btn {
  display: inline-block;
  background: var(--se-accent); color: var(--se-white);
  padding: .5rem 1rem;
  border-radius: var(--se-radius); font-weight: 600; font-size: .82rem;
  white-space: nowrap; min-height: 44px; line-height: 2;
  transition: background var(--se-trans);
}
.se-visit-btn:hover { background: #c07d52; text-decoration: none; }
.se-stars { color: var(--se-accent); }
.se-tick { color: #2d7a4f; font-weight: 700; }
.se-cross { color: #9e3c3c; }

/* === PARTNER CARDS =========================================== */
.se-cards { display: grid; gap: 1.25rem; }
.se-card {
  background: var(--se-white);
  border: 1px solid var(--se-border);
  border-radius: var(--se-radius);
  padding: 1.5rem;
  box-shadow: var(--se-shadow);
  display: flex; flex-direction: column; gap: .75rem;
}
.se-card__top { display: flex; align-items: center; gap: 1rem; }
.se-card__logo-frame {
  background: var(--se-bg-deep); border: 1px solid var(--se-border);
  border-radius: var(--se-radius); padding: .5rem .75rem;
  display: flex; align-items: center; justify-content: center;
  min-width: 80px; height: 48px;
}
.se-card__logo { height: 32px; width: auto; max-width: 90px; object-fit: contain; }
.se-card__meta { flex: 1; }
.se-card__brand { font-family: var(--se-display); font-size: 1.15rem; font-weight: 600; }
.se-card__ukgc { font-size: .73rem; color: var(--se-muted); }
.se-card__rating { text-align: right; flex-shrink: 0; }
.se-card__score { font-family: var(--se-display); font-size: 1.45rem; font-weight: 700; color: var(--se-primary); }
.se-card__score-label { font-size: .7rem; color: var(--se-muted); }
.se-card__bonus { font-size: .88rem; background: rgba(90,108,93,.07); border-radius: var(--se-radius); padding: .35rem .7rem; }
.se-card__bullets { list-style: none; font-size: .88rem; }
.se-card__bullets li { padding: .22rem 0; padding-left: 1rem; position: relative; }
.se-card__bullets li::before { content: '◆'; position: absolute; left: 0; color: var(--se-accent); font-size: .6rem; top: .5rem; }
.se-card__cta {
  display: block; background: var(--se-primary); color: var(--se-white);
  padding: .75rem; border-radius: var(--se-radius);
  text-align: center; font-weight: 600; font-size: .92rem;
  transition: background var(--se-trans); min-height: 44px; line-height: 1.4;
}
.se-card__cta:hover { background: var(--se-bg-dark); text-decoration: none; }
.se-card__terms { font-size: .7rem; color: var(--se-muted); }

/* === METHODOLOGY STRIP ======================================= */
.se-method { display: grid; gap: 1.5rem; }
.se-method__item { display: flex; gap: 1rem; align-items: flex-start; }
.se-method__num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--se-primary); color: var(--se-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--se-display); font-size: 1rem; font-weight: 700;
}
.se-method__text h3 { font-family: var(--se-display); font-size: 1.05rem; font-weight: 600; margin-bottom: .2rem; }
.se-method__text p { font-size: .88rem; color: var(--se-muted); }

/* === FAQ ===================================================== */
.se-faq { display: flex; flex-direction: column; gap: .5rem; }
.se-faq__item { border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; }
.se-faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem;
  font-family: var(--se-body); font-size: .95rem; font-weight: 600;
  text-align: left; min-height: 44px;
  transition: background var(--se-trans); color: var(--se-text);
}
.se-faq__q:hover { background: var(--se-bg-deep); }
.se-faq__icon { font-size: 1.2rem; color: var(--se-accent); flex-shrink: 0; transition: transform var(--se-trans); }
.se-faq__item.is-open .se-faq__icon { transform: rotate(45deg); }
.se-faq__a { display: none; padding: 0 1.25rem 1rem; font-size: .9rem; color: var(--se-muted); line-height: 1.75; }
.se-faq__item.is-open .se-faq__a { display: block; }

/* === RESPONSIBLE GAMBLING ==================================== */
.se-rg {
  background: var(--se-bg-deep);
  border: 1px solid var(--se-border);
  border-radius: var(--se-radius);
  padding: 2rem 1.5rem;
}
.se-rg h2 { font-family: var(--se-display); font-size: 1.4rem; font-weight: 600; margin-bottom: .75rem; }
.se-rg p { font-size: .9rem; margin-bottom: .75rem; }
.se-rg__links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.se-rg__link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--se-white); border: 1px solid var(--se-border);
  border-radius: var(--se-radius); padding: .55rem .9rem;
  font-size: .85rem; font-weight: 500; color: var(--se-text);
  min-height: 44px;
  transition: border-color var(--se-trans);
}
.se-rg__link:hover { border-color: var(--se-primary); text-decoration: none; }

/* === AVATAR (initials) ======================================= */
.se-avatar {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--se-display);
  font-size: 22px; font-weight: 700;
  border-radius: 50%;
  text-transform: uppercase;
}
.se-avatar--capsule { width: 96px; border-radius: 50%; }
.se-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.se-avatar--sm { width: 40px; height: 40px; font-size: 14px; }
.se-team-card { text-align: center; }
.se-team-card__name { font-family: var(--se-display); font-size: 1rem; font-weight: 600; margin-top: .75rem; }
.se-team-card__role { font-size: .82rem; color: var(--se-muted); }

/* === USP STRIP ============================================== */
.se-usps { display: grid; gap: 1rem; }
.se-usp { display: flex; gap: .9rem; align-items: flex-start; }
.se-usp__icon { font-size: 1.5rem; flex-shrink: 0; }
.se-usp__text h3 { font-family: var(--se-display); font-size: 1rem; font-weight: 600; margin-bottom: .2rem; }
.se-usp__text p { font-size: .85rem; color: var(--se-muted); }

/* === FOOTER ================================================== */
.se-footer { background: var(--se-bg-dark); color: var(--se-bg); padding: 3rem 0 0; }
.se-footer__grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
.se-footer__brand { font-family: var(--se-display); font-size: 1.4rem; font-weight: 600; color: var(--se-bg); margin-bottom: .5rem; }
.se-footer__tagline { font-size: .82rem; color: rgba(254,249,239,.5); margin-bottom: 1rem; }
.se-footer h4 { font-family: var(--se-display); font-size: .95rem; font-weight: 600; margin-bottom: .75rem; color: var(--se-bg); }
.se-footer nav { display: flex; flex-direction: column; gap: 0; }
.se-footer nav a { font-size: .84rem; color: rgba(254,249,239,.6); transition: color var(--se-trans); display: block; min-height: 44px; line-height: 44px; }
.se-footer nav a:hover { color: var(--se-accent); text-decoration: none; }
.se-reg-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(254,249,239,.1);
}
.se-reg-link { display: flex; align-items: center; transition: opacity var(--se-trans); }
.se-reg-link:hover { opacity: .8; }
.se-logo-frame {
  background: var(--se-bg-dark); border-radius: var(--se-radius);
  padding: .5rem .75rem;
  display: flex; align-items: center; justify-content: center;
  height: 44px; min-width: 80px;
}
.se-logo-frame img { height: 26px; width: auto; max-width: 90px; object-fit: contain; }
.se-footer__rule {
  background: rgba(0,0,0,.2);
  padding: 1rem;
  font-size: .76rem;
  color: rgba(254,249,239,.45);
  text-align: center;
  line-height: 1.7;
}
.se-footer__rule a { color: rgba(254,249,239,.65); }

/* === ARTICLE / LEGAL PAGES ================================== */
.se-article-hero {
  min-height: 180px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.se-article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,58,46,.88), rgba(45,58,46,.4));
  z-index: 1;
}
.se-article-hero__content { position: relative; z-index: 2; padding: 1.5rem 1rem; color: var(--se-white); max-width: 1200px; margin: 0 auto; }
.se-article-hero h1 { font-family: var(--se-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }
.se-deck { font-size: .95rem; color: rgba(255,255,255,.78); margin-top: .4rem; }
.se-article { max-width: 760px; margin: 0 auto; padding: 2.5rem 1rem; }
.se-article h2 { font-family: var(--se-display); font-size: 1.35rem; font-weight: 600; margin: 1.75rem 0 .5rem; }
.se-article h3 { font-family: var(--se-display); font-size: 1.1rem; font-weight: 600; margin: 1.25rem 0 .35rem; }
.se-article p { margin-bottom: .9rem; font-size: .95rem; line-height: 1.75; }
.se-article ul, .se-article ol { padding-left: 1.5rem; margin-bottom: .9rem; }
.se-article li { font-size: .95rem; line-height: 1.75; margin-bottom: .3rem; }
.se-article a { color: var(--se-primary); font-weight: 500; }
.se-breadcrumb { font-size: .82rem; color: var(--se-muted); margin-bottom: 1.5rem; padding-top: 1rem; }
.se-breadcrumb a { color: var(--se-primary); }

/* === CONTACT FORM =========================================== */
.se-form { display: flex; flex-direction: column; gap: .9rem; max-width: 540px; }
.se-form label { font-size: .88rem; font-weight: 600; display: block; margin-bottom: .3rem; }
.se-form input, .se-form select, .se-form textarea {
  width: 100%; padding: .7rem .9rem;
  border: 1px solid var(--se-border); border-radius: var(--se-radius);
  background: var(--se-white); font-size: 1rem; color: var(--se-text);
  transition: border-color var(--se-trans);
}
.se-form input:focus, .se-form textarea:focus { outline: none; border-color: var(--se-primary); }
.se-form textarea { min-height: 130px; resize: vertical; }
.se-form button {
  background: var(--se-primary); color: var(--se-white);
  border: none; padding: .85rem 2rem; border-radius: var(--se-radius);
  font-size: 1rem; font-weight: 600; cursor: pointer; min-height: 44px;
  transition: background var(--se-trans); align-self: flex-start;
}
.se-form button:hover { background: var(--se-bg-dark); }

/* === MEDIA QUERIES ========================================== */
@media (min-width: 576px) {
  .se-footer__grid { grid-template-columns: 1fr 1fr; }
  .se-usps { grid-template-columns: 1fr 1fr; }
  .se-method { grid-template-columns: 1fr 1fr; }
}

/* Mobile base: nav hidden, burger visible, small padding */
.se-hero { min-height: 360px; }
.se-section { padding: 2.5rem 0; }
.se-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
.se-table th, .se-table td { padding: .55rem .45rem; font-size: .76rem; }
.se-visit-btn { padding: .4rem .7rem; font-size: .76rem; }
.se-receipt__key { flex: 0 0 150px; }
.se-footer__grid { grid-template-columns: 1fr; }
.se-header__nav {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--se-bg); flex-direction: column; align-items: flex-start;
  padding: 1.5rem 1rem; gap: 0; overflow-y: auto; z-index: 998;
}
.se-header__nav.is-open { display: flex; }
.se-header__nav a { font-size: 1rem; padding: 0 .5rem; width: 100%; border-bottom: 1px solid var(--se-border); min-height: 44px; display: flex; align-items: center; }
.se-header__burger { display: flex; }

@media (min-width: 576px) {
  .se-section { padding: 3rem 0; }
  .se-hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .se-table th, .se-table td { padding: .7rem .75rem; font-size: .85rem; }
  .se-visit-btn { padding: .5rem 1rem; font-size: .82rem; }
  .se-receipt__key { flex: 0 0 200px; }
}

@media (min-width: 768px) {
  .se-hero { min-height: 520px; }
  .se-section { padding: 5rem 0; }
  .se-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
  .se-table th, .se-table td { padding: 1rem .85rem; font-size: .88rem; }
  .se-visit-btn { padding: .5rem 1rem; font-size: .82rem; }
  .se-receipt__key { flex: 0 0 220px; }
  .se-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .se-usps { grid-template-columns: repeat(4, 1fr); }
  .se-method { grid-template-columns: repeat(4, 1fr); }
  /* Desktop nav */
  .se-header__nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    overflow: visible;
    z-index: auto;
  }
  .se-header__nav a { font-size: .8rem; padding: .45rem .65rem; width: auto; border-bottom: none; }
  .se-header__burger { display: none; }
}

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
