:root {
  --bone:     oklch(0.972 0.012 80);
  --paper:    oklch(0.955 0.016 80);
  --cream:    oklch(0.92  0.018 78);
  --sand:     oklch(0.84  0.020 75);
  --stone-3:  oklch(0.68  0.018 70);
  --stone-2:  oklch(0.52  0.016 65);
  --stone-1:  oklch(0.36  0.014 60);
  --ink:      oklch(0.22  0.014 55);
  --ink-deep: oklch(0.15  0.012 50);

  --terra-500: oklch(0.625 0.135 41);
  --terra-400: oklch(0.70  0.120 42);

  --forest-900: oklch(0.22 0.042 155);
  --forest-700: oklch(0.34 0.060 152);
  --forest-500: oklch(0.48 0.085 150);
  --forest-300: oklch(0.72 0.060 148);
  --forest-50:  oklch(0.95 0.020 148);
  --moss:       oklch(0.82 0.040 140);

  --serif: "Instrument Serif", "Didot", "GFS Didot", serif;
  --sans:  "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { font-size: 15px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 64px 120px;
}

/* Wordmark */
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink-deep);
  text-align: left;
}
.wordmark .dot { color: var(--terra-500); }

/* Intro */
.intro {
  margin-top: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sand);
}
.intro p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  max-width: 34ch;
  text-wrap: pretty;
}
.intro p i { font-style: italic; color: var(--stone-1); }

/* Products heading */
.plabel {
  margin-top: 96px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone-2);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.plabel b { color: var(--ink); font-weight: 500; }

/* ===== Deckchair card ===== */
.dc-card {
  margin-top: 32px;
  background: var(--forest-900);
  color: var(--forest-50);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.dc-left {
  padding: 48px 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.dc-right {
  position: relative;
  border-left: 1px solid var(--forest-700);
  background: linear-gradient(180deg, var(--forest-700) 0%, var(--forest-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.dc-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest-300);
}
.dc-topline b { color: var(--moss); font-weight: 500; }
.dc-topline .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

.dc-body { margin-top: 48px; }
.dc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest-300);
  margin-bottom: 18px;
}
.dc-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: normal;
}
.dc-logo-mark {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.dc-logo-rect { fill: var(--moss); }
.dc-logo-check { stroke: var(--forest-900); }
.dc-logo-word {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 76px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--forest-50);
}
.dc-desc {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--forest-300);
  max-width: 46ch;
  margin-top: 24px;
  text-wrap: pretty;
}
.dc-desc em { color: var(--moss); font-style: italic; }

.dc-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.dc-btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 13px 22px;
  background: var(--moss);
  color: var(--forest-900);
  border: 1px solid var(--moss);
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.dc-btn:hover { transform: translateY(-1px); background: var(--forest-50); }

/* Deckchair decorative sun */
.dc-sun { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dc-sun svg { position: absolute; right: -120px; top: -120px; opacity: .55; }

/* Deckchair product mock */
.dc-mock {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  background: var(--forest-50);
  color: var(--forest-900);
  border: 1px solid var(--forest-700);
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255, 255, 255, .02);
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
}
.mk-bar {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--moss);
}
.mk-bar .mk-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.mk-bar .mk-brand .dot { color: var(--forest-500); font-style: normal; }
.mk-bar .mk-user {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--forest-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
}
.mk-head { padding: 22px 22px 12px; }
.mk-head .h {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.mk-head .h i { color: var(--forest-500); font-style: italic; }
.mk-head .s {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest-500);
  margin-top: 8px;
}
/* Wallchart legend */
.mk-legend {
  display: flex;
  gap: 14px;
  padding: 0 22px 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest-700);
  border-bottom: 1px solid color-mix(in oklch, var(--forest-700), transparent 82%);
}
.mk-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mk-legend .sw {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid transparent;
}
.sw-al, .wb-al { --bar: oklch(0.70 0.15 152); }
.sw-sk, .wb-sk { --bar: oklch(0.65 0.18 25); }
.sw-pt, .wb-pt { --bar: oklch(0.58 0.17 300); }
.mk-legend .sw-al,
.mk-legend .sw-sk,
.mk-legend .sw-pt {
  background: color-mix(in oklch, var(--bar), transparent 70%);
  border-color: color-mix(in oklch, var(--bar), transparent 50%);
}

/* Wallchart */
.mk-wall {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 22px 18px;
  min-height: 0;
}
.wall-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.wall-name {
  width: 82px;
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--forest-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wall-track {
  position: relative;
  flex: 1;
  height: 16px;
  background: color-mix(in oklch, var(--forest-50), var(--moss) 25%);
  border-radius: 3px;
}
.wall-bar {
  position: absolute;
  top: 2px;
  bottom: 2px;
  background: color-mix(in oklch, var(--bar), transparent 70%);
  border: 1px solid color-mix(in oklch, var(--bar), transparent 45%);
  border-radius: 2px;
}
.mk-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--moss);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest-500);
}
.mk-foot b { color: var(--forest-900); font-weight: 500; }

/* Future placeholder */
.future {
  margin-top: 32px;
  padding: 56px 48px;
  background: var(--paper);
  border: 1px solid var(--sand);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.future .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.future .n b { color: var(--ink); font-weight: 500; }
.future .t {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  letter-spacing: -0.01em;
  color: var(--stone-1);
}
.future .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone-2);
  padding: 6px 12px;
  border: 1px solid var(--sand);
  background: var(--bone);
}

/* Sign-off */
.signoff {
  margin-top: 96px;
  padding-top: 22px;
  border-top: 1px solid var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.signoff a {
  color: var(--ink-deep);
  border-bottom: 1px solid var(--stone-3);
  padding-bottom: 2px;
}
.signoff a:hover { border-color: var(--terra-500); color: var(--terra-500); }
