:root {
  --black: #030201;
  --ink: #090705;
  --espresso: #120d09;
  --ivory: #f3eee5;
  --sand: #c9b59b;
  --copper: #a66b45;
  --white: #fffaf2;
  --muted: rgba(255, 250, 242, 0.7);
  --quiet: rgba(255, 250, 242, 0.5);
  --panel: rgba(255, 250, 242, 0.1);
  --shadow: 0 32px 110px rgba(0, 0, 0, 0.3);
  --ease: cubic-bezier(0.22, 0.78, 0.22, 1);
  --page-x: 52px;
  --page-y: 54px;
  --page-b: 120px;
  --nav-h: 56px;
  --deck-h: 100dvh;
  --column-gap: 48px;
  --module-gap: 18px;
  --panel-pad: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 76% 18%, rgba(166, 107, 69, 0.14), transparent 30%), radial-gradient(circle at 12% 90%, rgba(201, 181, 155, 0.08), transparent 34%), linear-gradient(135deg, rgba(255, 250, 242, 0.025), transparent 42%);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

/* Deck */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--sand));
  transition: width 0.35s var(--ease);
}

.deck {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--deck-h);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  overscroll-behavior-y: contain;
}

.slide {
  position: relative;
  display: grid;
  min-height: var(--deck-h);
  padding: var(--page-y) var(--page-x) var(--page-b);
  align-content: center;
  isolation: isolate;
  overflow: visible;
  background: var(--ink);
  opacity: var(--slide-alpha, 0.22);
  transform: translate3d(0, var(--slide-shift, 14px), 0) scale(var(--slide-scale, 0.99));
  transition:
    opacity 240ms linear,
    transform 320ms var(--ease);
}

.slide.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (min-width: 1200px) {
  .slide {
    height: var(--deck-h);
    overflow: hidden;
  }
}

.slide > .layout-cover > *,
.slide > .layout-split > *,
.slide > .layout-wide > *,
.slide > .layout-center > div {
  opacity: var(--content-alpha, 1);
  transform: translate3d(0, var(--content-shift, 0), 0);
  transition:
    opacity 260ms linear,
    transform 420ms var(--ease);
}

.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.96);
  transform: scale(1.02);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 2, 1, 0.9), rgba(3, 2, 1, 0.62) 34%, rgba(3, 2, 1, 0.16) 64%, rgba(3, 2, 1, 0.76)), linear-gradient(180deg, rgba(3, 2, 1, 0.2), rgba(3, 2, 1, 0.9));
}

.bg.right::after {
  background: linear-gradient(90deg, rgba(3, 2, 1, 0.86), rgba(3, 2, 1, 0.68) 38%, rgba(3, 2, 1, 0.14) 70%, rgba(3, 2, 1, 0.62)), linear-gradient(180deg, rgba(3, 2, 1, 0.12), rgba(3, 2, 1, 0.9));
}

.bg.center::after {
  background: radial-gradient(circle at 50% 65%, rgba(3, 2, 1, 0.04), rgba(3, 2, 1, 0.8) 62%, rgba(3, 2, 1, 0.92)), linear-gradient(180deg, rgba(3, 2, 1, 0.3), rgba(3, 2, 1, 0.9));
}

.bg.soft::after {
  background: linear-gradient(90deg, rgba(3, 2, 1, 0.84), rgba(3, 2, 1, 0.42) 48%, rgba(3, 2, 1, 0.82)), linear-gradient(180deg, rgba(3, 2, 1, 0.16), rgba(3, 2, 1, 0.9));
}

.slide-number,
.section-label {
  position: absolute;
  top: 32px;
  z-index: 5;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.slide-number {
  left: var(--page-x);
  letter-spacing: 0.18em;
  color: var(--quiet);
}

.section-label {
  right: var(--page-x);
  max-width: min(46vw, 520px);
  text-align: right;
  letter-spacing: 0.24em;
  color: rgba(201, 181, 155, 0.72);
}

/* Type */
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ivory);
}

h1 {
  max-width: 980px;
  font-size: 72px;
  line-height: 0.95;
}

