/* ============================================================
   Outraro — Design System
   Premium editorial × strategy firm × modern B2B
   ============================================================ */

:root {
  /* Palette — restrained, editorial. Ink + warm paper + single accent. */
  --ink: #14110d;          /* near-black, warm */
  --ink-soft: #2a2620;
  --ink-mute: #5a544c;
  --ink-faint: #8a847a;
  --rule: #e6e0d6;         /* hairline rule, warm */
  --rule-soft: #efeae0;
  --paper: #f6f1e7;        /* warm off-white */
  --paper-deep: #ede6d7;
  --paper-card: #fbf8f1;
  --accent: #b8593a;       /* warm clay/terracotta — restrained, premium */
  --accent-deep: #934127;
  --accent-soft: #e8d4c5;

  /* Type */
  --font-display: 'Boska', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Switzer', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Sizes — fluid */
  --text-xs: clamp(11px, 0.72rem, 12px);
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: clamp(18px, 1.15rem, 20px);
  --text-xl: clamp(22px, 1.6rem, 28px);
  --text-2xl: clamp(30px, 3.4vw, 44px);
  --text-3xl: clamp(42px, 5.2vw, 72px);
  --text-hero: clamp(54px, 7vw, 104px);

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-8: 48px;
  --s-10: 64px;
  --s-12: 80px;
  --s-16: 112px;
  --s-20: 144px;
  --s-24: 176px;

  /* Layout */
  --max-w: 1240px;
  --max-w-prose: 680px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0.24, 1);
  --dur-fast: 200ms;
  --dur: 400ms;
  --dur-slow: 700ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.lead {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}
small, .meta { font-size: var(--text-xs); color: var(--ink-mute); letter-spacing: 0.02em; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(72px, 11vw, 144px) 0;
  position: relative;
}
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.divider {
  height: 1px;
  background: var(--rule);
  width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 6px 18px -8px rgba(20,17,13,0.4);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--rule);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ink); }
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--rule); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand__mark { width: 28px; height: 28px; }
.brand__word {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav .btn--primary, .nav .btn--primary:hover { color: #fff; }
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(28px, 3.6vw, 56px) 0 clamp(96px, 12vw, 168px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: end;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.35fr 1fr; }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px 0 20px;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
}
.hero__ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__side {
  border-left: 1px solid var(--rule);
  padding: 4px 0 4px clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 960px) {
  .hero__side { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 28px; gap: 22px; }
}
.hero__stat {
  display: block;
}
.hero__stat .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.hero__stat .label {
  display: block;
  margin-top: 6px;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 30ch;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
}

/* ---------- Proof bar ---------- */
.proof {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  background: var(--paper);
}
.proof__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  justify-content: space-between;
}
.proof__label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.proof__items {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.proof__item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
}
.proof__item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Section heads ---------- */
.shead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 880px) {
  .shead { grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
}
.shead__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--ink);
}
.shead__title em { font-style: italic; }
.shead__meta { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 720px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-cell {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: background var(--dur) var(--ease);
}
.problem-cell:hover { background: var(--paper-card); }
.problem-cell .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.problem-cell h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.problem-cell p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.55;
}

/* ---------- What we do ---------- */
.do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .do-grid { grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
}
.do-item {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .do-item {
    border-top: 0;
    border-right: 1px solid var(--rule);
    padding: 32px clamp(20px, 2.4vw, 32px);
  }
  .do-item:first-child { padding-left: 0; }
  .do-item:last-child { border-right: 0; padding-right: 0; }
}
.do-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.do-item p { color: var(--ink-soft); margin: 0; }

/* ---------- How it works (interactive) ---------- */
.how {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  .how { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
}
.steps { display: flex; flex-direction: column; }
.step {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  cursor: pointer;
  transition: padding var(--dur) var(--ease);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  width: 28px;
  flex: 0 0 auto;
  transition: color var(--dur) var(--ease);
}
.step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  flex: 1;
  line-height: 1.2;
}
.step__body {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease), padding var(--dur) var(--ease);
  opacity: 0;
  padding-left: 46px;
}
.step.is-active .step__body {
  max-height: 200px;
  opacity: 1;
  padding-top: 14px;
}
.step.is-active .step__num { color: var(--accent); }
.step.is-active .step__title { color: var(--ink); }
.step__indicator {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.step.is-active .step__indicator { transform: scaleY(1); }

.how__visual {
  position: sticky;
  top: 96px;
  border: 1px solid var(--rule);
  background: var(--paper-card);
  border-radius: 14px;
  padding: 32px;
  min-height: 420px;
  overflow: hidden;
}
.how__panel {
  display: none;
  animation: fadeUp var(--dur) var(--ease);
}
.how__panel.is-active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Case study ---------- */
.case {
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.case__logo {
  position: absolute;
  top: clamp(28px, 3vw, 40px);
  right: clamp(28px, 3vw, 40px);
  width: clamp(72px, 7vw, 104px);
  height: auto;
  opacity: 0.85;
  filter: invert(1) brightness(1.05);
  z-index: 2;
  pointer-events: none;
}
.case__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) {
  .case__grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
}
.case__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.55);
}
.case__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
  color: var(--paper);
}
.case__title em { font-style: italic; }
.case__body { color: rgba(246,241,231,0.78); font-size: var(--text-lg); line-height: 1.55; }
.case__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case__metric {
  border-top: 1px solid rgba(246,241,231,0.18);
  padding-top: 16px;
}
.case__metric .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}
.case__metric .label {
  display: block;
  margin-top: 8px;
  color: rgba(246,241,231,0.6);
  font-size: var(--text-sm);
}
.case__quote {
  margin-top: 40px;
  border-top: 1px solid rgba(246,241,231,0.18);
  padding-top: 24px;
  color: rgba(246,241,231,0.85);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  font-weight: 400;
  max-width: 60ch;
}
.case__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(246,241,231,0.55);
  letter-spacing: 0.04em;
}

