/* =================================================================
   OPERIS — design system
   Aesthetic: editorial minimalism. Cream paper, deep ink, burgundy
   accent. Fraunces display serif, Manrope body grotesque. Generous
   air. Quiet motion. Built to feel like a Financial Times feature,
   not a SaaS landing page.
   ================================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* ---------- Tokens ---------- */
:root {
  /* paper & ink */
  --paper: #f3ede2;          /* warm cream, base */
  --paper-2: #ece4d4;        /* slightly deeper paper for sections */
  --ink: #15110d;            /* near-black, body type */
  --ink-2: #2a241d;          /* secondary ink */
  --ink-3: #6b6359;          /* muted ink, eyebrows */
  --rule: #c9bfae;           /* hairline rules */

  /* accent */
  --accent: #7a2d2a;         /* deep burgundy */
  --accent-2: #5a1f1d;       /* hover */

  /* dark inversion (used for vertical + contact + footer) */
  --dark: #14110d;
  --dark-2: #1c1813;
  --dark-rule: #3a3128;
  --on-dark: #efe7d6;
  --on-dark-muted: #b4a991;

  /* type */
  --serif: 'Fraunces', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1280px;
}

/* ---------- Base ---------- */
html,
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* subtle paper texture via gradient overlay */
body {
  background-image:
    radial-gradient(circle at 20% 0%, rgba(122, 45, 42, 0.04), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(20, 17, 13, 0.05), transparent 50%);
  background-attachment: fixed;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

/* ---------- Typography utilities ---------- */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
}

em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
  color: var(--accent);
}

abbr[title] {
  text-decoration: none;
  border: 0;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.eyebrow--light {
  color: var(--on-dark-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--block {
  width: 100%;
  padding: 1.1rem 1.6rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem var(--gutter);
  background: rgba(243, 237, 226, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}
.brand__mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  font-variation-settings: 'opsz' 144;
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.nav__links a {
  color: var(--ink-2);
  position: relative;
  padding: 0.25rem 0;
  transition: color 200ms ease;
}
.nav__links a:hover {
  color: var(--accent);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 240ms ease;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: all 200ms ease;
}
.nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* hide nav links on small screens, keep brand + cta */
@media (max-width: 820px) {
  .nav__links {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 9rem) var(--gutter) clamp(3rem, 8vw, 6rem);
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2.5rem;
  animation: rise 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 350;
  margin-bottom: 2.5rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  animation: rise 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}
.hero__lede {
  max-width: 36em;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 2.5rem;
  animation: rise 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 4rem;
  animation: rise 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) 320ms both;
}
.hero__rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 2.5rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  animation: rise 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) 440ms both;
}
.hero__stats > div {
  border-left: 1px solid var(--rule);
  padding-left: 1.25rem;
}
.hero__stats > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.hero__stats dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.hero__stats dd {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 350;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}
@media (max-width: 720px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero__stats > div {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 1rem 0 0;
  }
  .hero__stats > div:first-child {
    border-top: 0;
    padding-top: 0;
  }
}

/* ---------- Generic prose section ---------- */
.prose {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.prose__h {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 22ch;
}
.prose p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1.25rem;
  max-width: 60ch;
}

/* ---------- Section header ---------- */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 4rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  font-weight: 350;
}

