:root {
  --nav: #2b2b2b;
  --forest: #4a7c23;
  --forest-2: #5c9a2c;
  --forest-dark: #2d4a16;
  --accent: #4a7c23;
  --accent-2: #5c9a2c;
  --cream: #1f2933;
  --page: #ffffff;
  --muted: #5b6770;
  --line: #e6e8ea;
  --card: #ffffff;
  --ok: #2f9e44;
  --bad: #c92a2a;
  --shadow: 0 12px 40px rgba(17, 24, 28, 0.08);
  --mud: #ffffff;
  --soil: #2b2b2b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { min-height: 100%; }

body.euk-body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--page);
  color: #1f2933;
  line-height: 1.6;
}

.euk-wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.euk-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav);
}

.euk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.euk-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #f4f4f4;
  text-decoration: none;
  flex-shrink: 0;
}

.euk-nav img.euk-logo,
.euk-brand img,
.euk-logo {
  width: 46px !important;
  height: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #0b1c2c;
  box-shadow: 0 0 0 1px rgba(143,191,74,.35);
}

.euk-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.euk-brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.55rem;
  color: #f4f4f4;
  white-space: nowrap;
}

.euk-brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fbf4a;
  white-space: nowrap;
}

.euk-nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.euk-nav-links a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.euk-nav-links a.is-active,
.euk-nav-links a:hover { color: #8fbf4a; }

.euk-menu-btn {
  display: none;
  background: #8fbf4a;
  border: 0;
  color: #1b1b1b;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 800;
}

.euk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
}

.euk-btn-accent,
.euk-btn-forest { background: var(--forest); color: #fff; }
.euk-btn-accent:hover,
.euk-btn-forest:hover { background: var(--forest-dark); }

.euk-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
  padding: 0.7rem 1.2rem;
}

.euk-btn-ghost.dark {
  color: var(--forest-dark);
  border-color: var(--forest);
}

.euk-hero-photo {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  min-height: calc(100dvh - 76px);
  background: #141c10 url("https://exploreruk.live/images/hero-landrover.jpg") center 38% / cover no-repeat;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.euk-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.euk-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 28, 16, 0.22) 0%, rgba(20, 28, 16, 0.62) 100%);
}

.euk-hero-photo .euk-wrap {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 3rem;
}

@media (prefers-reduced-motion: reduce) {
  .euk-hero-video { display: none; }
}

.euk-hero-photo h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.euk-hero-photo .lead {
  max-width: 38rem;
  margin: 0.9rem 0 1.2rem;
  font-size: 1.15rem;
  color: #f3f4f2;
}

.euk-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #c6e38a;
}

.euk-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

.euk-hero-photo .euk-hero-cancel {
  margin-top: 0.85rem;
  font-weight: 600;
  color: #dff0b8;
}

.euk-value-strip {
  background: #0e140c;
  color: #c6e38a;
  padding: 0.85rem 0;
  text-align: center;
}
.euk-value-strip p {
  margin: 0;
  font-weight: 800;
  font-size: clamp(0.68rem, 1.6vw, 0.82rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.55;
  color: #c6e38a;
}
.euk-value-strip span {
  color: rgba(198, 227, 138, 0.4);
  padding: 0 0.15rem;
}

.euk-new-badge {
  display: inline-block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #f5b301;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  line-height: 1;
  vertical-align: middle;
}

.euk-byd-home {
  padding: 3.2rem 0 3.4rem;
  background: #eef4e4;
}
.euk-byd-home h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 0.95;
  color: var(--forest-dark);
  margin: 0.35rem 0 0.85rem;
}
.euk-byd-home .euk-prose {
  max-width: 42rem;
  margin-bottom: 1.1rem;
}

.euk-price-cancel {
  margin: 0.45rem 0 0.55rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: #dff0b8;
}

.euk-stats {
  background: var(--forest-dark);
  color: #fff;
}

.euk-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.euk-stat {
  padding: 1.4rem 0;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.12);
}

.euk-stat:last-child { border-right: 0; padding-right: 0; }
.euk-stat strong { display: block; font-size: 1.35rem; color: #c6e38a; }

.euk-section { padding: 3.2rem 0; }
.euk-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 0.7rem;
}

.euk-prose {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.euk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.euk-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.euk-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.euk-card-body { padding: 1.15rem 1.2rem 1.3rem; }
.euk-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
}
.euk-card p { color: var(--muted); }

