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

:root {
  --background: #101814;
  --foreground: #efe6d2;
  --card: #18241c;
  --card-foreground: #efe6d2;
  --primary: #d8c89a;
  --primary-foreground: #121a16;
  --secondary: #24362c;
  --muted: #1c2a22;
  --muted-foreground: #b8b09a;
  --accent: #c4a45a;
  --accent-foreground: #121810;
  --gold-hi: #f2e6c8;
  --gold-mid: #d4bc80;
  --gold-lo: #8a7040;
  --forest: #0a100d;
  --moss: #4a6b48;
  --mist: #8a9488;
  --border: rgba(216, 200, 154, 0.18);
  --shadow: 0 28px 70px -30px rgba(6, 10, 8, 0.7);
  --display: "Cinzel", "Times New Roman", serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.shell {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.font-display {
  font-family: var(--display);
  font-weight: 600;
}

.text-gold {
  color: transparent;
  background-image: linear-gradient(
    172deg,
    #f2e6c8 0%,
    #d4bc80 28%,
    #8a7040 58%,
    #e8d5a8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 78%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  object-position: 52% 28%;
  box-shadow: 0 0 0 1px rgba(216, 200, 154, 0.35);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-ticker {
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--accent);
}

.menu {
  display: none;
  align-items: center;
  gap: 32px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 60%, transparent);
  color: var(--muted-foreground);
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

.menu a:hover {
  color: var(--primary);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 14px 34px -12px rgba(212, 188, 128, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(216, 200, 154, 0.4);
  color: var(--foreground);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(216, 200, 154, 0.08);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-label {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-glow,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-glow {
  background:
    radial-gradient(120% 80% at 78% 0%, rgba(232, 213, 168, 0.22) 0%, transparent 58%),
    radial-gradient(90% 70% at 8% 100%, rgba(74, 107, 72, 0.35) 0%, transparent 65%),
    radial-gradient(70% 50% at 92% 78%, rgba(196, 164, 90, 0.12) 0%, transparent 60%);
}

.hero-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(216, 200, 154, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 200, 154, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(100% 70% at 50% 30%, black, transparent 75%);
}

.hero-inner {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding: 112px 0 64px;
}

.hero-copy { order: 2; }
.hero-visual { order: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 200, 154, 0.3);
  background: color-mix(in oklab, var(--card) 60%, transparent);
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 10vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.title-sci {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 0.28em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted-foreground);
}

.title-line {
  display: block;
}

.title-line.text-gold {
  white-space: nowrap;
}

.hero h1 .ticker {
  margin-left: 12px;
  vertical-align: super;
  font-size: 0.22em;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.lede {
  margin-top: 24px;
  max-width: 34rem;
  color: var(--muted-foreground);
  font-size: 1.05rem;
}

.lede em {
  font-family: var(--serif);
  font-size: 1.08em;
  color: var(--foreground);
}

.lede strong {
  color: var(--primary);
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.actions .btn {
  padding: 14px 24px;
}

.ca-btn {
  display: flex;
  width: 100%;
  max-width: 36rem;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 200, 154, 0.28);
  background: color-mix(in oklab, var(--card) 70%, transparent);
  text-align: left;
  backdrop-filter: blur(8px);
}

.ca-btn:hover {
  border-color: rgba(216, 200, 154, 0.6);
  background: var(--card);
}

.ca-pill {
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4px 12px;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.ca-value {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

.ca-copy {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.75rem;
}

.scroll-hint {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--muted-foreground);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-hint:hover {
  color: var(--primary);
}

.scroll-hint svg {
  width: 16px;
  height: 16px;
  animation: bounce 1.2s infinite;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.watermark {
  position: absolute;
  z-index: -1;
  font-family: var(--display);
  font-size: clamp(8rem, 24vw, 20rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(216, 200, 154, 0.06);
  filter: blur(2px);
  user-select: none;
  pointer-events: none;
}

.coin-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  perspective: 900px;
}

.coin-aura {
  position: absolute;
  aspect-ratio: 1;
  width: 118%;
  border-radius: 999px;
  opacity: 0.8;
  filter: blur(48px);
  background: radial-gradient(circle, rgba(232, 213, 168, 0.35) 0%, rgba(138, 112, 64, 0.28) 44%, transparent 72%);
}

.coin-float {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  animation: float 5.5s ease-in-out infinite;
}

.coin-wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 19rem;
  transform-style: preserve-3d;
  filter: drop-shadow(0 30px 45px rgba(8, 12, 10, 0.55));
}

.coin {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.coin-edge {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #8a7040, #d4bc80, #2a2014, #4a6b48);
  transform-style: preserve-3d;
}

.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  overflow: hidden;
  backface-visibility: hidden;
}

.coin-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
}

.coin-sheen {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.28) 0%, transparent 38%, transparent 62%, rgba(12, 16, 12, 0.35) 100%);
}

.coin-back {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 28%, #f2e6c8 0%, #d4bc80 42%, #3d2a14 100%);
}

.coin-back span {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: 1;
  color: rgba(18, 26, 22, 0.82);
}

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(216, 200, 154, 0.16);
  background: rgba(216, 200, 154, 0.05);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--display);
  font-size: clamp(0.92rem, 2vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Sections */
.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.about-grid {
  display: grid;
  gap: 56px;
}

.banner-wrap {
  position: relative;
}

.banner-glow {
  position: absolute;
  inset: 24px;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(48px);
  background: radial-gradient(circle, rgba(212, 188, 128, 0.4) 0%, transparent 68%);
}

.banner-wrap img,
.banner-open {
  width: 100%;
}

.banner-open {
  display: block;
  padding: 0;
  cursor: zoom-in;
}

.banner-wrap img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: 40% center;
  border-radius: 2rem;
  border: 1px solid rgba(216, 200, 154, 0.22);
  box-shadow: var(--shadow);
  animation: float 6.5s ease-in-out infinite;
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.prose {
  margin-top: 24px;
  max-width: 36rem;
  color: var(--muted-foreground);
}

.prose em {
  font-family: var(--serif);
  font-size: 1.12em;
  color: var(--foreground);
}

.prose strong {
  color: var(--primary);
  font-weight: 600;
}

.prose + .prose {
  margin-top: 16px;
}

.press-block {
  margin-top: 72px;
}

.press-title {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gold-hi);
}

.press-grid {
  display: grid;
  gap: 16px;
}

.embed-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(216, 200, 154, 0.2);
  background: color-mix(in oklab, var(--card) 82%, transparent);
  box-shadow: var(--shadow);
}

.embed-chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(216, 200, 154, 0.14);
  background: rgba(10, 16, 13, 0.35);
}

.embed-mark {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.embed-meta {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.embed-body {
  flex: 1;
  margin: 0;
  padding: 22px 20px 8px;
}

.embed-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.embed-body h4 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gold-hi);
}

.embed-body p:last-child {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.embed-body em {
  font-family: var(--serif);
  font-size: 1.05em;
  color: var(--foreground);
}

.embed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 20px 20px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.embed-link:hover {
  opacity: 0.75;
}

.kin-grid {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.kin-card {
  padding: 28px 24px;
  border-radius: 1.35rem;
  border: 1px solid rgba(216, 200, 154, 0.18);
  background: color-mix(in oklab, var(--card) 80%, transparent);
}

.kin-card-alt {
  border-color: rgba(196, 164, 90, 0.28);
  background: color-mix(in oklab, #241c12 40%, var(--card));
}

.kin-card h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.kin-latin {
  margin: 6px 0 14px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
}

.kin-card p:last-child {
  color: var(--muted-foreground);
}

.kin-card em {
  font-family: var(--serif);
  font-size: 1.06em;
  color: var(--foreground);
}

.the-cat {
  border-top: 1px solid rgba(216, 200, 154, 0.14);
}

.the-cat-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(90% 60% at 50% 0%, rgba(232, 213, 168, 0.1) 0%, transparent 62%);
}

.the-cat-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.the-cat-head p {
  max-width: 24rem;
  color: var(--muted-foreground);
}

.portrait-grid {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

.portrait {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(216, 200, 154, 0.22);
  background: var(--card);
  box-shadow: 0 18px 40px -28px rgba(6, 10, 8, 0.7);
}

.portrait button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 52% 28%;
  transition: transform 0.5s ease;
}

.portrait:hover img {
  transform: scale(1.04);
}

.portrait figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(16, 24, 20, 0.92), rgba(16, 24, 20, 0.4), transparent);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

.fact-stack {
  display: grid;
  gap: 14px;
}

.fact-card {
  padding: 24px 22px;
  border-radius: 1.25rem;
  border: 1px solid rgba(216, 200, 154, 0.16);
  background: color-mix(in oklab, var(--card) 80%, transparent);
}

.fact-label {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.fact-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-hi);
}

.fact-card p:last-child {
  margin-top: 10px;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.fact-card em {
  font-family: var(--serif);
  font-size: 1.05em;
  color: var(--foreground);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 16, 13, 0.78);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: 0 40px 80px -30px rgba(6, 10, 8, 0.7);
}

.lightbox-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 860px);
  aspect-ratio: auto;
  object-fit: contain;
  background: #0a100d;
  transform: none;
}