/* ---------- Services ---------- */
.services {
  background: var(--paper-2);
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.service-list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}
.service-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service-list li:last-child {
  border-bottom: 1px solid var(--rule);
}
.service-list__num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
  padding-top: 0.4rem;
}
.service-list h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.service-list p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 60ch;
}
@media (max-width: 720px) {
  .service-list li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ---------- Vertical (dark, hospitality) ---------- */
.vertical {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.vertical::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(122, 45, 42, 0.18),
      transparent 50%
    ),
    radial-gradient(circle at 10% 90%, rgba(122, 45, 42, 0.08), transparent 40%);
  pointer-events: none;
}
.vertical__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.vertical h2 {
  color: var(--on-dark);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 350;
  margin-bottom: 1.75rem;
  max-width: 18ch;
}
.vertical h2 em {
  color: #d18068;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}
.vertical__lede {
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 50ch;
  color: var(--on-dark-muted);
  margin-bottom: 4rem;
}
.vertical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--dark-rule);
  border-bottom: 1px solid var(--dark-rule);
}
.big-number {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-variation-settings: 'opsz' 144;
}
.big-number span {
  color: #d18068;
  font-style: italic;
  margin: 0 0.2em;
}
.vertical__grid p:not(.big-number) {
  font-size: 0.95rem;
  color: var(--on-dark-muted);
  line-height: 1.5;
}
.vertical__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vertical__list li {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--on-dark-muted);
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
}
.vertical__list strong {
  color: var(--on-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.vertical__list em {
  color: #d18068;
}
@media (max-width: 760px) {
  .vertical__grid,
  .vertical__list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Approach ---------- */
.approach {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.steps article {
  border-top: 2px solid var(--ink);
  padding-top: 1.75rem;
}
.step-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
}
.steps h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.steps p {
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 1.02rem;
}
@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--paper-2);
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tiers {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2.25rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -22px rgba(20, 17, 13, 0.45);
}
.tier--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tier--featured h3,
.tier--featured .tier__price {
  color: var(--paper);
}
.tier--featured .tier__for,
.tier--featured ul li {
  color: var(--on-dark-muted);
}
.tier__badge {
  position: absolute;
  top: -0.7rem;
  left: 2rem;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.tier h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.tier__for {
  font-size: 0.92rem;
  color: var(--ink-3);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}
.tier__price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-variation-settings: 'opsz' 144;
}
.tier__price span {
  font-size: 0.85rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-3);
  margin-right: 0.4rem;
  vertical-align: middle;
}
.tier--featured .tier__price span {
  color: var(--on-dark-muted);
}
.tier__price small {
  font-size: 0.95rem;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  margin-left: 0.3rem;
}
.tier--featured .tier__price small {
  color: var(--on-dark-muted);
}
.tier__price--sub {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}
.tier--featured .tier__price--sub {
  border-bottom-color: var(--dark-rule);
}
.tier ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.tier ul li {
  padding-left: 1.4rem;
  position: relative;
}
.tier ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.tier--featured ul li::before {
  color: #d18068;
}
.pricing__note {
  max-width: 56rem;
  margin: 3rem auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.6;
}
@media (max-width: 920px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

/* ---------- About ---------- */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 350;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.about p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
  max-width: 62ch;
}
@media (max-width: 820px) {
  .about {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(122, 45, 42, 0.15),
    transparent 50%
  );
  pointer-events: none;
}
.contact__inner {
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
}
.contact h2 {
  color: var(--on-dark);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 350;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.contact__lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--on-dark-muted);
  margin-bottom: 3rem;
  max-width: 50ch;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form label > span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--on-dark-muted);
}
.form input,
.form textarea {
  font-family: var(--sans);
  font-size: 1.02rem;
  background: transparent;
  color: var(--on-dark);
  border: 0;
  border-bottom: 1px solid var(--dark-rule);
  padding: 0.7rem 0;
  transition: border-color 200ms ease;
  resize: vertical;
}
.form input:focus,
.form textarea:focus {
  outline: 0;
  border-bottom-color: #d18068;
}
.form__small {
  font-size: 0.82rem;
  color: var(--on-dark-muted);
  text-align: center;
  margin-top: -0.5rem;
}
.contact__alt {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-rule);
  color: var(--on-dark-muted);
  text-align: center;
  font-size: 0.95rem;
}
.contact__alt a {
  color: #d18068;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  margin-left: 0.3rem;
}
.contact__alt a:hover {
  color: var(--on-dark);
}
.contact .btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.contact .btn--primary:hover {
  background: #d18068;
  color: var(--ink);
}
@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.foot {
  background: #0e0b08;
  color: var(--on-dark-muted);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.foot__brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.32em;
  color: var(--on-dark);
  font-weight: 400;
}
.foot__line {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot__small {
  font-size: 0.82rem;
  max-width: 50rem;
  line-height: 1.5;
  margin-top: 0.6rem;
}

/* ---------- Motion ---------- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

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

/* =================================================================
   Ventini v2 additions: capacity strip, trust row, cost grid, FAQ,
   contact guarantees, section subhead, footer brand kerning fix.
   ================================================================= */

/* brand wordmark — slightly tighter for VENTINI */
.brand__name {
  letter-spacing: 0.28em;
}
.foot__brand {
  letter-spacing: 0.28em;
}

/* section subhead */
.section-head__sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 56ch;
  line-height: 1.65;
}