.euk-feature-band {
  padding: 3.4rem 0 3.8rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(143, 191, 74, 0.42) 0%, transparent 52%),
    radial-gradient(ellipse at 92% 100%, rgba(45, 74, 22, 0.22) 0%, transparent 48%),
    linear-gradient(180deg, #e7f0d6 0%, #f3f7ec 48%, #d7e6c4 100%);
}
.euk-feature-band .euk-kicker { color: #3d6b1c; }
.euk-feature-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 0.95;
  color: #1b2a12;
  max-width: 28ch;
  margin: 0.35rem auto 1.6rem;
}
.euk-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #162010;
  text-align: left;
  box-shadow: 0 18px 40px rgba(22, 32, 16, 0.2);
}
.euk-feature-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.euk-feature-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4.2rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 20, 10, 0.92) 58%);
}
.euk-feature-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.euk-feature-card p {
  color: rgba(243, 244, 242, 0.9);
  font-size: 0.95rem;
}

.euk-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.euk-split img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.euk-price {
  margin: 0;
  background: var(--forest);
  color: #fff;
  border-radius: 0;
  padding: 2.2rem 0;
}

.euk-price .euk-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.euk-price .amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.euk-price .euk-kicker { color: #dff0b8; }
.euk-price .euk-btn-accent { background: #fff; color: var(--forest-dark); }

.euk-footer {
  margin-top: 0;
  background: #1f1f1f;
  color: #c5c5c5;
  padding: 2.2rem 0 2.4rem;
  font-size: 0.92rem;
}

.euk-footer-brand { color: #8fbf4a; font-weight: 800; margin-bottom: 0.5rem; font-size: 1.1rem; }
.euk-disclaimer { max-width: 46rem; margin: 0.6rem 0 1.15rem; }
.euk-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}
.euk-footer-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f3f4f2;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 0.95rem 0.55rem 0.85rem;
  font-weight: 700;
  font-size: 0.86rem;
  text-align: center;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.euk-footer-links a:hover {
  color: #c6e38a;
  border-color: #8fbf4a;
  background: rgba(143,191,74,.14);
  transform: translateY(-2px);
}
.euk-foot-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #2d4a16;
  color: #8fbf4a;
  display: grid;
  place-items: center;
}
.euk-foot-ico svg { width: 20px; height: 20px; display: block; }
.euk-footer-links a:hover .euk-foot-ico { background: #8fbf4a; color: #1b1b1b; }
.euk-footer-links a.facebook .euk-foot-ico { background: #1877f2; color: #fff; }
.euk-footer-links a.facebook:hover .euk-foot-ico { background: #3b8aff; color: #fff; }

.euk-auth {
  width: min(460px, calc(100% - 2rem));
  margin: 3rem auto 4rem;
}

.euk-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  margin: 1rem 0;
}

.euk-tabs button {
  background: #f4f6f3;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.euk-tabs button.active {
  background: var(--forest);
  color: white;
  border-color: transparent;
}

.euk-form { display: grid; gap: 0.85rem; }
.euk-form label { font-weight: 700; font-size: 0.86rem; }
.euk-form input, .euk-form select {
  width: 100%;
  margin-top: 0.3rem;
  background: #fff;
  color: #1f2933;
  border: 1px solid #cfd4d0;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}

.hidden { display: none !important; }

.alert {
  display: none;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.alert.error { display: block; background: #ffe3e3; color: #c92a2a; }
.alert.success { display: block; background: #e6f6e8; color: #2b8a3e; }
.alert.warning { display: block; background: #fff3bf; color: #5c4b00; }

.euk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.euk-table th, .euk-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.status-ok { color: var(--ok); font-weight: 800; }
.status-bad { color: var(--bad); font-weight: 800; }

.note { color: var(--muted); font-size: 0.88rem; }
.note a { color: var(--forest); }

.euk-legal {
  max-width: 46rem;
  padding: 2.4rem 0 3.2rem;
}
.euk-legal h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--forest);
  margin: 0.35rem 0 0.6rem;
}
.euk-legal h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  color: var(--forest-dark);
  margin: 1.8rem 0 0.55rem;
}
.euk-legal h3 {
  font-size: 1.02rem;
  margin: 1.1rem 0 0.4rem;
  color: #1f2933;
}
.euk-legal p, .euk-legal li { color: var(--muted); }
.euk-legal p { margin-bottom: 0.85rem; }
.euk-legal ul { margin: 0.3rem 0 1rem 1.15rem; }
.euk-legal li { margin-bottom: 0.35rem; }
.euk-legal a { color: var(--forest); }
.euk-callout {
  background: #f5f7f3;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.95rem 1.05rem;
  margin: 1rem 0 1.2rem;
}
.euk-callout p { margin: 0.35rem 0 0; }

.euk-hub2-home {
  padding: 3.2rem 0 3.6rem;
  background: #141c10;
  color: #e8eee0;
}
.euk-hub2-home .euk-wrap {
  width: min(1240px, calc(100% - 2rem));
}
.euk-hub2-home .euk-kicker { color: #c6e38a; }
.euk-hub2-home h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  color: #fff;
  max-width: none;
  margin: 0.35rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.euk-ea-badge {
  display: inline-block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #141c10;
  background: #c6e38a;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  line-height: 1;
}
.euk-hub2-intro {
  display: grid;
  gap: 1.2rem 2.2rem;
  margin-bottom: 1.8rem;
}
.euk-hub2-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 600;
  color: #f3f4f2;
  max-width: none;
  margin-bottom: 1rem;
}
.euk-hub2-home p {
  max-width: none;
  margin-bottom: 1rem;
  color: rgba(232, 238, 224, 0.9);
}
.euk-hub2-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c6e38a;
  margin: 1.1rem 0 0;
}
.euk-hub2-cta {
  margin: 0;
  align-self: end;
}
.euk-hub2-cta .euk-btn { width: fit-content; }
.euk-hub2-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 2.4rem;
}
.euk-hub2-shots figure {
  margin: 0;
  background: #0e140c;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.euk-hub2-shots img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.euk-hub2-shots figcaption {
  padding: 0.75rem 0.9rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #dff0b8;
}
.euk-hub2-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin: 0 0 1.1rem;
}
.euk-hub2-feats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.euk-hub2-feats article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.05rem 1.1rem 1.15rem;
}
.euk-hub2-feats h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #c6e38a;
  margin-bottom: 0.35rem;
}
.euk-hub2-feats p {
  margin: 0;
  font-size: 0.95rem;
  max-width: none;
  color: rgba(232, 238, 224, 0.88);
}
.euk-hub2-note {
  font-size: 0.88rem;
  color: #b8c4aa !important;
  max-width: 54rem !important;
}
.euk-hub2-more {
  font-size: 1.08rem;
  color: #f3f4f2 !important;
  margin-top: 0.6rem;
  max-width: 54rem !important;
}
.euk-hub2-price {
  font-weight: 800;
  color: #dff0b8 !important;
  margin: 0.4rem 0 1rem;
}