h2 {
  max-width: 600px;
  font-size: 48px;
  line-height: 1;
}

h3 {
  font-size: 30px;
  line-height: 1.06;
}

p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

p strong,
.lead strong,
.text-row strong + p strong,
.scope-item p strong,
.step p strong {
  color: var(--ivory);
  font-weight: 700;
}

.lead {
  max-width: 700px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255, 250, 242, 0.8);
}

.kicker,
.micro {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 14px;
  color: var(--sand);
  font-weight: 500;
}

.micro {
  color: var(--quiet);
}

.cover-meta {
  margin-top: 22px;
}

/* Layouts */
.layout-cover,
.layout-split,
.layout-wide,
.layout-center {
  position: relative;
  z-index: 2;
  min-height: calc(var(--deck-h) - var(--page-y) - var(--page-b));
}

.layout-cover,
.layout-split,
.layout-wide {
  display: grid;
  gap: var(--column-gap);
  align-items: center;
  width: 100%;
}

.layout-cover {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
}

.layout-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.layout-wide {
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
}

.layout-center {
  display: grid;
  place-items: center;
  text-align: center;
}

.layout-center > div {
  max-width: 920px;
}

.closing-copy .lead {
  margin-right: auto;
  margin-left: auto;
}

.thanks {
  font-weight: 700;
}

.text-block {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cover-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  gap: 12px;
}

.cover-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-name {
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.88);
}

.proposal-title {
  max-width: 360px;
  font-size: 11px;
  line-height: 1.72;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.78);
}

/* Text modules */
.text-stack,
.palette,
.sitemap,
.flow,
.scope-grid,
.dev-grid,
.index-list {
  width: 100%;
  margin-top: 15px;
}

.text-stack {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.text-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.11);
}

.text-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

.text-row p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 250, 242, 1);
}

.text-row.inline {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.text-row.inline strong {
  margin-bottom: 0;
  padding-top: 4px;
}

.statement {
  max-width: 650px;
  margin-top: 28px;
  padding-left: 22px;
  border-left: 1px solid rgba(166, 107, 69, 0.66);
}

.statement p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
  color: rgba(255, 250, 242, 0.9);
}

.statement.statement-small {
  max-width: 520px;
}

.statement.statement-small p {
  font-size: 22px;
}

/* Media modules */
.image-canvas,
.visual-grid,
.room-mock {
  margin-right: calc(var(--page-x) * -1);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-canvas,
.visual {
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.84) brightness(0.92) contrast(1.03);
}

.image-canvas {
  position: relative;
  min-height: 100%;
  aspect-ratio: 16 / 10;
}

.image-canvas::after,
.room-image::after,
.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-canvas::after {
  background: linear-gradient(90deg, rgba(3, 2, 1, 0.42), rgba(3, 2, 1, 0.08) 44%, rgba(3, 2, 1, 0.42)), linear-gradient(180deg, rgba(3, 2, 1, 0.08), rgba(3, 2, 1, 0.48));
}

.caption {
  position: absolute;
  right: 42px;
  bottom: 40px;
  left: 36px;
  z-index: 2;
  max-width: 520px;
}

.caption strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ivory);
}

.caption span,
.visual span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.72);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  min-height: 100%;
  background: var(--black);
}

.visual {
  position: relative;
}

.visual::after {
  background: linear-gradient(180deg, rgba(3, 2, 1, 0.08), rgba(3, 2, 1, 0.36));
  transition: background 0.3s var(--ease);
}

.visual:hover::after {
  background: linear-gradient(180deg, rgba(3, 2, 1, 0.02), rgba(3, 2, 1, 0.54));
}

.visual.large {
  grid-column: span 5;
}

.visual.medium {
  grid-column: span 4;
}

.visual.small {
  grid-column: span 3;
}

.visual span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(3, 2, 1, 0.38);
  backdrop-filter: blur(8px);
}

.palette {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(240px, 1.08fr);
  gap: 18px;
  max-width: 920px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 190px;
  overflow: hidden;
  background: var(--black);
}

