:root {
  --ink: #f1eee7;
  --muted: #aaa99f;
  --gold: #b99a5e;
  --deep-green: #16271f;
  --black: #070908;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.marble-canvas {
  position: fixed;
  inset: -30vmax;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      ellipse at 27% 39%,
      transparent 0 7%,
      rgba(183, 186, 177, 0.055) 7.3%,
      transparent 8.1% 15%
    ),
    repeating-linear-gradient(
      118deg,
      transparent 0 17%,
      rgba(221, 221, 211, 0.045) 17.2%,
      transparent 17.55% 31%
    ),
    radial-gradient(circle at 73% 18%, rgba(42, 54, 47, 0.38), transparent 30%),
    radial-gradient(circle at 17% 84%, rgba(45, 47, 43, 0.32), transparent 32%),
    linear-gradient(145deg, #050605 0%, #111411 42%, #060706 100%);
  background-size: 96vmax 96vmax, 132vmax 132vmax, auto, auto, auto;
  transform: rotate(-4deg) scale(1.06);
  animation: marble-drift 34s ease-in-out infinite alternate;
}

.marble-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(105deg, transparent 46%, rgba(255, 255, 246, 0.07) 46.2%, transparent 47%),
    linear-gradient(76deg, transparent 62%, rgba(255, 255, 246, 0.035) 62.15%, transparent 63%);
  background-size: 74vmax 57vmax, 91vmax 69vmax;
}

@keyframes marble-drift {
  from {
    transform: rotate(-4deg) scale(1.06) translate3d(-1.5%, -1%, 0);
  }
  to {
    transform: rotate(-2.5deg) scale(1.14) translate3d(2%, 1.5%, 0);
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px clamp(24px, 4vw, 72px);
}

.brand-logo {
  display: block;
  width: clamp(142px, 12vw, 184px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(93%) sepia(8%) saturate(275%)
    hue-rotate(350deg) brightness(104%);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d6d2c8;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.meta-rule {
  width: 38px;
  height: 1px;
  background: rgba(214, 210, 200, 0.42);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: 100svh;
  padding: 166px clamp(24px, 7vw, 116px) 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 66% 45%, rgba(46, 80, 63, 0.18), transparent 33%),
    linear-gradient(90deg, rgba(4, 6, 5, 0.54), transparent 58%);
}

.hero-copy {
  width: min(100%, 610px);
  padding-top: 22px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7.25vw, 8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.064em;
}

h1 span {
  display: block;
  margin-left: 0.65em;
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px rgba(241, 238, 231, 0.76);
}

.intro {
  max-width: 480px;
  margin: 0 0 38px 4px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.opening {
  display: flex;
  gap: clamp(34px, 5vw, 72px);
  margin: 0 0 38px 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.opening > div {
  display: grid;
  gap: 6px;
}

.opening-label {
  color: #777b75;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.opening strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.discover-link::after {
  content: "";
  position: absolute;
}

.discover-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(185, 154, 94, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 300ms ease, background 300ms ease;
}

.discover-link:hover .discover-arrow {
  transform: rotate(-45deg);
  background: rgba(185, 154, 94, 0.12);
}

.hero-art {
  position: relative;
  width: min(100%, 620px);
  margin-left: auto;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -25px 24px 25px -24px;
  border: 1px solid rgba(185, 154, 94, 0.27);
}

.art-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--deep-green);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.art-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.art-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 7, 5, 0.75));
  pointer-events: none;
}

.art-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #ddd8cc;
  font-size: 0.57rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-note {
  position: absolute;
  bottom: 40px;
  left: 31px;
  margin: 0;
  color: #6f736e;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.story {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(40px, 8vw, 140px);
  min-height: 76vh;
  padding: 150px clamp(24px, 9vw, 150px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(8, 10, 9, 0.82), rgba(15, 20, 17, 0.63));
}

.section-number {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story h2 {
  margin-bottom: 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.story div > p {
  max-width: 660px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.8;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
  padding: 54px clamp(24px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(3, 4, 3, 0.72);
}

footer .brand-logo {
  width: 148px;
}

footer p {
  margin: 0;
  color: #787b76;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-location {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(185, 154, 94, 0.58);
  color: #d6c18f;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.maps-link:hover,
.maps-link:focus-visible {
  border-color: var(--gold);
  background: rgba(185, 154, 94, 0.12);
  color: var(--ink);
  transform: translateY(-2px);
}

.maps-link:focus-visible {
  outline: 2px solid rgba(241, 238, 231, 0.92);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 22px 22px;
  }

  .header-meta {
    gap: 9px;
    font-size: 0.52rem;
    letter-spacing: 0.16em;
  }

  .meta-rule {
    width: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 154px 22px 85px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(4.2rem, 18vw, 6.6rem);
  }

  h1 span {
    margin-left: 0.34em;
  }

  .hero-art {
    width: calc(100% - 26px);
    margin: 0 0 0 26px;
  }

  .scroll-note {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 110px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-location {
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 116px;
  }

  .header-meta span:first-child,
  .meta-rule {
    display: none;
  }

  .eyebrow {
    font-size: 0.58rem;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5rem);
  }

  .opening {
    gap: 26px;
  }

  .opening strong {
    font-size: 0.93rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marble-canvas {
    animation: none;
  }
}
