/* Water Warriors — design tokens + components */
/* Palette sampled directly from the shield emblem logo. */
:root {
  --color-bg: #26263a;           /* deep indigo-slate — shield base */
  --color-surface: #2f3049;      /* elevated shield */
  --color-surface-2: #3c3c54;    /* mid shield */
  --color-text: #e6ecef;         /* pale wordmark white */
  --color-text-muted: #9fb0bd;   /* steel-blue mute */
  --color-border: rgba(180,204,204,0.10);
  --color-accent: #b4cccc;       /* sea-glass — water wordmark */
  --color-accent-2: #e4843c;     /* burnt amber — shield/blaster accents */
  --color-accent-3: #c55f5a;     /* soft brick red — right blaster */
  --color-accent-4: #7b9aa4;     /* muted teal — left blaster */

  /* Typography */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
  --text-2xl: clamp(2rem, 4vw + 0.5rem, 3.75rem);
  --text-hero: clamp(3rem, 8vw + 0.5rem, 6.5rem);

  --container: 1200px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  background:
    radial-gradient(1200px 800px at 90% -10%, rgba(123,154,164,0.14), transparent 60%),
    radial-gradient(900px 700px at -10% 20%, rgba(197,95,90,0.10), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(228,132,60,0.06), transparent 65%),
    var(--color-bg);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(38,38,58,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--color-text);
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.02em; font-size: 1.15rem;
}
.brand svg { width: 32px; height: 32px; }
.brand-mark { color: var(--color-accent); }
.nav-links {
  display: none; gap: 2rem; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--color-text-muted);
  font-size: var(--text-sm); font-weight: 500;
}
.nav-links a:hover { color: var(--color-text); }
@media (min-width: 780px) {
  .nav-links { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--color-accent-2); color: #26263a;
  box-shadow: 0 8px 24px -8px rgba(228,132,60,0.55);
}
.btn-primary:hover { transform: translateY(-1px); background: #f0954f; color: #26263a; }
.btn-ghost {
  background: transparent; color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(1.15);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 30% 55%, rgba(38,38,58,0.85), transparent 70%),
    linear-gradient(180deg, rgba(38,38,58,0.35) 0%, rgba(38,38,58,0.90) 100%),
    linear-gradient(100deg, rgba(38,38,58,0.92) 0%, rgba(38,38,58,0.4) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding-block: 6rem 3rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-xs); letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(180,204,204,0.35);
  border-radius: 999px;
  background: rgba(180,204,204,0.08);
}
.hero-eyebrow {
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  padding: 0.7rem 1.35rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  letter-spacing: -0.03em;
  margin-top: 1.5rem;
  max-width: 15ch;
}
.hero h1 .accent { color: var(--color-accent); }
.hero h1 .accent-2 { color: var(--color-accent-2); }
.hero p.lede {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.35rem);
  color: var(--color-text-muted);
  max-width: 46ch;
  line-height: 1.5;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-top: 2.25rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 640px;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.75rem; color: var(--color-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 640px;
  display: grid;
  gap: 0.85rem;
}
.hero-bullets li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.hero-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  margin-top: 0.15rem;
  background: rgba(228,132,60,0.12);
  border: 1px solid var(--color-accent-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-6' fill='none' stroke='%23e4843c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.step-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  opacity: 0.85;
}