.swatch {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px 10px;
  background: var(--c);
}

.swatch.deep-black {
  --c: #030201;
}

.swatch.espresso {
  --c: #120d09;
}

.swatch.taupe {
  --c: #6f5a49;
}

.swatch.copper {
  --c: #a66b45;
}

.swatch.sand {
  --c: #c9b59b;
  --t: #120d09;
}

.swatch.ivory {
  --c: #f3eee5;
  --t: #120d09;
}

.swatch span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t, var(--ivory));
}

.design-note {
  display: grid;
  gap: 14px;
  padding: var(--panel-pad);
  background: var(--panel);
  border-left: 1px solid rgba(166, 107, 69, 0.5);
}

.design-note p {
  font-size: 14px;
  line-height: 1.68;
}

.design-note strong {
  color: var(--ivory);
  font-weight: 500;
}

/* Grids and cards */
.sitemap,
.flow,
.scope-grid,
.dev-grid {
  display: grid;
  gap: var(--module-gap);
}

.sitemap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
}

.flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
}

.scope-grid,
.dev-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
}

.node,
.step,
.scope-item,
.dev-item,
.index-item {
  min-height: 118px;
  padding: var(--panel-pad);
  background: var(--panel);
  border-left: 1px solid rgba(255, 250, 242, 1);
}

.node,
.step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.node.main,
.dev-item.wide {
  background: linear-gradient(135deg, rgba(166, 107, 69, 0.18), rgba(255, 250, 242, 0.035));
  border-left-color: rgba(166, 107, 69, 0.72);
}

.node span,
.step span,
.index-item span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: bold;
}

.node strong,
.step strong,
.scope-item strong,
.dev-item strong,
.index-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ivory);
}

.step strong {
  margin: 0;
}

.scope-item strong,
.dev-item strong {
  margin-bottom: 10px;
}

.step p,
.scope-item p,
.dev-item p {
  font-size: 13px;
  line-height: 1.58;
  color: rgba(255, 250, 242, 1);
}

.dev-item.wide {
  grid-column: 1 / -1;
}

.room-mock {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  min-height: 100%;
  background: var(--ivory);
  color: var(--black);
}

.room-image {
  position: relative;
  min-height: 100%;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.86) brightness(0.94) contrast(1.02);
}

.room-image::after {
  background: linear-gradient(180deg, rgba(3, 2, 1, 0.04), rgba(3, 2, 1, 0.42));
}

.room-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
}

.room-content .kicker {
  margin-bottom: 12px;
  color: var(--copper);
}

.room-content h3 {
  color: #120d09;
}

.room-content p {
  margin-top: 16px;
  color: rgba(18, 13, 9, 0.62);
}

.room-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.room-meta div {
  padding-top: 12px;
  border-top: 1px solid rgba(18, 13, 9, 0.2);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 13, 9, 0.55);
}

.reserve-btn {
  align-self: flex-start;
  border: 0;
  padding: 13px 22px;
  background: #120d09;
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.reserve-btn:hover {
  background: var(--copper);
}

/* Rate card */
.rate-card {
  max-height: 100%;
  margin-left: auto;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: 26px 28px 24px;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.025));
  border-left: 1px solid rgba(166, 107, 69, 0.68);
  box-shadow: var(--shadow);
}

.rate-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
}

.rate-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ivory);
}

.rate-head span,
.rate-row span {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.68);
}

.rate-head span {
  color: var(--sand);
  white-space: nowrap;
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.1);
}

.rate-row b {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ivory);
}

.rate-row p {
  font-size: 12px;
  line-height: 1.48;
  color: rgba(255, 250, 242, 0.62);
}

.rate-row span {
  min-width: 78px;
  text-align: right;
}

.rate-row.total {
  align-items: end;
  margin-top: 4px;
  padding-top: 15px;
  border-bottom: 0;
}

.rate-row.total b {
  font-size: 28px;
}

.rate-row.total span {
  min-width: 128px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
}

.rate-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 242, 0.1);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 250, 242, 0.5);
}