/* ---------- Pricing & guarantee ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .pricing { grid-template-columns: 1.1fr 1fr; gap: 32px; }
}
.card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 44px);
}
.card--accent {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.card--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(184,89,58,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.card h3 em { font-style: italic; }
.card p { color: var(--ink-soft); }
.card--accent p, .card--accent li { color: rgba(246,241,231,0.78); }
.card ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--text-base);
  line-height: 1.5;
}
.card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex: 0 0 auto;
}

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--rule);
  padding: 6px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.faq__icon {
  width: 18px; height: 18px;
  flex: 0 0 auto;
  position: relative;
  transition: transform var(--dur) var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.faq__icon::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.faq__item.is-open .faq__panel { max-height: 320px; padding-bottom: 22px; }
.faq__panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: 70ch;
}

/* ---------- Final CTA ---------- */
.final {
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: clamp(48px, 7vw, 112px) clamp(28px, 4vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(184,89,58,0.22) 0%, transparent 60%),
    radial-gradient(40% 50% at 0% 0%, rgba(246,241,231,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.final h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 auto 22px;
  max-width: 18ch;
  position: relative;
}
.final h2 em { font-style: italic; }
.final p {
  color: rgba(246,241,231,0.7);
  max-width: 52ch;
  margin: 0 auto 36px;
  font-size: var(--text-lg);
  position: relative;
}
.final .btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.final .btn--primary:hover { background: var(--accent-soft); color: var(--ink); }

.final__embed {
  position: relative;
  margin: 0 auto;
  max-width: 980px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(246,241,231,0.06) inset, 0 30px 80px -40px rgba(0,0,0,0.6);
}
.final__embed .calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 720px;
  border: 0;
}
@media (max-width: 720px) {
  .final {
    padding-left: clamp(16px, 5vw, 28px);
    padding-right: clamp(16px, 5vw, 28px);
  }
  .final__embed .calendly-inline-widget { height: 1040px; }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 40px;
  margin-top: 80px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}
.footer__legal { color: var(--ink-mute); font-size: var(--text-xs); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--ink-mute); font-size: var(--text-sm); }
.footer__links a:hover { color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* Disable for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Subtle grain on dark surfaces ---------- */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Personalized page additions ---------- */
.p-hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
.p-hero__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.p-hero__client {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-card);
}
.p-hero__logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.p-hero__client-name {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 500;
}
.p-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 22ch;
}
.p-hero__title em { font-style: italic; }
.p-hero__sub {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.5;
}
.p-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
}
@media (min-width: 1000px) {
  .p-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
}
.p-content { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.p-block h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.p-block h2 em { font-style: italic; }
.p-block p { color: var(--ink-soft); margin: 0 0 14px; max-width: 62ch; line-height: 1.6; }
.p-focus {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.p-focus li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.p-focus li:last-child { border-bottom: 1px solid var(--rule); }
.p-focus .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.p-focus .text { color: var(--ink-soft); }
.p-focus .text strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.booking-card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  position: sticky;
  top: 96px;
}
.booking-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.booking-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.booking-card__meta {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.booking-embed {
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: 10px;
  padding: 32px 20px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  text-align: center;
  font-size: var(--text-sm);
}
.booking-card__foot {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-card__foot small {
  display: flex; gap: 8px; align-items: center;
  color: var(--ink-mute);
}
.booking-card__foot small::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 1000px) {
  .booking-card { position: static; }
}

/* ---------- Quote / testimonial block ---------- */
.quoteblock {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 48px) 0;
}
.quoteblock blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 30ch;
}
.quoteblock cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