/* ---------- WHAT WE NEED FROM YOU ---------- */
.need-from-you {
  margin-top: 3.5rem;
  padding: 2.25rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.need-from-you::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,132,60,0.06), transparent 55%);
  pointer-events: none;
}
.need-head {
  position: relative;
  max-width: 60ch;
  margin-bottom: 1.75rem;
}
.need-head h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0;
}
.need-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.need-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.need-list li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  margin-top: 0.15rem;
  background: rgba(228,132,60,0.12);
  border: 1px solid var(--color-accent-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-6' fill='none' stroke='%23e4843c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.need-list b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 0.15rem;
}
.need-list span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  display: grid; gap: 1rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.section-head p {
  color: var(--color-text-muted);
  max-width: 60ch;
  font-size: var(--text-lg);
}
.section-head.single-line h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
}
.section-head.single-line .eyebrow {
  justify-self: start;
}
@media (max-width: 720px) {
  .section-head.single-line h2 {
    white-space: normal;
  }
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.75rem; color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Package note (games estimate) */
.pkg-note {
  font-size: 0.85rem;
  color: var(--color-accent-2);
  font-style: italic;
  letter-spacing: 0.04em;
  margin: auto 0 0.5rem;
}

/* ---------- GAME MODES ---------- */
.modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  counter-reset: mode;
}
.mode {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  position: relative;
  counter-increment: mode;
}
.mode::before {
  content: counter(mode, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.75rem; color: var(--color-accent-2);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.mode h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.mode p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ---------- GEAR SECTION ---------- */
.gear {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .gear { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.gear-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  background: var(--color-surface);
}
.gear-image img { width: 100%; height: 100%; object-fit: cover; }
.gear-content .eyebrow { color: var(--color-accent-2); border-color: rgba(228,132,60,0.40); background: rgba(228,132,60,0.10); }
.gear-content h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}
.gear-content > p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  margin-bottom: 1.75rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.spec {
  display: grid; gap: 0.15rem;
}
.spec b {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.spec span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- PACKAGES ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pkg {
  padding: 2rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform 250ms ease, border-color 250ms ease;
}
.pkg:hover { transform: translateY(-4px); border-color: rgba(180,204,204,0.45); }
.pkg-featured {
  border-color: var(--color-accent-2);
  background: linear-gradient(180deg, rgba(228,132,60,0.10), var(--color-surface));
  position: relative;
}
.pkg-featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px; left: 1.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--color-accent-2);
  color: #26263a;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
}
.pkg-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-2);
  font-weight: 700;
}
.pkg h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}
.pkg-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  min-height: 4.2em;
}
.pkg ul {
  list-style: none;
  display: grid; gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding: 0;
}
.pkg li {
  display: flex; gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-text);
}
.pkg li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-top: 0.15rem;
  background: rgba(180,204,204,0.15);
  border: 1px solid var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-6' fill='none' stroke='%23b4cccc' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pkg-price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.25rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.pkg-price small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.pkg .btn { justify-content: center; width: 100%; }

/* ---------- ADD-ONS ---------- */
.addons {
  margin-top: 3.5rem;
  padding: 2.5rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.addons::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,132,60,0.06), transparent 55%);
  pointer-events: none;
}
.addons-head {
  position: relative;
  max-width: 60ch;
  margin-bottom: 2rem;
}
.addons-head h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}
.addons-head p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.addons-grid {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}
.addon {
  padding: 1rem 1.15rem;
  background: rgba(180,204,204,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}
.addon:hover {
  transform: translateY(-2px);
  border-color: rgba(228,132,60,0.55);
  background: rgba(228,132,60,0.05);
}
.addon b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.addon span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.addon em {
  font-style: normal;
  color: var(--color-accent-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  margin-top: 0.15rem;
}
.addons .btn {
  position: relative;
  display: inline-flex;
}

/* ---------- FOR / USE CASES ---------- */
.usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.usecase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--color-border);
  isolation: isolate;
}
.usecase img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 500ms ease;
}
.usecase:hover img { transform: scale(1.04); }
.usecase::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(38,38,58,0.95) 100%);
  z-index: -1;
}
.usecase-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
}
.usecase h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.usecase p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ---------- CTA / CONTACT ---------- */
.cta {
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(180,204,204,0.14), rgba(228,132,60,0.16)),
    var(--color-surface);
  border: 1px solid rgba(228,132,60,0.32);
  text-align: center;
}
.cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 22ch;
  margin-inline: auto;
}
.cta p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .contact-form { grid-template-columns: 1fr auto; }
}
.contact-form input {
  padding: 0.95rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-text);
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
}
.contact-form input:focus {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.10);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: 3rem 2rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.footer ul { list-style: none; display: grid; gap: 0.5rem; padding: 0; }
.footer a { color: var(--color-text-muted); text-decoration: none; }
.footer a:hover { color: var(--color-accent); }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: var(--text-xs);
}

/* ---------- MOTION ---------- */
/* Reveal only applies when JS enables it via .js-motion on <html>.
   Without JS or before scroll into view, content is always visible. */
.js-motion .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js-motion .reveal.in {
  opacity: 1;
  transform: none;
}

/* STL brand tag */
.brand em {
  font-style: normal;
  color: var(--color-accent-2);
  margin-left: 0.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* Logo image in nav / footer */
.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}
.footer .brand-logo { height: 96px; }

/* Larger showcase logo used above hero + waitlist CTA */
.logo-mark {
  display: block;
  margin: 0 auto;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.55));
}
.logo-mark-hero {
  height: clamp(300px, 44vw, 600px);
  margin: 0 auto 1.5rem;
}
.hero-tagline {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  letter-spacing: 0.22em;
  color: var(--color-accent-2);
  text-transform: uppercase;
  margin: 0 auto 3rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}
.logo-mark-cta {
  height: clamp(96px, 12vw, 140px);
  margin-bottom: 1.5rem;
}

/* Nav taller to accommodate bigger logo */
.nav-inner { height: 88px; }