/* Navigation */
.navigation {
  position: fixed;
  right: var(--page-x);
  bottom: 22px;
  left: var(--page-x);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  pointer-events: none;
  background: rgba(3, 2, 1, 0.2);
  border-top: 1px solid rgba(255, 250, 242, 0.08);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.nav-left {
  flex: 1;
  flex-wrap: wrap;
}

.nav-right {
  flex-shrink: 0;
  justify-content: flex-end;
  font-size: 12px;
}

.index-btn,
.nav-btn {
  height: 36px;
  border: 0;
  background: rgba(255, 250, 242, 0.92);
  color: #090705;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

.index-btn {
  padding: 0 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-btn {
  width: 48px;
  font-size: 18px;
  line-height: 1;
}

.index-btn:hover,
.nav-btn:hover {
  background: var(--copper);
  color: var(--white);
}

.nav-btn:disabled {
  opacity: 0.34;
}

.position-label {
  min-width: 58px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.56);
}

.dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.28);
  transition:
    width 0.25s var(--ease),
    background 0.25s var(--ease);
}

.dot.active {
  width: 27px;
  background: var(--copper);
}

.signature-logo {
  width: 120px;
  height: 44px;
  object-fit: contain;
  object-position: right center;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

/* Index panel */
.index-panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  padding: 58px var(--page-x) calc(var(--nav-h) + 44px);
  overflow: auto;
  background: rgba(3, 2, 1, 0.96);
}

.index-panel.open {
  display: block;
}

.index-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 48px;
  align-items: center;
  min-height: 100%;
}

.close-index {
  position: absolute;
  top: 30px;
  right: 36px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  padding: 10px 14px;
  background: transparent;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.index-item {
  min-height: 82px;
  border: 0;
  text-align: left;
  color: var(--white);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.index-item:hover {
  border-left-color: rgba(166, 107, 69, 0.86);
  background: rgba(166, 107, 69, 0.14);
}

.index-item span {
  margin-bottom: 8px;
}


/* Estado inicial bloqueado: no blur. Se oculta de verdad para evitar el flash en F5. */
body.access-locked .deck,
body.access-locked .navigation,
body.access-locked .index-panel,
body.access-locked .progress {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

/* Estado desbloqueado. El fade del contenido ocurre recién cuando JS remueve access-locked. */
.deck,
.navigation,
.progress {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s var(--ease),
    visibility 0s linear 0s;
}

/* El panel conserva su lógica original de display:none/display:block. */
.index-panel {
  opacity: 1;
  visibility: visible;
}

/* Overlay visible por defecto para tapar la pantalla antes de que cargue JS. */
.access-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 2, 1, 0.82);
  backdrop-filter: blur(18px) saturate(0.82);
  -webkit-backdrop-filter: blur(18px) saturate(0.82);

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.35s ease,
    visibility 0s linear 0s;
}

/* Fade out: no clickea ni bloquea mientras desaparece. */
.access-gate.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0s linear 0.35s;
}

/* Después del fade, JS agrega esta clase. */
.access-gate.is-hidden {
  display: none;
}
.access-card {
  width: min(410px, 100%);
  padding: 32px;
  background: linear-gradient(135deg, rgba(18, 13, 9, 0.94), rgba(3, 2, 1, 0.92));
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-left: 1px solid rgba(166, 107, 69, 0.72);
  box-shadow: var(--shadow);
  color: var(--white);
}

.access-mark {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  line-height: 0.82;
  letter-spacing: 0;
  color: var(--ivory);
}

.access-card h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.access-card p {
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 250, 242, 0.62);
}

.access-field {
  display: grid;
  gap: 10px;
}

.access-field label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.access-field input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  outline: none;
  padding: 0 14px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
}

.access-field input:focus {
  border-color: rgba(166, 107, 69, 0.86);
  box-shadow: 0 0 0 3px rgba(166, 107, 69, 0.16);
}

