@charset "utf-8";
#skiptocontent a {
  padding: 6px;
  position: fixed;
  top: -40px;
  left: -40px;
  color: white;
  background: #333;
  z-index: 100;
}
#skiptocontent a:focus {
  position: absolute;
  left: 10px;
  top: 20px;
  background: #BF1722;
}
.span1 {
  width: 7.833%;
}
.span2 {
  width: 16.166%;
}
.span3 {
  width: 25%;
}
.span4 {
  width: 32.833%;
}
.span5 {
  width: 41.166%;
}
.span6 {
  width: 50%;
}
.span7 {
  width: 57.833%;
}
.span8 {
  width: 66.166%;
}
.span9 {
  width: 75%;
}
.span10 {
  width: 82.833%;
}
.span11 {
  width: 91.166%;
}
.span12 {
  width: 99.5%;
}
.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10,
.span11,
.span12 {
  padding: 0;
  margin: 0;
}
.mn {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
}
.mn ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mn li {
  display: block;
  float: left;
  margin-right: .5em;
}
.mn li a {
  display: block;
  padding: .8em;
  width: auto;
  text-align: center;
  text-decoration: none;
  border-radius: .3em;
  transition: all 0.25s ease-out;
  color: white;
}
.mn li:hover a {
  color: #fff;
}
.mn li:hover ul a {
  background: #f9f9f9;
  color: #285c00;
}
.mn .nav-selected,
.mn li:hover ul a:hover {
  color: #fff;
}
.mn li ul {
  display: none;
}
.mn li ul li {
  float: none;
  width: auto;
  margin-top: 0;
}
.mn li ul li a {
  width: auto;
  min-width: 100px;
  padding: .25em .5em;
}
.vn ul li a:hover + .hidden,
.mn ul li a:hover + .hidden,
.hidden:hover {
  display: block;
  position: relative;
}
.show-menu {
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  padding: .5em;
  display: none;
  max-width: 50%;
  margin: .3em auto;
  font-weight: 500;
}
#show-menu[type="checkbox"] {
  display: none !important;
}
input[type=checkbox]:checked ~ #menu {
  display: block;
}
@media (max-width: 800px) {
  .mn {
    display: block;
  }
  #menu {
    width: 100%;
    margin: auto auto 0.5em auto;
  }
  .mn ul {
    position: relative;
    display: none;
  }
  .mn li {
    margin: 0 0 1px;
  }
  .mn ul li,
  .mn li a {
    width: 100%;
  }
  .show-menu {
    display: block;
    cursor: pointer;
  }
  .show-menu:hover {
    color: #285c00;
  }
}
.wrapper .logo {
  text-align: center;
  padding: 0;
  display: flex;
  margin: .5em;
}
.wrapper .center {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: auto;
}
.wrapper #innerWrap {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  flex: auto;
  height: auto;
}
.wrapper .row {
  width: 100%;
  clear: both;
  margin: 0;
  padding: 0;
}
@media (min-width: 900px) {
  .wrapper .header-top,
  .wrapper .page-top,
  .wrapper .row,
  .wrapper footer,
  .wrapper .top {
    display: flex;
    flex-direction: row;
    width: 100%;
    clear: both;
  }
}
:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --paper: #f4f1ea;
  --paper-warm: #ebe6db;
  --gold: #a88d5a;
  --gold-bright: #c9a961;
  --rouge: #8b1a1a;
  --line: rgba(10, 10, 10, 0.12);
  --line-inv: rgba(244, 241, 234, 0.14);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(244, 241, 234, 0.8);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
}
nav.inverted {
  background: rgba(10, 10, 10, 0.8);
  border-bottom-color: var(--line-inv);
  color: var(--paper);
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.logo-mark {
  width: 34px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.logo-mark-light {
  display: none;
}
nav.inverted .logo-mark-dark {
  display: none;
}
nav.inverted .logo-mark-light {
  display: block;
}
.logo-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-main {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-main em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.logo-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}
.nav-links,
.down {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s;
  position: relative;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.down {
  display: none;
  margin: auto;
}
@media (max-width: 900px) {
  nav {
    padding: 1.1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .down {
    display: block;
  }
}
/* HERO */
.hero {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/packages/twentysix/themes/twentysix/css/build/room-scene.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.55;
  filter: contrast(1.05) brightness(0.92);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.5) 55%, rgba(10, 10, 10, 0.96) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  z-index: 2;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2.25rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.eyebrow span {
  display: inline-block;
  padding: 0 1.25rem;
  position: relative;
}
.eyebrow span::before,
.eyebrow span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.eyebrow span::before {
  right: 100%;
}
.eyebrow span::after {
  left: 100%;
}
.hero-price {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.6);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.85s forwards;
}
.hero-price strong {
  color: var(--gold-bright);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.hero-cta {
  display: inline-flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1.2s 1s forwards;
  flex-wrap: wrap;
  justify-content: center;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.1rem 2.25rem;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-block;
  font-weight: 400;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold-bright);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 241, 234, 0.35);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  z-index: 2;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(244, 241, 234, 0.3);
  margin: 0.75rem auto 0;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.3;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.7;
  }
}
/* SECTION BASE */
section {
  padding: 8rem 3rem;
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.85rem;
  margin-bottom: 2px;
}
h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
h2 em {
  font-style: italic;
  color: var(--gold);
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
/* MANIFESTO */
.manifesto {
  padding: 8rem 3rem 6rem;
  background: var(--paper);
  text-align: center;
}
.manifesto .container {
  max-width: 880px;
}
.manifesto p {
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.manifesto p em {
  color: var(--gold);
  font-style: italic;
}
.manifesto .divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 3rem auto;
}
/* STORY */
.story {
  background: var(--paper-warm);
  padding: 8rem 3rem;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-image {
  position: relative;
  aspect-ratio: 0.8;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 1s ease;
}
.story-image:hover img {
  transform: scale(1.04);
}
.story-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(244, 241, 234, 0.25);
  pointer-events: none;
}
/* STORY TRIPTYCH — three-finish lineup in the Origin section */
.story-image-triptych {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  position: relative;
}
.story-image-triptych::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(10, 10, 10, 0.08);
  pointer-events: none;
}
.triptych-item {
  aspect-ratio: 1.33333333;
  overflow: hidden;
  position: relative;
  background: #f7f5f0;
}
.triptych-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1s ease;
}
.triptych-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .story-image-triptych {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .triptych-item {
    aspect-ratio: 1.33333333;
  }
}
.story-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.story-text p:first-of-type::first-letter {
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.35rem 0.6rem 0 0;
  font-weight: 400;
  color: var(--gold);
  font-family: var(--serif);
}
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--ink);
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 1px solid var(--gold);
  margin: 2.5rem 0;
  font-weight: 400;
}
.origin-mark {
  display: block;
  width: 56px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.88;
}
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* HOW IT PLAYS */
.how-it-plays {
  background: var(--ink);
  color: var(--paper);
  padding: 9rem 3rem;
  overflow: hidden;
}
.how-it-plays .section-label {
  color: var(--gold-bright);
}
.how-it-plays h2 em {
  color: var(--gold-bright);
}
.hip-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.hip-text p {
  color: rgba(244, 241, 234, 0.78);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.hip-text p em {
  color: var(--gold-bright);
  font-style: italic;
}
.hip-steps {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-inv);
}
.hip-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-inv);
}
.hip-steps li:last-child {
  border: none;
}
.hip-step-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.5rem;
  font-weight: 400;
}
.hip-step-text {
  color: rgba(244, 241, 234, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  padding-top: 0.2rem;
}
.hip-media {
  display: flex;
  flex-direction: column;
  gap: .5em;
}
.hip-image {
  position: relative;
  aspect-ratio: 0.8;
  overflow: hidden;
}
.hip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hip-video {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  max-width: 100%;
}
.hip-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sound-toggle {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem 0.55rem 0.75rem;
  background: rgba(10, 10, 10, 0.55);
  color: var(--paper);
  border: 1px solid rgba(244, 241, 234, 0.2);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.sound-toggle:hover {
  background: rgba(10, 10, 10, 0.75);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.sound-toggle .sound-icon {
  display: flex;
  align-items: center;
}
.sound-toggle .sound-on {
  display: none;
}
.sound-toggle.is-on .sound-off {
  display: none;
}
.sound-toggle.is-on .sound-on {
  display: flex;
  color: var(--gold-bright);
}
.sound-label {
  line-height: 1;
  padding-top: 1px;
}
@media (max-width: 900px) {
  .hip-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* SPECIFICATION */
.specs-section {
  background: var(--paper);
  padding: 8rem 3rem;
}
.specs-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem;
}
.specs-header p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec {
  text-align: left;
}
.spec-number {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.spec-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.spec-detail {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
/* DIMENSIONS BAND — physical measurements + shipping */
.dimensions-band {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 0;
  margin-top: 3rem;
  padding: 2.5rem 0 0.5rem;
  border-top: 1px solid var(--line);
}
.dim-block {
  padding: 0 2.5rem;
  border-right: 1px solid var(--line);
}
.dim-block:last-child {
  border-right: none;
  padding-right: 0;
}
.dim-block:first-child {
  padding-left: 0;
}
.dim-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.dim-value {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.dim-unit {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-left: 0.35rem;
  vertical-align: 0.5em;
  text-transform: uppercase;
}
.dim-imperial {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.65;
}
.dim-shipping {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 420px;
  padding-top: 0.1rem;
}
@media (max-width: 900px) {
  .dimensions-band {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
  }
  .dim-block {
    padding: 0 1.5rem;
  }
  .dim-block:first-child {
    padding-left: 0;
  }
  .dim-block:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }
  .dim-block-wide {
    grid-column: span 2;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line);
    border-right: none;
  }
}
/* FULLBLEED */
.fullbleed {
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.45) 100%);
}
.fullbleed-text {
  position: absolute;
  bottom: 4rem;
  left: 3rem;
  right: 3rem;
  color: var(--paper);
  z-index: 2;
  max-width: 640px;
}
.fullbleed-text h3 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.15;
  font-style: italic;
}
.fullbleed-text p {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .fullbleed {
    background-attachment: scroll;
    height: 70vh;
  }
  .fullbleed-text {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 2rem;
  }
}
/* FINISHES */
.finishes {
  background: var(--paper-warm);
  padding: 8rem 3rem;
}
.finishes-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}
.finishes-header p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.finishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.finish-card {
  position: relative;
  aspect-ratio: 0.75;
  overflow: hidden;
  cursor: pointer;
}
.finish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 1.2s ease;
}
.finish-card:hover img {
  transform: scale(1.06);
}
.finish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.1) 45%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--paper);
  cursor: default;
}
.finish-overlay .num {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.finish-overlay h3 {
  color: var(--paper);
  margin: 0;
  font-size: 1.6rem;
}
.finish-overlay .finish-detail {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(244, 241, 234, 0.75);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .finishes-grid {
    grid-template-columns: 1fr;
  }
}
/* FINISHES LINEUP — the three-together catalogue shot */
.finishes-lineup {
  width: 100%;
  margin: 0 auto 4rem;
  overflow: hidden;
}
.finishes-lineup img {
  width: 100%;
  height: auto;
  display: block;
}
/* BY COMMISSION BAND */
.commission-band {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}
.commission-image {
  aspect-ratio: 0.8;
  overflow: hidden;
  position: relative;
}
.commission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.commission-image:hover img {
  transform: scale(1.04);
}
.commission-text h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.commission-text h3 em {
  font-style: italic;
  color: var(--gold);
}
.commission-text p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.commission-text p em {
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
@media (max-width: 900px) {
  .commission-band {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
/* GALLERY */
.gallery {
  background: var(--ink);
  color: var(--paper);
  padding: 9rem 3rem;
}
.gallery .section-label {
  color: var(--gold-bright);
}
.gallery-header {
  text-align: center;
  margin-bottom: 5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: default;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.g1 {
  grid-column: span 2;
  grid-row: span 2;
}
.g2 {
  grid-column: span 2;
  grid-row: span 2;
}
.g3 {
  grid-column: span 2;
  grid-row: span 2;
}
.g4 {
  grid-column: span 2;
  grid-row: span 2;
}
.g5 {
  grid-column: span 2;
  grid-row: span 2;
}
.g6 {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .g1,
  .g2,
  .g3,
  .g4,
  .g5,
  .g6 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .g1 {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* LIMITED */
.limited {
  background: var(--paper);
  padding: 8rem 3rem;
  text-align: center;
}
.limited .container {
  max-width: 820px;
}
.limited-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--gold);
}
.limited-ornament .line {
  width: 60px;
  height: 1px;
  background: currentColor;
}
.limited-ornament .diamond {
  width: 8px;
  height: 8px;
  background: currentColor;
  transform: rotate(45deg);
}
.limited p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.limited p.lead {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.35;
  font-weight: 400;
}
.limited p.lead em {
  color: var(--gold);
}
/* ENQUIRY */
.enquiry,
.ccm-block-type-form,
.span6 {
  background: var(--ink);
  color: var(--paper);
  padding: 9rem 3rem 3rem;
}
.enquiry .section-label {
  color: var(--gold-bright);
}
.enquiry h2 {
  color: var(--paper);
}
.enquiry h2 em {
  color: var(--gold-bright);
}
.enquiry-intro p {
  color: rgba(244, 241, 234, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.enquiry-contact {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-inv);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: rgba(244, 241, 234, 0.75);
  line-height: 1.7;
}
.enquiry-contact strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.enquiry-contact a {
  color: rgba(244, 241, 234, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  transition: border-color 0.3s;
}
.enquiry-contact a:hover {
  border-color: var(--gold-bright);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.field,
.field-text,
.field-email,
.field-tel,
.form-select {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label,
.form-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
  font-weight: 500;
}
.field input,
.field select,
.field textarea,
.form-select,
.form-control,
.field-checkboxlist {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 241, 234, 0.25);
  padding: 0.75rem 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
  font-weight: 300;
  transition: border-color 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-bright);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  cursor: pointer;
}
.field select option {
  background: var(--ink);
  color: var(--paper);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--serif);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
form button {
  align-self: flex-start;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}
fieldset {
  padding: .75em;
  border: none;
}
.muted {
  color: red;
}
/* FOOTER */
footer {
  background: #050505;
  color: rgba(244, 241, 234, 0.55);
  padding: 4rem 3rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1.65;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  width: 100%;
  margin: 0 auto 3rem;
}
footer h3 {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
footer ul {
  list-style: none;
}
footer li {
  margin-bottom: 0.75rem;
}
footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--paper);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.footer-mark {
  display: block;
  width: 52px;
  height: auto;
  margin-bottom: 1.25rem;
  opacity: 0.92;
}
.footer-logo em {
  color: var(--gold-bright);
  font-style: italic;
}
.footer-parent {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.4);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-blurb {
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  section {
    padding: 5rem 1.5rem;
  }
  .how-it-plays,
  .enquiry,
  .gallery,
  .specs-section,
  .story,
  .finishes,
  .limited {
    padding: 5rem 1.5rem;
  }
  .manifesto {
    padding: 5rem 1.5rem;
  }
  .ccm-block-type-form,
  .span6 {
    width: 100%;
    padding: 1em;
  }
}
/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
