:root {
  --ink: #0b0806;
  --ink-2: #120d0a;
  --ink-3: #1b130e;
  --bronze: #c4a36a;
  --bronze-deep: #8a6a3a;
  --bronze-hot: #e2c48a;
  --fire: #e85d04;
  --ember: #f48c06;
  --gold: #ffba08;
  --wine: #4a1218;
  --wine-hot: #8b1e3f;
  --cream: #f3e6c8;
  --cream-dim: #c9b48a;
  --smoke: rgba(40, 24, 14, 0.55);
  --line: rgba(196, 163, 106, 0.28);
  --serif: "Cinzel", "Times New Roman", serif;
  --display: "Cinzel Decorative", "Cinzel", serif;
  --body: "Cormorant Garamond", Georgia, serif;
  --mark: "Marcellus", "Cinzel", serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(232, 93, 4, 0.14), transparent 55%),
    radial-gradient(900px 600px at 90% 8%, rgba(74, 18, 24, 0.35), transparent 50%),
    linear-gradient(180deg, #0b0806 0%, #120d0a 40%, #0d0a08 100%);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.2rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.78rem;
}

.grain,
.vignette,
.hearth-glow,
#ashCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 40;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 39;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hearth-glow {
  z-index: 1;
  background: radial-gradient(circle at 50% 110%, rgba(232, 93, 4, 0.12), transparent 40%);
  animation: hearth 7s ease-in-out infinite;
}

#ashCanvas {
  z-index: 8;
}

@keyframes hearth {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.rite-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #090706;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.rite-gate.done {
  opacity: 0;
  visibility: hidden;
}

.rite-inner {
  text-align: center;
  min-width: 220px;
}

.rite-meander {
  height: 10px;
  margin-bottom: 18px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--bronze) 0 8px,
      transparent 8px 12px,
      var(--bronze) 12px 16px,
      transparent 16px 20px
    );
  opacity: 0.7;
  animation: meander-drift 8s linear infinite;
}

.rite-word {
  font-family: var(--display);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--bronze-hot);
}

.rite-bar {
  margin-top: 18px;
  height: 2px;
  background: rgba(196, 163, 106, 0.2);
  overflow: hidden;
}

.rite-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--fire), var(--bronze-hot));
  animation: rite-fill 1.15s ease forwards;
}

@keyframes rite-fill {
  to { width: 100%; }
}

.odyssey-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.odyssey-nav.scrolled {
  background: rgba(11, 8, 6, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-rail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.seal-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 40deg, var(--bronze-deep), var(--bronze-hot), var(--fire), var(--bronze-deep));
  animation: seal-spin 10s linear infinite;
}

.seal-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

@keyframes seal-spin {
  to { transform: rotate(360deg); }
}

.seal-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.seal-name em {
  font-family: var(--mark);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.seal-name strong {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-hot);
}

.nav-voyage {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.nav-voyage a {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
}

.nav-voyage a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.3s ease;
}

.nav-voyage a:hover {
  color: var(--bronze-hot);
}

.nav-voyage a:hover::after {
  width: 100%;
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--bronze);
  background: linear-gradient(180deg, rgba(232, 93, 4, 0.22), rgba(138, 106, 58, 0.12));
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  box-shadow: inset 0 0 18px rgba(232, 93, 4, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-buy img {
  width: 16px;
  height: 16px;
}

.nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(232, 93, 4, 0.35);
}

.nav-oars {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-oars span {
  display: block;
  height: 2px;
  background: var(--bronze);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-oars.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-oars.active span:nth-child(2) { opacity: 0; }
.nav-oars.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.meander-trim {
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 6px,
      var(--bronze) 6px 10px,
      transparent 10px 14px,
      var(--bronze) 14px 18px,
      transparent 18px 24px
    );
  opacity: 0.35;
  animation: meander-drift 18s linear infinite;
}

@keyframes meander-drift {
  from { background-position: 0 0; }
  to { background-position: 96px 0; }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 28px 90px;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b0806 url("../logo.png") center 18% / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.42);
}

.hero-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 22% 70%, rgba(232, 93, 4, 0.18), transparent 60%),
    radial-gradient(800px 500px at 80% 30%, rgba(74, 18, 24, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(11, 8, 6, 0.25), rgba(11, 8, 6, 0.72));
  animation: smoke-shift 14s ease-in-out infinite;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 8, 6, 0.15) 0%, rgba(11, 8, 6, 0.55) 58%, rgba(11, 8, 6, 0.78) 100%);
}