.euk-app-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.4rem 0 1.6rem;
}
.euk-app-steps article {
  background: #f5f7f3;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.2rem 1.25rem;
}
.euk-app-steps h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}
.euk-app-steps ol { margin: 0.4rem 0 0 1.1rem; color: var(--muted); }
.euk-app-steps li { margin-bottom: 0.35rem; }

@media (min-width: 700px) {
  .euk-hub2-shots {
    grid-template-columns: repeat(3, 1fr);
  }
  .euk-hub2-feats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .euk-hub2-home { padding: 4.4rem 0 4.8rem; }
  .euk-hub2-intro {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
    align-items: end;
  }
  .euk-hub2-cta { flex-direction: column; align-items: stretch; }
  .euk-hub2-cta .euk-btn { width: 100%; }
  .euk-hub2-feats {
    grid-template-columns: repeat(3, 1fr);
  }
  .euk-split img {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}

html.native-app .euk-apk-promo { display: none !important; }

.euk-apk-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #2b2b2b;
  padding: 0.7rem 1rem;
}
.euk-apk-icon {
  width: 22px;
  height: 22px;
  fill: #f5b301;
  flex-shrink: 0;
}
.euk-apk-bar .euk-btn {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}
.euk-btn-amber {
  background: #f5b301;
  color: #1a1a1a;
}
.euk-btn-amber:hover {
  background: #ffc429;
  color: #111;
}

@media (max-width: 860px) {
  .euk-stats-inner, .euk-grid, .euk-split, .euk-price .euk-wrap { grid-template-columns: 1fr; display: grid; }
  .euk-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 1.1rem 0; }
  .euk-menu-btn { display: inline-flex; }
  .euk-nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #222;
    flex-direction: column;
    padding: 1rem;
  }
  .euk-nav-links.open { display: flex; }
  .euk-hero-photo {
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    min-height: calc(100dvh - 76px);
  }
  .euk-footer-links { grid-template-columns: 1fr 1fr; }
  .euk-app-steps { grid-template-columns: 1fr; }
}
