@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-serif-4-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-serif-4-latin-600.woff2") format("woff2");
}

:root {
  --ink: #1B2429;
  --paper: #F3EFE7;
  --white: #FFFFFF;
  --rule: #D4CFC5;
  --sage: #5C6B63;
  --brick: #9C4034;
  --draft: #F4E08A;
  --max: 68rem;
  --gutter: 1.15rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
img { max-width: 100%; height: auto; }
a { color: var(--ink); text-underline-offset: 0.15em; }
a:hover { color: var(--brick); }
h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.35rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.55rem); margin-top: 1.6em; }
h3 { font-size: 1.08rem; font-family: Inter, sans-serif; font-weight: 600; }
p, ul, ol { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
.lede { font-size: 1.08rem; max-width: 40rem; }
.muted, .caption { color: var(--sage); }
.caption { font-size: 0.82rem; letter-spacing: 0.01em; }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 1.5rem 0; }

.draft-ribbon {
  background: var(--draft);
  color: var(--ink);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem var(--gutter);
  border-bottom: 1px solid #e0c75a;
}
.legal-banner {
  background: var(--draft);
  border: 1px solid #e0c75a;
  padding: 0.85rem 1rem;
  margin: 0 0 1.5rem;
}
.legal-banner strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.legal-banner p { margin: 0; font-size: 0.9rem; }

.wrap { width: min(var(--max), calc(100% - 2 * var(--gutter))); margin-inline: auto; }

.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 0.75rem;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand img {
  display: block;
  height: 2.4rem;
  width: auto;
  max-width: min(16rem, 62vw);
  object-fit: contain;
  object-position: left center;
}
.brand-fallback {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.brand-tag {
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 400;
  margin-top: 0.15rem;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}
.site-nav { display: none; }
.site-nav.open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid var(--rule);
}
.site-nav a {
  display: block;
  text-decoration: none;
  padding: 0.55rem 0;
  font-size: 0.95rem;
}
.site-nav a[aria-current="page"] { font-weight: 600; border-bottom: 1px solid var(--ink); display: inline-block; }
.btn, .site-nav .btn {
  display: inline-block;
  background: var(--brick);
  color: var(--white) !important;
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--brick);
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { filter: brightness(0.95); }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.1rem 0; }

.hero { padding: 1.8rem 0 1.2rem; border-bottom: 1px solid var(--rule); }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.meta-line {
  font-size: 0.85rem;
  color: var(--sage);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0.45rem 0;
  margin: 1rem 0;
}

.grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 40rem) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 60rem) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .header-inner { padding: 1rem 0 0.85rem; }
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    border: 0;
    padding: 0;
  }
  .site-nav a { padding: 0.2rem 0; font-size: 0.88rem; }
  .brand img { height: 2.7rem; }
}

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1rem 1.05rem 1.1rem;
}
.card h2, .card h3 { margin-top: 0; }
.price {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.price span { font-size: 0.8rem; font-weight: 400; color: var(--sage); display: block; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}
th, td {
  border: 1px solid var(--rule);
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
}
th { font-weight: 600; background: #ebe6dc; }
.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.table-wrap { overflow-x: auto; margin: 1rem 0 1.4rem; border: 1px solid var(--rule); }
.table-wrap table { margin: 0; border: 0; }

.section { padding: 1.6rem 0; }
.note {
  border-left: 3px solid var(--sage);
  padding: 0.2rem 0 0.2rem 0.85rem;
  color: var(--sage);
  font-size: 0.92rem;
}

.scheme {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 0.85rem;
}
.swatches { display: flex; height: 3.2rem; margin: 0.6rem 0; }
.swatches span { flex: 1; }
.plan {
  display: grid;
  gap: 4px;
  background: var(--rule);
  padding: 4px;
  min-height: 9.5rem;
}
.plan > div {
  background: var(--paper);
  padding: 0.45rem 0.5rem;
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan.studio { grid-template-columns: 2fr 1fr; grid-template-rows: 1.4fr 0.8fr; }
.plan.studio .live { grid-column: 1; grid-row: 1 / span 2; }
.plan.onebed { grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; }
.plan.twobed { grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 1.1fr 0.9fr; }
.plan.twobed .live { grid-column: 1; grid-row: 1 / span 2; }
.plan.threebed { grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 1fr 0.85fr 0.85fr; }
.plan.threebed .live { grid-column: 1; grid-row: 1 / span 2; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  position: relative;
  padding: 0 0 1.1rem 2.4rem;
  border-left: 1px solid var(--rule);
  margin-left: 0.7rem;
}
.steps li:last-child { border-left-color: transparent; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.7rem;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

form label { display: block; font-size: 0.85rem; font-weight: 600; margin: 0.7rem 0 0.25rem; }
form input, form select, form textarea {
  width: 100%;
  font: inherit;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}
form textarea { min-height: 7rem; }
.form-disabled {
  display: none;
  margin-top: 0.85rem;
  background: var(--draft);
  border: 1px solid #e0c75a;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
}
.form-disabled.show { display: block; }

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 0.7rem 0;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin: 0.5rem 0 0.2rem; }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.4rem 0 2.2rem;
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: 1rem;
}
.site-footer a { color: var(--sage); }
.footer-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-legal { margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid var(--rule); font-size: 0.8rem; }
.stamp {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.cookie-banner {
  position: sticky;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--ink);
  padding: 0.85rem var(--gutter);
  z-index: 20;
}
.cookie-banner p { margin: 0 0 0.6rem; font-size: 0.88rem; max-width: 46rem; }
.cookie-banner[hidden] { display: none; }

.legal-doc h2 { font-family: "Source Serif 4", Georgia, serif; }
.legal-doc li { margin-bottom: 0.35rem; }
blockquote {
  margin: 0 0 1rem;
  padding: 0.6rem 0.9rem;
  background: #ebe6dc;
  border-left: 3px solid var(--sage);
}

/* Optional checkout scaffold (not in main nav). Dark, test-mode only. */
body.checkout-dark {
  background: #12151a;
  color: #e8e6e1;
}
body.checkout-dark a { color: #e8e6e1; }
body.checkout-dark a:hover { color: #f4e08a; }
body.checkout-dark .site-header,
body.checkout-dark .site-footer,
body.checkout-dark .cookie-banner {
  background: #0b0d10;
  color: #e8e6e1;
}
body.checkout-dark .site-header { border-bottom-color: #2a3038; }
body.checkout-dark .site-footer { border-top-color: #2a3038; }
body.checkout-dark .stamp { color: #f4e08a; }
body.checkout-dark .caption, body.checkout-dark .muted { color: #9aa3ad; }
body.checkout-dark .hero { background: #12151a; }
.badge-test {
  display: inline-block;
  background: #f4e08a;
  color: #12151a;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  margin: 0 0 0.8rem;
}
.checkout-panel {
  max-width: 28rem;
  padding: 1.2rem 1.3rem;
  background: #1a1f26;
  border: 1px solid #2a3038;
}
body.checkout-dark .btn[disabled],
.checkout-panel .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

figure.scheme { margin: 0 0 1rem; }
figure.scheme img { width: 100%; height: auto; display: block; border: 1px solid var(--rule); background: var(--white); }
figure.scheme figcaption,
.scheme-slot {
  font-size: 0.85rem;
  color: #5c656b;
  margin: 0.4rem 0 0;
}
.scheme-slot {
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  border: 1px dashed var(--rule);
  background: var(--white);
  color: var(--ink);
}
