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

:root {
  /* Light tribute theme: clean white + warm gold mist */
  --splash-bg: #fdfcf9;
  --splash-cream: #f8f4ec;
  --mist-gold: #f9e9c3;
  --gold: #c6a468;
  --gold-rich: #9a7329;
  --gold-heading: #8a6a24;
  --gold-light: #fdf6e3;
  --gold-muted: #7a6848;
  --gold-dim: #6b5a3e;
  --gold-border: #c6a468;
  --cta-velvet: #93282c;
  --cta-velvet-deep: #7e2226;
  --cta-velvet-mid: #93282c;
  --text-charcoal: #1a1a1a;
  --text-page: #1a1a1a;
  --text-body: #1a1a1a;
  --text-soft: rgba(26, 26, 26, 0.92);
  --text-soft-2: rgba(26, 26, 26, 0.9);
  --splash-column: min(48rem, 100%);
  --prose-max: min(42rem, 100%);
  --font-display: 'Cormorant Garamond', ui-serif, Georgia, 'Times New Roman', serif;
  --font-caps: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

html,
body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

/* Opening: wordmark centered → top slot, then headline & content */
.sms-splash-tribute__intro-fly {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sms-splash-tribute__intro-fly::before {
  content: '';
  position: absolute;
  width: min(100%, 520px);
  height: min(48vh, 320px);
  background: radial-gradient(
    ellipse 72% 65% at 50% 50%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(250, 250, 250, 0.5) 50%,
    transparent 72%
  );
  pointer-events: none;
}

.sms-splash-tribute__intro-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(252px, 66vw);
  height: auto;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.12)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
  transform: translateZ(0);
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  body.sms-splash-tribute--intro .sms-splash-tribute__intro-logo {
    animation: smsIntroLogoFade 1s ease-out 0.15s both;
  }

  @keyframes smsIntroLogoFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

body.sms-splash-tribute--intro {
  overflow: hidden;
}

body.sms-splash-tribute--intro .sms-splash-tribute__corner {
  opacity: 0;
}

body.sms-splash-tribute--intro .sms-splash-tribute__brand-logo {
  opacity: 0;
}

body.sms-splash-tribute--intro .sms-splash-tribute__container > .sms-splash-tribute__brand ~ * {
  opacity: 0;
  transform: translateY(14px);
}

@keyframes smsSplashTributeReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

body.sms-splash-tribute--content-ready .sms-splash-tribute__corner {
  opacity: 0.5;
  transition: opacity 0.65s ease 0.18s;
}

/* Wordmark stays stable — no second fade on the logo (flying layer swaps in one step). */
body.sms-splash-tribute--content-ready .sms-splash-tribute__brand-logo {
  opacity: 1;
  transform: none;
  animation: none;
}

body.sms-splash-tribute--content-ready .sms-splash-tribute__container > .sms-splash-tribute__brand ~ * {
  animation: smsSplashTributeReveal 0.75s cubic-bezier(0.2, 0.82, 0.25, 1) 0.08s both;
}

@media (prefers-reduced-motion: reduce) {
  .sms-splash-tribute__intro-logo {
    transition: none !important;
    transform: none !important;
  }

  body.sms-splash-tribute--content-ready .sms-splash-tribute__brand-logo,
  body.sms-splash-tribute--content-ready .sms-splash-tribute__container > .sms-splash-tribute__brand ~ * {
    animation: none;
  }

  body.sms-splash-tribute--intro {
    overflow-y: auto;
  }
}

body.sms-splash-tribute {
  margin: 0;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--splash-bg);
  /* Use block layout — flex center clips content taller than viewport */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}

.sms-splash-tribute__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Clean white — soft white lift behind portrait (no golden wash) */
.sms-splash-tribute__bg-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--splash-bg);
  background-image:
    radial-gradient(ellipse 95% 60% at 50% 118%, rgba(255, 255, 255, 0.86) 0%, transparent 58%),
    radial-gradient(ellipse 70% 45% at 50% 88%, rgba(252, 248, 241, 0.62) 0%, transparent 54%),
    linear-gradient(180deg, var(--splash-bg) 0%, #f8f5ee 58%, rgba(255, 255, 255, 0.92) 100%);
}