@keyframes smoke-shift {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.naiskos {
  position: relative;
  max-width: 520px;
}

.naiskos-pediment {
  height: 28px;
  margin: 0 8%;
  background: linear-gradient(180deg, var(--bronze-hot), var(--bronze-deep));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.85;
  filter: drop-shadow(0 0 16px rgba(226, 196, 138, 0.35));
}

.naiskos-frame {
  position: relative;
  margin-top: -6px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(196, 163, 106, 0.28), rgba(27, 19, 14, 0.9)),
    #1b130e;
  border: 1px solid var(--bronze);
  box-shadow:
    0 0 0 8px rgba(11, 8, 6, 0.55),
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 40px rgba(232, 93, 4, 0.12);
}

.naiskos-glow {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(232, 93, 4, 0.18);
  animation: eye-pulse 3.6s ease-in-out infinite;
}

.naiskos-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.05) saturate(1.05);
}

@keyframes eye-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.naiskos-plinth {
  margin-top: 0;
  padding: 12px 16px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-top: 0;
  background: linear-gradient(180deg, #1b130e, #120d0a);
}

.naiskos-plinth span {
  font-family: var(--mark);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--bronze);
}

.hero-scroll {
  padding-top: 8px;
}

.eyebrow,
.cap-mark {
  font-family: var(--mark);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--bronze);
}

.inscription {
  margin: 14px 0 18px;
}

.inscribe-small,
.inscribe-large {
  display: block;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f6e6b8 0%, #c4a36a 42%, #8a6a3a 70%, #e8c888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 2px 0 rgba(70, 42, 16, 0.45));
}

.inscribe-small {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: 0.42em;
  font-weight: 600;
}

.inscribe-large {
  font-family: var(--display);
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.hero-tag {
  max-width: 34ch;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cream-dim);
}

.hero-meta {
  display: flex;
  gap: 12px;
  margin: 26px 0 18px;
  flex-wrap: wrap;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(18, 13, 10, 0.7);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-chip img {
  width: 16px;
  height: 16px;
  filter: invert(86%) sepia(22%) saturate(500%) hue-rotate(2deg);
}

.chip-kicker {
  color: var(--cream-dim);
}

.ca-tablet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(27, 19, 14, 0.88), rgba(11, 8, 6, 0.88));
  margin-bottom: 24px;
}

.ca-label {
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.ca-tablet code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--cream-dim);
}

.ca-copy {
  padding: 7px 12px;
  border: 1px solid var(--bronze-deep);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-hot);
  transition: background 0.25s ease, color 0.25s ease;
}

.ca-copy:hover,
.ca-copy.copied {
  background: var(--bronze);
  color: var(--ink);
}

.hero-acts,
.muster-acts,
.oracle-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.act-fire,
.act-bronze,
.act-ghost,
.oracle-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.act-fire img,
.act-bronze img,
.act-ghost img,
.oracle-links img,
.foot-marks img {
  width: 16px;
  height: 16px;
}

.act-fire {
  background: linear-gradient(180deg, #e85d04, #9a2b08);
  color: #fff6e6;
  box-shadow: 0 0 0 1px #ffba08, 0 10px 30px rgba(232, 93, 4, 0.28);
  animation: fire-breath 2.8s ease-in-out infinite;
}

.act-bronze {
  border: 1px solid var(--bronze);
  background: rgba(196, 163, 106, 0.08);
  color: var(--bronze-hot);
}

.act-ghost {
  border: 1px solid transparent;
  color: var(--cream-dim);
}

.act-fire:hover,
.act-bronze:hover,
.act-ghost:hover,
.oracle-links a:hover {
  transform: translateY(-3px);
}

.act-bronze:hover {
  box-shadow: 0 0 24px rgba(196, 163, 106, 0.2);
}

.act-ghost:hover {
  color: var(--cream);
}

.act-fire img,
.nav-buy img {
  filter: none;
}

.act-bronze img,
.act-ghost img,
.oracle-links img,
.foot-marks img {
  filter: invert(86%) sepia(22%) saturate(500%) hue-rotate(2deg);
}

@keyframes fire-breath {
  0%, 100% { box-shadow: 0 0 0 1px #ffba08, 0 10px 30px rgba(232, 93, 4, 0.22); }
  50% { box-shadow: 0 0 0 1px #ffba08, 0 12px 42px rgba(244, 140, 6, 0.45); }
}

.wine-sea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 3;
  color: #0b0806;
}

.wine-sea svg {
  display: block;
  width: 100%;
  height: 90px;
}

.sea-a {
  fill: #120d0a;
  animation: sea-roll 8s ease-in-out infinite;
}

.sea-b {
  fill: #0b0806;
  animation: sea-roll 11s ease-in-out infinite reverse;
}

@keyframes sea-roll {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-18px); }
}

.about,
.voyage,
.oracle {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 28px 40px;
}

.section-cap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.cap-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  letter-spacing: 0;
}

