@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --color-black: #0d0d0e;
  --color-black-soft: #151517;
  --color-paper: #f5f4f0;
  --color-white: #ffffff;
  --color-pink: #f4a5b2;
  --color-pink-soft: #f7c5cd;
  --color-text-dark: #111113;
  --color-text-light: #f5f3ef;
  --color-muted-dark: #6f6f73;
  --color-muted-light: #aaa8a5;
  --color-border-dark: rgba(255, 255, 255, 0.16);
  --color-border-light: rgba(17, 17, 19, 0.14);
  --paper: var(--color-white);
  --milk: var(--color-paper);
  --sand: #ece8e1;
  --ink: var(--color-text-dark);
  --muted: var(--color-muted-dark);
  --line: rgba(17, 17, 19, .14);
  --black: var(--color-black);
  --pink: var(--color-pink);
  --pink-soft: var(--color-pink-soft);
  --success: #2f8f5b;
  --danger: #a63d3d;
  --warm: #9c8b81;
  --display: "Space Grotesk", Manrope, Arial, sans-serif;
  --interface: Manrope, Inter, Arial, sans-serif;
  --brand-serif: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 24px 70px rgba(13, 13, 14, .12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --header-height: 64px;
  --container: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-paper);
  color: var(--ink);
  font-family: var(--interface);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, .page-title {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}
h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: .98;
}
h3 { font-size: 1rem; font-weight: 500; }
p { color: var(--muted); }
main { min-height: 55vh; }
.container, .container-wide { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container-wide { --container: 1520px; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--soft { background: var(--milk); }
.section--tight { padding-block: clamp(42px, 5vw, 72px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 570px; margin-bottom: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 1px; background: currentColor; content: ""; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; padding-block: 24px; color: var(--muted); font-size: .85rem; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span:not(:last-child)::after { margin-left: 9px; content: "/"; color: #aaa49d; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 300; top: 8px; left: 8px; padding: 10px 16px; transform: translateY(-150%); background: var(--black); color: white; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--color-pink); outline-offset: 3px; }
.icon { width: 24px; height: 24px; flex: 0 0 auto; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 550; text-decoration: underline; text-underline-offset: 5px; }
.text-link .icon { width: 18px; }
.muted { color: var(--muted); }
.price { font-size: 1.65rem; font-weight: 650; letter-spacing: -.03em; }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: .9rem; font-weight: 600; }
.status::before { width: 8px; height: 8px; border-radius: 50%; background: currentColor; content: ""; }
.demo-note { padding: 14px 16px; border: 1px solid #ddd6cc; background: #faf8f5; border-radius: var(--radius-sm); color: #514b44; font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