.sms-splash-tribute__bg-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.sms-splash-tribute__bg-building {
  position: absolute;
  inset: -8px;
  z-index: 2;
  background-image: var(--sms-building-url, none);
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  opacity: 0.06;
  filter: blur(6px) saturate(0.85);
  transform: scale(1.04);
  mix-blend-mode: multiply;
}

.sms-splash-tribute__bg-mist {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 88% 52% at 50% 36%, rgba(255, 255, 255, 0.52) 0%, transparent 55%),
    radial-gradient(ellipse 92% 48% at 50% 94%, rgba(251, 247, 238, 0.58) 0%, transparent 58%),
    radial-gradient(ellipse 100% 72% at 50% 108%, rgba(255, 255, 255, 0.9) 0%, transparent 42%);
}

.sms-splash-tribute__bg-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  box-shadow:
    inset 0 0 min(100px, 14vw) rgba(255, 255, 255, 0.4),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.sms-splash-tribute__corner {
  position: fixed;
  width: 56px;
  height: 56px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.38;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='0.6' stroke-linecap='round'%3E%3Cpath d='M3 30V3h27'/%3E%3Cpath d='M3 44V3h41' opacity='0.55'/%3E%3Cpath d='M9 27C9 16.5 16.5 9 27 9'/%3E%3Cpath d='M9 38C9 22.5 22.5 9 38 9' opacity='0.5'/%3E%3Ccircle cx='3' cy='3' r='1.9' fill='%23C8A96E'/%3E%3C/g%3E%3C/svg%3E");
}

.sms-splash-tribute__corner--tl {
  top: 16px;
  left: 16px;
}

.sms-splash-tribute__corner--tr {
  top: 16px;
  right: 16px;
  transform: scaleX(-1);
}

.sms-splash-tribute__corner--bl {
  bottom: 16px;
  left: 16px;
  transform: scaleY(-1);
}

.sms-splash-tribute__corner--br {
  bottom: 16px;
  right: 16px;
  transform: scale(-1, -1);
}

body.sms-splash-tribute > .sms-splash-tribute__container {
  /* Stretch to fill remaining height so short content is still visually centered */
  flex: 1 0 auto;
}

.sms-splash-tribute__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--splash-column);
  margin: 0 auto;
  /*
   * padding-top: generous safe top gap so logo is never clipped by notch or viewport
   * padding-bottom: enough room for CTA + tagline above safe-area
   */
  padding-top: max(2rem, calc(env(safe-area-inset-top) + 1.5rem));
  padding-bottom: max(2.5rem, calc(env(safe-area-inset-bottom) + 1rem));
  padding-left: max(1.5rem, 5vw, env(safe-area-inset-left));
  padding-right: max(1.5rem, 5vw, env(safe-area-inset-right));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  /* flex-start: content always anchors to top — no overflow clipping */
  justify-content: flex-start;
  /* Comfortable rhythm between all children */
  gap: 1.5rem;
}

.sms-splash-tribute__brand {
  width: 100%;
  margin-bottom: 0;
  padding-top: 0.25rem;
  padding-bottom: clamp(8px, 1.6vw, 14px);
  border-bottom: 1px solid rgba(198, 164, 104, 0.35);
}