.lightbox-card figcaption {
  position: static;
  padding: 16px 20px 20px;
  background: none;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(16, 24, 20, 0.9);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 64px;
  padding: 48px 24px;
  border-radius: 1.5rem;
  border: 1px solid rgba(216, 200, 154, 0.22);
  background: color-mix(in oklab, var(--card) 60%, transparent);
  text-align: center;
  backdrop-filter: blur(8px);
}

.cta-card h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-card p {
  max-width: 28rem;
  color: var(--muted-foreground);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-actions .btn {
  padding: 14px 24px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(216, 200, 154, 0.14);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.site-footer img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  object-position: 52% 28%;
  box-shadow: 0 0 0 1px rgba(216, 200, 154, 0.35);
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(216, 200, 154, 0.3);
  color: var(--primary);
}

.icon-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-handles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-handle {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-handle:hover {
  opacity: 0.7;
}

.disclaimer {
  max-width: 28rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.copy {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(216, 200, 154, 0.45);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 640px) {
  .shell { width: min(1200px, calc(100% - 48px)); }
  .btn-label { display: inline; }
  .lede { font-size: 1.125rem; }
  .coin-wrap { max-width: 26rem; }
  .cta-card { padding: 48px; }
}

@media (min-width: 768px) {
  .menu { display: flex; }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    padding-top: 96px;
  }

  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
  .scroll-hint { display: inline-flex; }
  .coin-wrap { max-width: 30rem; }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .press-grid,
  .kin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .the-cat-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .portrait-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .portrait,
  .portrait button {
    height: 100%;
  }

  .portrait img {
    height: 100%;
    min-height: 100%;
  }
}