/* ---------- Capacity strip ---------- */
.capacity {
  background: var(--ink);
  color: var(--on-dark);
  padding: 1.1rem var(--gutter);
}
.capacity__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.capacity__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f0a070;
  box-shadow: 0 0 0 0 rgba(240, 160, 112, 0.7);
  animation: capacity-pulse 2.2s infinite;
  flex-shrink: 0;
}
.capacity p {
  font-size: 0.95rem;
  color: var(--on-dark-muted);
  line-height: 1.5;
}
.capacity strong {
  color: var(--on-dark);
  font-weight: 600;
}
.capacity a {
  color: #f0a070;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  margin-left: 0.4rem;
  white-space: nowrap;
}
.capacity a:hover {
  color: var(--on-dark);
}
@keyframes capacity-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 160, 112, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(240, 160, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 160, 112, 0);
  }
}

/* ---------- Trust strip ---------- */
.trust {
  padding: 3rem var(--gutter) 1rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.trust__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 1.25rem;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
  padding-bottom: 2rem;
}
.trust__row li {
  position: relative;
}
.trust__row li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.2rem;
  color: var(--rule);
}

/* ---------- Cost / loss-aversion section ---------- */
.cost {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  background: var(--paper);
  position: relative;
}
.cost__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.cost h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 350;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.cost__lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 3.5rem;
}
.cost__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.cost__card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--accent);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cost__card:hover {
  transform: translateY(-3px);
}
.cost__number {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.8rem;
  font-variation-settings: 'opsz' 144;
}
.cost__number small {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.cost__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.cost__detail {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.55;
}
.cost__close {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 64ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-weight: 350;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.005em;
}
.cost__close strong {
  color: var(--accent);
  font-weight: 500;
}
.cost .btn {
  display: block;
  margin: 0 auto;
  width: max-content;
}
@media (max-width: 980px) {
  .cost__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cost__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.faq__list {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq details {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
  transition: padding 200ms ease;
}
.faq details:last-of-type {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  font-variation-settings: 'opsz' 144;
  transition: color 200ms ease;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.2;
  transition: transform 240ms ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq summary:hover {
  color: var(--accent);
}
.faq details p {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ---------- Contact guarantees row ---------- */
.contact__guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--dark-rule);
  border-bottom: 1px solid var(--dark-rule);
}
.contact__guarantees li {
  font-size: 0.92rem;
  color: var(--on-dark-muted);
  line-height: 1.4;
  text-align: center;
  padding: 0 0.5rem;
}
.contact__guarantees strong {
  color: #f0a070;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .contact__guarantees {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }
}
@media (max-width: 420px) {
  .contact__guarantees {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .contact__guarantees li {
    text-align: left;
    border-bottom: 1px solid var(--dark-rule);
    padding-bottom: 1rem;
  }
  .contact__guarantees li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* =================================================================
   Industries section — universal replacement for the old hospitality
   vertical. Same dark treatment for visual rhythm; 2x3 grid of
   industry cards instead of single-vertical messaging.
   ================================================================= */

.industries {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(122, 45, 42, 0.18),
      transparent 50%
    ),
    radial-gradient(circle at 10% 90%, rgba(122, 45, 42, 0.08), transparent 40%);
  pointer-events: none;
}
.industries__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.industries h2 {
  color: var(--on-dark);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 350;
  margin-bottom: 1.75rem;
  max-width: 18ch;
}
.industries h2 em {
  color: #d18068;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}
.industries__lede {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 56ch;
  color: var(--on-dark-muted);
  margin-bottom: 4rem;
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.industry {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--dark-rule);
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--accent);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 280ms ease;
}
.industry:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}
.industry h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--on-dark);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  font-variation-settings: 'opsz' 144;
}
.industry__sub {
  font-size: 0.85rem;
  color: #d18068;
  font-style: italic;
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
}
.industry ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.industry ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--on-dark-muted);
  padding-left: 1rem;
  position: relative;
}
.industry ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.industries__close {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--on-dark-muted);
  text-align: center;
  max-width: 64ch;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-rule);
  font-variation-settings: 'opsz' 144;
}
.industries__close em {
  color: #d18068;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
}

@media (max-width: 980px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .industries__grid {
    grid-template-columns: 1fr;
  }
}