.sms-splash-tribute__brand-logo {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: min(340px, 100%);
  height: auto;
  max-height: clamp(44px, 10.5vw, 72px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

.sms-splash-tribute__label {
  font-family: var(--font-caps);
  font-size: clamp(10px, 1.85vw, 12px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.sms-splash-tribute__headline {
  font-family: var(--font-display);
  font-style: italic;
  /* Mobile-first: ~text-3xl (1.875rem); scales up at wider breakpoints */
  font-size: clamp(1.875rem, 2.25vw + 1.15rem, 3rem);
  font-weight: 500;
  color: var(--gold-heading);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.sms-splash-tribute__headline-amp {
  color: var(--cta-velvet);
  font-style: italic;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 10px rgba(147, 40, 44, 0.12);
}

/* Tablet+: approach ~text-5xl cap on large screens */
@media (min-width: 768px) {
  .sms-splash-tribute__headline {
    font-size: clamp(2.125rem, 2.65vw + 0.85rem, 3rem);
    line-height: 1.08;
  }

  .sms-splash-tribute__container {
  gap: 0.9rem;
  }

  .sms-splash-tribute__brand-logo {
    max-height: 72px;
  }
}

/* Desktop: roomier column, calmer type, headline one line */
@media (min-width: 900px) {
  :root {
    --splash-column: min(48rem, 100%);
    --prose-max: min(42rem, 100%);
  }

  .sms-splash-tribute__intro-logo {
    max-width: min(276px, 30vw);
    max-height: 88px;
  }

  .sms-splash-tribute__headline {
    white-space: nowrap;
    max-width: none;
    text-wrap: unset;
    /* Desktop upscale towards text-6xl feel */
    font-size: clamp(2.35rem, 3.25vw, 3.75rem);
    letter-spacing: 0.014em;
    line-height: 1.06;
    margin-bottom: -0.2rem;
  }

  .sms-splash-tribute__label {
    font-size: 11.5px;
    letter-spacing: 0.3em;
    margin-bottom: 0;
    color: var(--gold-muted);
  }

  .sms-splash-tribute__container {
    padding-left: max(3rem, 5vw, env(safe-area-inset-left));
    padding-right: max(3rem, 5vw, env(safe-area-inset-right));
  }

  .sms-splash-tribute__prose {
    padding: 0;
  }

  .sms-splash-tribute__quote--primary {
    font-size: clamp(16px, 1.45vw, 18px);
    line-height: 1.625;
    letter-spacing: 0.008em;
  }

  .sms-splash-tribute__quote--secondary {
    font-size: clamp(16px, 1.3vw, 17px);
    line-height: 1.625;
    letter-spacing: 0.011em;
  }

  .sms-splash-tribute__name-main {
    font-size: clamp(24px, 2.2vw, 32px);
    margin-bottom: 6px;
  }

  .sms-splash-tribute__name-title {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    line-height: 1.625;
  }

  .sms-splash-tribute__tagline {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--text-charcoal);
    margin-top: 0;
    opacity: 0.88;
  }

  .sms-splash-tribute__enter {
    /* reduce “chipak” gap above CTA */
    margin: 1.125rem 0 1.5rem;
  }

  body.sms-splash-tribute--content-ready .sms-splash-tribute__container > .sms-splash-tribute__brand ~ * {
    animation-duration: 0.85s;
    animation-delay: 0.05s;
  }
}

/* Wide desktop: honour line on one line when it fits; narrow rolls back to two lines */
@media (min-width: 1200px) {
  .sms-splash-tribute__name-br {
    display: none;
  }

  .sms-splash-tribute__name-title {
    white-space: nowrap;
    font-size: clamp(9px, 0.68vw, 10.5px);
    letter-spacing: 0.12em;
    line-height: 1.55;
  }

  .sms-splash-tribute__name-title-part:first-of-type::after {
    content: ' · ';
    letter-spacing: 0.1em;
    color: rgba(122, 104, 72, 0.75);
  }
}

/* Enter Website: white bridge + wordmark to center, then navigate */
.sms-splash-tribute__handoff-white {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #fff;
  opacity: 0;
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.sms-splash-tribute__handoff-white--visible {
  opacity: 1;
}

body.sms-splash-tribute--handoff .sms-splash-tribute__intro-fly {
  opacity: 0 !important;
  transition: opacity 0.22s ease;
}

body.sms-splash-tribute--handoff .sms-splash-tribute__container,
body.sms-splash-tribute--handoff .sms-splash-tribute__bg,
body.sms-splash-tribute--handoff .sms-splash-tribute__corner {
  opacity: 0 !important;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

/* Smooth exit before navigating to the main site */
body.sms-splash-tribute--exiting .sms-splash-tribute__container {
  transition:
    opacity 0.38s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(-10px) scale(0.995);
}

body.sms-splash-tribute--exiting .sms-splash-tribute__bg {
  transition: opacity 0.42s ease;
  opacity: 0.94;
}

body.sms-splash-tribute--exiting .sms-splash-tribute__corner {
  transition: opacity 0.35s ease;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.sms-splash-tribute--exiting .sms-splash-tribute__container {
    transition: opacity 0.2s ease;
    transform: none;
  }

  body.sms-splash-tribute--exiting .sms-splash-tribute__bg,
  body.sms-splash-tribute--exiting .sms-splash-tribute__corner {
    transition: none;
  }
}

/* Portrait: borderless rectangle; soft white fade at base (no golden tint) */
.sms-splash-tribute__portrait {
  position: relative;
  width: min(285px, 78vw);
  max-width: 340px;
  /* Normal flow spacing (no overlap) */
  aspect-ratio: auto;
  /* Vertical rhythm: rely on parent gap; avoid double-stacked margins */
  margin: 0 auto;
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.sms-splash-tribute__headline + .sms-splash-tribute__portrait {
  margin-top: 0;
}

@media (min-width: 768px) {
  .sms-splash-tribute__portrait {
    margin: 2rem auto 0.35rem;
    width: min(300px, 34vw);
    max-width: 360px;
  }

  .sms-splash-tribute__headline + .sms-splash-tribute__portrait {
    margin-top: 0;
  }
}

.sms-splash-tribute__portrait-aura {
  /* Reset: remove absolute/z-index artefacts; fade is handled by mask-image on the <img> */
  display: none;
}

.sms-splash-tribute__portrait-glow {
  /* Reset: remove absolute/z-index artefacts; fade is handled by mask-image on the <img> */
  display: none;
}

.sms-splash-tribute__photo-shell {
  position: relative;
  z-index: auto;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  overflow: visible;
}

.sms-splash-tribute__photo-inner {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.sms-splash-tribute__photo-inner::after {
  display: none;
}

.sms-splash-tribute__photo {
  display: block;
  position: relative;
  z-index: auto;
  width: 100%;
  height: auto;
  /* Keep full image borders (avoid cropping) */
  object-fit: contain;
  object-position: center top;
  /* Bottom fade only — no visible border */
  border: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 64%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 64%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.sms-splash-tribute__name-block {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0 max(0px, env(safe-area-inset-left)) 0 max(0px, env(safe-area-inset-right));
  max-width: var(--prose-max);
  width: 100%;
}

.sms-splash-tribute__name-main {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.8vmin, 30px);
  font-weight: 600;
  color: var(--gold-heading);
  letter-spacing: 0.014em;
  margin-bottom: 4px;
  line-height: 1.12;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.sms-splash-tribute__name-title {
  font-family: var(--font-caps);
  font-size: clamp(9.5px, 1.7vw, 11px);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-muted);
  line-height: 1.75;
  opacity: 1;
}

.sms-splash-tribute__name-title-part {
  display: inline;
}

.sms-splash-tribute__name-title-part--place {
  opacity: 0.96;
}

.sms-splash-tribute__grad-line {
  display: block;
  width: min(100%, 19rem);
  height: 1px;
  margin: 10px auto;
  border: none;
  padding: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(198, 164, 104, 0.25) 18%,
    rgba(154, 115, 41, 0.4) 50%,
    rgba(198, 164, 104, 0.25) 82%,
    transparent 100%
  );
}

.sms-splash-tribute__grad-line--pre-prose {
  margin: 0.45rem auto 0.6rem;
}

.sms-splash-tribute__prose {
  width: 100%;
  max-width: min(42rem, 100%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.sms-splash-tribute__quote--primary {
  font-family: var(--font-display);
  /* Use vw not vmin so landscape phones get readable text */
  font-size: clamp(16px, 2.2vw + 0.65rem, 1.125rem);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.625;
  letter-spacing: 0.011em;
  margin-bottom: 0;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}

.sms-splash-tribute__quote--primary strong {
  font-weight: 600;
  color: var(--text-body);
}

.sms-splash-tribute__quote--primary .sms-splash-tribute__text-gold,
.sms-splash-tribute__text-gold {
  color: var(--cta-velvet);
  font-weight: 700;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 0 18px rgba(147, 40, 44, 0.14);
}

.sms-splash-tribute__quote--primary em {
  font-style: italic;
  color: var(--gold-dim);
}

.sms-splash-tribute__prose .sms-splash-tribute__grad-line {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sms-splash-tribute__quote--secondary {
  font-family: var(--font-display);
  font-style: italic;
  /* Use vw not vmin so landscape phones get readable text */
  font-size: clamp(16px, 2vw + 0.6rem, 17px);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.625;
  letter-spacing: 0.012em;
  text-wrap: pretty;
  opacity: 1;
}

.sms-splash-tribute__quote--primary,
.sms-splash-tribute__quote--secondary {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sms-splash-tribute__quote--secondary strong {
  font-style: normal;
  font-weight: 600;
  color: var(--text-body);
}

.sms-splash-tribute__enter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0.8rem 0 0.45rem;
  padding: 16px 40px;
  min-height: 3.5rem;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(
    155deg,
    var(--cta-velvet-deep) 0%,
    var(--cta-velvet-mid) 42%,
    var(--cta-velvet) 58%,
    #83252a 100%
  );
  border: 1.5px solid var(--gold-border);
  box-shadow:
    0 6px 22px rgba(147, 40, 44, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4a84b;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.sms-splash-tribute__enter::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  border: 1px solid rgba(198, 164, 104, 0.2);
  pointer-events: none;
}

.sms-splash-tribute__enter:hover {
  border-color: #d4a84b;
  background: linear-gradient(155deg, #a32f34 0%, var(--cta-velvet) 45%, #9e2e32 100%);
  color: #e8bc68;
  transform: scale(1.05);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.3),
    0 8px 28px rgba(147, 40, 44, 0.38),
    0 2px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.sms-splash-tribute__enter:active {
  transform: scale(1.01);
  box-shadow:
    0 4px 14px rgba(147, 40, 44, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sms-splash-tribute__enter-arrow {
  font-size: 16px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: inherit;
  line-height: 1;
}

.sms-splash-tribute__enter:focus-visible {
  outline: 2px solid var(--gold-border);
  outline-offset: 3px;
}

/* Mobile / small tablet: compact, readable, one-flow layout */
@media (max-width: 767px) {
  .sms-splash-tribute__bg-mist {
    background:
      radial-gradient(ellipse 86% 42% at 50% 32%, rgba(255, 255, 255, 0.56) 0%, transparent 58%),
      radial-gradient(ellipse 88% 44% at 50% 92%, rgba(251, 247, 239, 0.5) 0%, transparent 62%),
      radial-gradient(ellipse 100% 70% at 50% 112%, rgba(255, 255, 255, 0.92) 0%, transparent 40%);
  }

  .sms-splash-tribute__container {
    gap: 1.1rem;
    padding-top: max(1.55rem, calc(env(safe-area-inset-top) + 0.75rem));
    padding-bottom: max(18px, calc(env(safe-area-inset-bottom) + 6px));
    padding-left: max(1.25rem, min(2rem, 8vw), env(safe-area-inset-left));
    padding-right: max(1.25rem, min(2rem, 8vw), env(safe-area-inset-right));
    justify-content: flex-start;
  }

  .sms-splash-tribute__brand {
    padding-bottom: 8px;
  }

  .sms-splash-tribute__brand-logo {
    max-width: min(280px, 88vw);
    max-height: 48px;
  }

  .sms-splash-tribute__label {
    margin-top: 0;
    font-size: 9px;
    letter-spacing: 0.18em;
    line-height: 1.3;
    padding: 0;
  }

  .sms-splash-tribute__headline {
    font-size: clamp(1.72rem, 5.2vw + 0.5rem, 1.98rem);
    line-height: 1.08;
    max-width: min(22ch, 100%);
    padding: 0;
  }

  .sms-splash-tribute__portrait {
    width: min(73%, 270px);
    max-width: 270px;
    margin: 0 auto;
  }

  .sms-splash-tribute__name-block {
    margin-top: 0;
  }

  .sms-splash-tribute__name-main {
    font-size: clamp(18px, 5.1vw, 24px);
    margin-bottom: 0.1rem;
    line-height: 1.08;
  }

  .sms-splash-tribute__name-title {
    font-size: 8.9px;
    letter-spacing: 0.13em;
    line-height: 1.56;
    padding: 0;
  }

  .sms-splash-tribute__grad-line {
    width: min(100%, 16rem);
    margin: 6px auto;
  }

  .sms-splash-tribute__grad-line--pre-prose {
    margin: 0.25rem auto 0.4rem;
  }

  .sms-splash-tribute__prose {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 42rem;
    padding: 0;
  }

  .sms-splash-tribute__prose .sms-splash-tribute__grad-line {
    margin-top: 6px;
    margin-bottom: 7px;
  }

  .sms-splash-tribute__quote--primary {
    font-size: clamp(1rem, 3.6vw, 1.06rem);
    line-height: 1.66;
    letter-spacing: 0.005em;
  }

  .sms-splash-tribute__quote--secondary {
    font-size: clamp(0.99rem, 3.45vw, 1.04rem);
    line-height: 1.64;
    letter-spacing: 0.005em;
  }

  .sms-splash-tribute__enter {
    width: 100%;
    max-width: min(20rem, 100%);
    justify-content: center;
    margin: 0.45rem auto 0.3rem;
    padding: 0.78rem clamp(1rem, 4vw, 1.5rem);
    min-height: 2.95rem;
    font-size: 10.8px;
    letter-spacing: 0.16em;
    gap: 8px;
  }
}

.sms-splash-tribute__tagline {
  margin-top: 0;
  font-family: var(--font-caps);
  font-size: clamp(7.5px, 1.5vw, 9px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-charcoal);
  line-height: 1.55;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.88;
  text-align: center;
}

@media (max-width: 479px) {
  body.sms-splash-tribute {
    align-items: stretch;
    overflow-y: auto;
  }

  .sms-splash-tribute__container {
    max-width: 100%;
    gap: 0.95rem;
  }

  .sms-splash-tribute__brand {
    margin-bottom: 0;
    padding-bottom: 8px;
  }

  .sms-splash-tribute__brand-logo {
    max-width: min(250px, 82vw);
    max-height: 42px;
  }

  .sms-splash-tribute__corner {
    width: 36px;
    height: 36px;
    opacity: 0.42;
  }

  .sms-splash-tribute__corner--tl {
    top: 8px;
    left: 8px;
  }

  .sms-splash-tribute__corner--tr {
    top: 8px;
    right: 8px;
  }

  .sms-splash-tribute__corner--bl {
    bottom: 8px;
    left: 8px;
  }

  .sms-splash-tribute__corner--br {
    bottom: 8px;
    right: 8px;
  }

  .sms-splash-tribute__tagline {
    display: none;
  }
}

@media (max-width: 359px) {
  .sms-splash-tribute__headline {
    font-size: clamp(1.5rem, 4.8vw + 0.45rem, 1.7rem);
  }

  .sms-splash-tribute__portrait {
    width: min(70%, 238px);
    max-width: 238px;
  }

  .sms-splash-tribute__quote--primary {
    font-size: 16px;
  }

  .sms-splash-tribute__quote--secondary {
    font-size: 16px;
  }

  .sms-splash-tribute__brand-logo {
    max-height: 42px;
  }
}

/* Very short viewports: allow scroll + slightly smaller type */
@media (max-height: 560px) {
  body.sms-splash-tribute {
    overflow-y: auto;
    align-items: flex-start;
  }

  .sms-splash-tribute__headline {
    font-size: clamp(22px, 5vmin, 32px);
  }

  .sms-splash-tribute__portrait {
    width: min(205px, 34vw);
    max-width: 250px;
  }

  .sms-splash-tribute__brand-logo {
    max-height: 48px;
  }

  .sms-splash-tribute__quote--primary {
    font-size: clamp(16px, 2vmin, 17px);
  }

  .sms-splash-tribute__quote--secondary {
    font-size: clamp(16px, 1.85vmin, 17px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sms-splash-tribute__enter {
    transition: none;
  }

  .sms-splash-tribute__photo-shell {
    animation: none;
    background: none;
  }
}
