:root {
  --ivory: #f7f1e6;
  --limestone: #dfc79d;
  --stone: #b99e72;
  --charcoal: #211d19;
  --muted: #6f6254;
  --gold: #b68a35;
  --red: #7f211c;
  --green: #173f32;
  --panel: #fffaf0;
  --line: rgba(33, 29, 25, 0.16);
  --shadow: 0 26px 70px rgba(33, 29, 25, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(247, 241, 230, 0.22);
  background: rgba(33, 29, 25, 0.42);
  color: var(--ivory);
  backdrop-filter: blur(18px);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled,
.site-header.light {
  background: rgba(247, 241, 230, 0.92);
  color: var(--charcoal);
  border-color: var(--line);
}

.nav {
  width: min(1440px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand-mark {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark span {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: currentColor;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: 600 0.72rem/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fffaf0;
}

.button.ghost-light {
  color: var(--ivory);
  border-color: rgba(247, 241, 230, 0.78);
}

.button.ghost-light:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  padding: 130px max(6vw, 24px) 72px;
  color: var(--ivory);
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 16, 12, 0.7), rgba(20, 16, 12, 0.22) 54%, rgba(20, 16, 12, 0.04));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: saturate(0.96) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.38);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 920px;
  font-size: clamp(4.1rem, 10vw, 10.8rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.75rem, 6vw, 6.2rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.hero p,
.page-intro p,
.lead {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  max-width: 740px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: clamp(72px, 10vw, 150px) max(6vw, 24px);
}

.section.tight {
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.container {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(850px, 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-image {
  overflow: hidden;
  background: #e8dccb;
}

.editorial-image img {
  width: 100%;
  height: clamp(420px, 62vw, 780px);
  object-fit: cover;
  transition: transform 1.4s ease;
}

.editorial-image:hover img {
  transform: scale(1.025);
}

.stone-band {
  background: linear-gradient(180deg, #eadcc6, #d6bea0);
}

.charcoal-band {
  background: var(--charcoal);
  color: var(--ivory);
}

.green-band {
  background: var(--green);
  color: var(--ivory);
}

.preview-grid,
.product-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
}

.symbol-preview {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 18px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: background 0.28s ease, transform 0.28s ease;
}

.symbol-preview:hover {
  background: rgba(182, 138, 53, 0.11);
  transform: translateY(-4px);
}

.symbol-preview span {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.symbol-preview strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  font-weight: 500;
}

.visual-preview-grid {
  gap: clamp(16px, 2vw, 26px);
  padding-top: clamp(12px, 2vw, 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-symbol-preview {
  min-height: 300px;
  align-content: center;
  gap: 14px;
  padding: 24px 12px 28px;
  border: 0;
}

.visual-symbol-preview figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0;
  background: rgba(255, 249, 239, 0.26);
}

.visual-symbol-preview img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s ease;
}

.visual-symbol-preview:hover img {
  transform: scale(1.035);
}

.page-hero {
  padding: 160px max(6vw, 24px) 76px;
  background: radial-gradient(circle at 80% 10%, rgba(182, 138, 53, 0.2), transparent 30%), linear-gradient(180deg, #efe1cc, var(--ivory));
}

.page-intro {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.62fr);
  min-height: 82svh;
  border-top: 1px solid var(--line);
}

.showcase:nth-child(even) {
  grid-template-columns: minmax(310px, 0.62fr) minmax(0, 1.08fr);
}

.showcase:nth-child(even) .showcase-art {
  order: 2;
}

.showcase-art {
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 86px);
  background: linear-gradient(145deg, #efe3d1, #d7bea0);
}

.plate-frame {
  width: min(640px, 100%);
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
  background: rgba(255, 250, 240, 0.44);
  box-shadow: var(--shadow);
}

.plate-frame img,
.product-image img,
.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.showcase-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 88px);
  background: var(--panel);
}

.showcase-label .number {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.museum-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.museum-grid figure {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  background: #ddc8a8;
}

.museum-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.archive-card,
.product-card {
  background: rgba(255, 250, 240, 0.66);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.archive-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.archive-card {
  padding: 18px;
}

.archive-card .archive-image {
  aspect-ratio: 1 / 1.1;
  display: grid;
  place-items: center;
  padding: 8px;
}

.archive-card h3,
.product-card h3 {
  margin-top: 18px;
  font-size: 2rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: clamp(18px, 3vw, 28px);
}

.product-image {
  aspect-ratio: 1 / 1.18;
  display: grid;
  place-items: center;
  padding: 10px;
  background: linear-gradient(180deg, #f8f0e1, #ead8bd);
}

.price {
  margin: 16px 0 22px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.set-feature,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.set-feature img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.lava-section .narrow {
  margin-bottom: clamp(38px, 6vw, 84px);
}

.lava-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.lava-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.lava-card-large {
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.06fr);
}

.lava-card-large figure {
  order: 2;
}

.lava-card figure {
  margin: 0;
  overflow: hidden;
  background: #d8c09c;
}

.lava-card img {
  width: 100%;
  height: clamp(430px, 48vw, 680px);
  object-fit: cover;
  transition: transform 1.4s ease;
}

.lava-card:hover img {
  transform: scale(1.025);
}

.lava-copy h3 {
  margin: 8px 0 16px;
}

.table-options {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
}

.table-options div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.table-options div:last-child {
  border-bottom: 1px solid var(--line);
}

.table-options span {
  color: var(--muted);
}

.table-options strong {
  color: var(--red);
  font-size: 1.05rem;
}

.story-stack {
  display: grid;
  gap: clamp(54px, 8vw, 110px);
}

.story-row {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.story-row:nth-child(even) {
  grid-template-columns: 1.14fr 0.86fr;
}

.story-row:nth-child(even) .story-copy {
  order: 2;
}

.story-row img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.story-row-wide {
  grid-template-columns: 0.78fr 1.22fr;
}

.story-row-wide img {
  min-height: 560px;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.74);
  color: var(--charcoal);
  font: 1rem/1.4 var(--sans);
  padding: 14px 14px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.form-status:empty {
  display: none;
}

.form-status-banner {
  width: min(1220px, 100%);
  margin: -42px auto 54px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.82);
  font-weight: 600;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.footer {
  padding: 46px max(6vw, 24px);
  background: var(--charcoal);
  color: var(--ivory);
}

.footer-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(247, 241, 230, 0.78);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
    text-align: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase,
  .showcase:nth-child(even),
  .split,
  .set-feature,
  .lava-card,
  .lava-card-large,
  .contact-panel,
  .story-row,
  .story-row:nth-child(even),
  .story-row-wide,
  .museum-grid {
    grid-template-columns: 1fr;
  }

  .showcase:nth-child(even) .showcase-art,
  .lava-card-large figure,
  .story-row:nth-child(even) .story-copy {
    order: initial;
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(100% - 28px, 100%);
  }

  .brand-mark {
    white-space: normal;
  }

  .nav-links {
    gap: 10px 16px;
    font-size: 0.67rem;
  }

  .hero {
    padding: 142px 20px 48px;
    min-height: 94svh;
    background-position: center;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .section,
  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .preview-grid,
  .product-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .symbol-preview {
    min-height: 126px;
  }

  .visual-symbol-preview {
    min-height: 0;
    padding: 18px 12px 22px;
  }

  .visual-symbol-preview figure {
    aspect-ratio: 1 / 0.78;
  }

  .showcase {
    min-height: auto;
  }

  .showcase-art,
  .showcase-label {
    padding: 26px 20px;
  }

  .plate-frame {
    aspect-ratio: 1 / 1.18;
  }

  .editorial-image img,
  .lava-card img,
  .story-row img,
  .set-feature img,
  .museum-grid img {
    min-height: 0;
    height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