.section-title {
  margin: 10px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--cream), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title::after {
  content: "";
  display: block;
  width: 96px;
  height: 8px;
  margin: 16px auto 0;
  background:
    repeating-linear-gradient(
      90deg,
      var(--bronze) 0 8px,
      transparent 8px 12px,
      var(--bronze) 12px 16px,
      transparent 16px 20px
    );
  opacity: 0.55;
}

.section-lead {
  color: var(--cream-dim);
  font-size: 1.28rem;
}

.keel {
  position: relative;
  display: grid;
  gap: 22px;
}

.keel-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--bronze), transparent);
  opacity: 0.4;
}

.plaque {
  width: min(520px, 100%);
  padding: 28px 30px;
  background:
    linear-gradient(180deg, rgba(27, 19, 14, 0.92), rgba(11, 8, 6, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
}

.plaque::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 163, 106, 0.12);
  pointer-events: none;
}

.plaque:nth-child(odd) { justify-self: start; }
.plaque-offset { justify-self: end; }

.plaque-num {
  font-family: var(--display);
  color: var(--bronze);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.plaque h3,
.port h3 {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.plaque p,
.port p {
  color: var(--cream-dim);
}

.creed {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.creed li {
  padding: 18px 16px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.creed span {
  display: block;
  font-family: var(--mark);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}

.creed strong {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.port-track {
  position: relative;
}

.port-path {
  display: none;
  width: 100%;
  height: 80px;
  color: var(--bronze);
  opacity: 0.45;
}

@media (min-width: 981px) {
  .port-path {
    display: block;
  }
}

.ports {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.port {
  padding: 26px 20px 28px;
  background: rgba(18, 13, 10, 0.78);
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
}

.port::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.port:hover::after {
  opacity: 1;
}

.port-seal {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  background: radial-gradient(circle, rgba(232, 93, 4, 0.16), rgba(11, 8, 6, 0.9));
}

.port-seal img {
  width: 28px;
  height: 28px;
  filter: invert(86%) sepia(22%) saturate(500%) hue-rotate(2deg);
}

.port-isle {
  font-family: var(--mark);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--bronze);
  margin-bottom: 8px;
}

.oracle-frame {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--bronze-deep);
  background: #0a0806;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.oracle-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: none;
  background: #0a0806;
}

.oracle-corners i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bronze);
  z-index: 2;
}

.oracle-corners i:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.oracle-corners i:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.oracle-corners i:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.oracle-corners i:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.oracle-wait {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  padding: 40px;
  color: var(--cream-dim);
}

.oracle-hint {
  font-size: 1rem;
  opacity: 0.75;
}

.oracle-links {
  justify-content: center;
  margin-top: 22px;
}

.oracle-links a {
  border: 1px solid var(--line);
}

.muster {
  position: relative;
  margin-top: 90px;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.muster-banner {
  position: absolute;
  inset: 0;
}

.muster-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.08) saturate(1.05);
}

.muster-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 8, 6, 0.35), rgba(11, 8, 6, 0.78)),
    radial-gradient(circle at 70% 40%, transparent 10%, rgba(11, 8, 6, 0.45) 70%);
}

.muster-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 80px 28px;
}

.muster-copy .section-title {
  color: var(--cream);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.muster-copy .section-lead {
  color: #efe0c0;
}

.muster-acts {
  justify-content: center;
  margin-top: 28px;
}

.keel-end {
  position: relative;
  z-index: 4;
  background: #090706;
  padding: 0 28px 28px;
}

.foot-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-row p {
  color: var(--cream-dim);
  font-style: italic;
}

.foot-marks {
  display: flex;
  gap: 14px;
}

.foot-marks a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.foot-note {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(196, 163, 106, 0.12);
  font-size: 0.95rem;
  color: rgba(201, 180, 138, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 190, 0.18), transparent);
  transform: skewX(-20deg);
  animation: bronze-shine 5.5s ease-in-out infinite;
}

@keyframes bronze-shine {
  0%, 70% { left: -40%; }
  100% { left: 130%; }
}

@media (max-width: 980px) {
  .nav-voyage,
  .nav-buy {
    display: none;
  }

  .nav-voyage.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 22px 28px 28px;
    background: rgba(11, 8, 6, 0.96);
    gap: 18px;
  }

  .nav-oars {
    display: flex;
    margin-left: auto;
  }

  .hero-layout,
  .ports,
  .creed {
    grid-template-columns: 1fr;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(11, 8, 6, 0.2), rgba(11, 8, 6, 0.82));
  }

  .keel-line {
    display: none;
  }

  .plaque,
  .plaque-offset {
    justify-self: stretch;
  }

  .foot-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
  }

  .inscribe-small {
    letter-spacing: 0.22em;
  }

  .ca-tablet {
    flex-wrap: wrap;
  }

  .oracle-frame,
  .oracle-frame iframe {
    min-height: 480px;
    height: 480px;
  }
}