.access-submit {
  width: 100%;
  height: 44px;
  margin-top: 14px;
  border: 0;
  background: rgba(255, 250, 242, 0.92);
  color: #090705;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-submit:hover {
  background: var(--copper);
  color: var(--white);
}

.access-error {
  min-height: 18px;
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.45;
  color: #e8b59b;
}

@media (max-width: 1280px) {
  :root {
    --page-x: 38px;
    --page-y: 44px;
    --page-b: 116px;
    --column-gap: 34px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 42px;
  }

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

  .rate-card {
    max-height: 56vh;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-x: 26px;
    --page-y: 40px;
    --page-b: 116px;
    --column-gap: 28px;
    --module-gap: 14px;
    --panel-pad: 18px;
  }

  .layout-cover,
  .layout-split,
  .layout-wide,
  .index-inner,
  .palette,
  .scope-grid,
  .dev-grid {
    grid-template-columns: 1fr;
  }

  .layout-cover,
  .layout-split,
  .layout-wide,
  .layout-center {
    min-height: auto;
  }

  .cover-left {
    align-items: flex-start;
    text-align: left;
  }

  .cover-logo {
    width: 160px;
  }

  .image-canvas,
  .visual-grid,
  .room-mock {
    width: 100%;
    margin-right: 0;
  }

  .image-canvas {
    min-height: 100%;
    aspect-ratio: 16 / 9;
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .visual,
  .visual.large,
  .visual.medium,
  .visual.small {
    grid-column: auto;
    min-height: 220px;
  }

  .room-mock {
    grid-template-columns: 1fr;
  }

  .room-image {
    min-height: 280px;
  }

  .rate-card {
    width: 100%;
    max-height: 52vh;
    margin-left: 0;
  }

  .rate-row,
  .rate-head {
    grid-template-columns: 1fr;
  }

  .rate-row span {
    min-width: 0;
    text-align: left;
  }

  .dots {
    display: none;
  }

  .index-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page-x: 18px;
    --page-y: 38px;
    --page-b: 104px;
    --column-gap: 22px;
    --module-gap: 12px;
    --panel-pad: 16px;
  }

  .slide {
    padding: 40px;
  }

  .slide-number,
  .section-label {
    top: 18px;
    font-size: 9px;
  }

  .section-label {
    max-width: 52vw;
  }

  h1 {
    font-size: 44px;
    line-height: 0.98;
  }

  h2 {
    font-size: 33px;
    line-height: 1.04;
  }

  h3 {
    font-size: 26px;
  }

  .lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }

  p,
  .text-row p {
    font-size: 13px;
    line-height: 1.58;
  }

  .brand-name {
    margin-bottom: 24px;
  }

  .proposal-title {
    font-size: 10px;
  }

  .text-row.inline,
  .sitemap,
  .flow,
  .scope-grid,
  .dev-grid,
  .visual-grid,
  .room-meta {
    grid-template-columns: 1fr;
  }

  .text-row.inline strong {
    padding-top: 0;
  }

  .statement {
    margin-top: 22px;
  }

  .statement p,
  .statement.statement-small p {
    font-size: 21px;
  }

  .image-canvas {
    min-height: 260px;
  }

  .visual,
  .visual.large,
  .visual.medium,
  .visual.small {
    min-height: 170px;
  }

  .visual-grid {
    min-height: auto;
  }

  .swatches {
    min-height: 150px;
  }

  .caption {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .caption strong {
    font-size: 25px;
  }

  .room-content {
    padding: 24px;
  }

  .rate-card {
    max-height: 48vh;
    padding: 20px 18px;
  }

  .rate-head strong {
    font-size: 25px;
  }

  .rate-row b {
    font-size: 18px;
  }

  .rate-row.total b {
    font-size: 24px;
  }

  .rate-row.total span {
    font-size: 21px;
  }

  .navigation {
    right: var(--page-x);
    bottom: 16px;
    left: var(--page-x);
  }

  .signature-logo {
    width: 66px;
    height: 34px;
  }

  .index-panel {
    padding: 56px var(--page-x) 120px;
  }

  .access-card {
    padding: 26px 22px;
  }
}
