:root {
  --ink: #171713;
  --ink-soft: #39382f;
  --paper: #f7f5ef;
  --paper-2: #efeae0;
  --white: #ffffff;
  --brass: #b08a49;
  --brass-light: #d1b16f;
  --brass-dark: #765b2f;
  --sage: #667268;
  --line: rgba(23, 23, 19, 0.14);
  --muted: #6c6a61;
  --success: #386149;
  --danger: #9a3f46;
  --shadow: 0 22px 70px rgba(24, 23, 18, 0.12);
  --shadow-soft: 0 12px 34px rgba(24, 23, 18, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.85rem, 6vw, 5.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.15rem, 4vw, 3.8rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 12px; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--ink-soft); max-width: 770px; }
.small { font-size: 0.9rem; color: var(--muted); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(23, 23, 19, 0.94);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 42px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.62);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a:not(.btn) {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 650;
}
.site-nav > a:not(.btn):hover, .site-nav > a[aria-current="page"] { color: var(--brass-light); }

.nav-dropdown { position: relative; color: rgba(255,255,255,.78); }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: "⌄"; color: var(--brass-light); font-size: .82rem; }
.nav-dropdown summary:hover, .nav-dropdown summary.current { color: var(--brass-light); }
.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  padding: 10px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #1b1b17;
  box-shadow: var(--shadow);
  z-index: 30;
}
.nav-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav-dropdown:not([open]) .nav-menu { display: none; }
.nav-menu a {
  color: rgba(255,255,255,.75);
  padding: 10px 12px;
  border-radius: 9px;
  font-size: .84rem;
  font-weight: 650;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--brass-light); background: rgba(255,255,255,.06); }
.capability-card { display: block; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.capability-card:hover { transform: translateY(-4px); border-color: rgba(176,138,73,.55); box-shadow: var(--shadow-soft); }
.text-link { display: inline-block; margin-top: 18px; color: var(--brass-dark); font-size: .83rem; font-weight: 850; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  background: transparent;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brass); color: #171713; }
.btn-primary:hover { background: var(--brass-light); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-outline { border-color: rgba(23, 23, 19, 0.24); background: transparent; }
.btn-outline-light { border-color: rgba(255,255,255,.26); color: var(--white); }
.btn-sm { min-height: 42px; padding: 0 17px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 11vw, 150px) 0 72px;
  background:
    radial-gradient(circle at 78% 10%, rgba(176,138,73,.2), transparent 35%),
    linear-gradient(135deg, #f8f5ed 0%, #eee7da 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image: linear-gradient(rgba(23,23,19,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,19,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(46px, 7vw, 88px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 span { color: var(--brass-dark); }
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .88rem;
}
.hero-note::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.hero-visual { position: relative; z-index: 1; min-width: 0; width: 100%; }
.hero-visual::after {
  content: "";
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  right: -12%;
  bottom: -15%;
  border: 1px solid rgba(176,138,73,.32);
  border-radius: 50%;
  z-index: -1;
}
.product-frame {
  padding: 12px;
  border: 1px solid rgba(23,23,19,.12);
  background: rgba(255,255,255,.67);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.product-frame { min-width: 0; overflow: hidden; }
.product-frame img { display: block; max-width: 100%; border-radius: 15px; width: 100%; height: auto; }

.product-frame.portrait-shot {
  max-width: 560px;
  margin-inline: auto;
}
.product-frame.portrait-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-portrait-frame {
  max-width: 520px;
  margin-left: auto;
}
.hero-portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.section-jump-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}
.section-jump-nav a {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 999px;
  border: 1px solid rgba(23,23,19,.22);
  background: rgba(255,255,255,.75);
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  position: relative;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.section-jump-nav a:hover,
.section-jump-nav a:focus-visible,
.section-jump-nav a.is-active {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
  transform: scale(1.18);
}
.section-jump-nav a span {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  background: rgba(23,23,19,.94);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  line-height: 1;
  white-space: nowrap;
  transition: opacity .18s ease, transform .18s ease;
}
.section-jump-nav a:hover span,
.section-jump-nav a:focus-visible span {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

@media (max-width: 1180px) {
  .section-jump-nav {
    top: auto;
    right: 16px;
    bottom: 18px;
    transform: none;
    align-items: flex-end;
  }
  .section-jump-toggle {
    display: inline-flex;
  }
  .section-jump-links {
    display: none;
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(280px, calc(100vw - 32px));
    max-height: min(62vh, 460px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(23,23,19,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }
  .section-jump-nav.open .section-jump-links { display: grid; gap: 4px; }
  .section-jump-links a {
    width: 100%;
    height: auto;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
  }
  .section-jump-links a::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    border: 1px solid rgba(23,23,19,.24);
    background: var(--white);
  }
  .section-jump-links a.is-active { transform: none; background: rgba(176,138,73,.1); }
  .section-jump-links a.is-active::before { background: var(--brass-dark); border-color: var(--brass-dark); }
  .section-jump-links a span {
    position: static;
    transform: none;
    opacity: 1;
    padding: 0;
    background: transparent;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 750;
    white-space: normal;
  }
}

.proof-bar { background: var(--ink); color: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.proof-item:last-child { border-right: 0; }
.proof-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(209,177,111,.55);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brass-light);
}
.proof-item strong { display: block; font-size: .95rem; }
.proof-item span { display: block; margin-top: 3px; color: rgba(255,255,255,.6); font-size: .78rem; }

.section { padding: clamp(76px, 10vw, 126px) 0; }
.section-tight { padding: 70px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .lead, .section-dark .muted { color: rgba(255,255,255,.67); }
.section-head { max-width: 820px; margin-bottom: 50px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .lead { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.align-center { align-items: center; }

.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.card-flat { box-shadow: none; }
.card-dark { background: #24241f; border-color: rgba(255,255,255,.1); color: var(--white); }
.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(176,138,73,.13);
  color: var(--brass-dark);
  font-weight: 900;
  font-size: .8rem;
  margin-bottom: 26px;
}
.card h3 { font-family: Inter, sans-serif; font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; }
.card p:last-child { margin-bottom: 0; }

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.workflow-line::before {
  content: "";
  position: absolute;
  left: 7%; right: 7%; top: 27px;
  height: 1px;
  background: rgba(176,138,73,.5);
}
.workflow-step { position: relative; text-align: center; z-index: 1; }
.workflow-step .dot {
  margin: 0 auto 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--brass);
  color: var(--brass-dark);
  font-weight: 900;
}
.workflow-step strong { display: block; font-size: .9rem; }
.workflow-step span { display: block; margin-top: 5px; font-size: .77rem; color: var(--muted); }

.feature-list { list-style: none; margin: 28px 0 0; padding: 0; }
.feature-list li {
  position: relative;
  padding: 10px 0 10px 31px;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(56,97,73,.12);
  color: var(--success);
  font-size: .72rem;
  font-weight: 900;
}
.section-dark .feature-list li { border-color: rgba(255,255,255,.1); }

.quote-panel {
  border-left: 3px solid var(--brass);
  padding-left: 28px;
}
.quote-panel blockquote {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.24;
}
.quote-panel cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-size: .9rem;
}

.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.metric { padding: 28px; background: #22221d; }
.metric strong { display: block; color: var(--brass-light); font-family: "DM Serif Display", Georgia, serif; font-size: 2.45rem; font-weight: 400; }
.metric span { color: rgba(255,255,255,.64); font-size: .88rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(38px, 7vw, 72px);
  color: var(--white);
  background: linear-gradient(130deg, #1c1c18, #353126);
  box-shadow: var(--shadow);
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(209,177,111,.34);
  border-radius: 50%;
  right: -110px;
  top: -150px;
}
.cta-band h2 { max-width: 720px; }
.cta-band p { color: rgba(255,255,255,.68); max-width: 720px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 23px 44px 23px 0;
  font-weight: 800;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; font-size: 1.5rem; font-weight: 400; color: var(--brass-dark); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 900px; padding: 0 0 24px; color: var(--muted); }

.form-card { padding: clamp(28px, 5vw, 48px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(23,23,19,.18);
  background: var(--white);
  border-radius: 10px;
  min-height: 51px;
  padding: 12px 14px;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid rgba(176,138,73,.28); border-color: var(--brass); }
.form-status { margin-top: 14px; min-height: 1.35em; font-size: .88rem; font-weight: 600; color: var(--success); }
.form-status[data-state] { border: 1px solid rgba(56,97,73,.3); border-left: 4px solid var(--success); border-radius: 9px; background: rgba(56,97,73,.08); line-height: 1.45; padding: 11px 13px; }
.form-status[data-state="sending"] { border-color: rgba(176,138,73,.38); border-left-color: var(--brass); background: rgba(176,138,73,.09); color: var(--muted); }
.form-status[data-state="error"] { border-color: rgba(154,63,70,.32); border-left-color: var(--danger); background: rgba(154,63,70,.08); color: var(--danger); }

.site-footer { background: #11110e; color: rgba(255,255,255,.68); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .75fr .75fr; gap: 50px; }
.footer-title { color: var(--white); font-weight: 800; margin-bottom: 14px; }
.footer-links { display: grid; gap: 10px; font-size: .9rem; }
.footer-links a:hover { color: var(--brass-light); }
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .78rem;
}


.photo-frame {
  padding: 12px;
  border: 1px solid rgba(23,23,19,.12);
  background: rgba(255,255,255,.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.photo-frame img {
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.photo-card {
  margin: 0;
}
.photo-card figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: .92rem;
}


.hero .photo-frame { position: relative; z-index: 1; }
.photo-card figcaption strong { color: var(--ink); }
.section-dark .photo-frame { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }

/* Pricing */
.pricing-hero { padding-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px; }
.price-card.featured { border-color: var(--brass); transform: translateY(-10px); }
.price-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(176,138,73,.15);
  color: var(--brass-dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-name { font-family: Inter, sans-serif; font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.price { margin: 22px 0 5px; font-family: "DM Serif Display", Georgia, serif; font-size: 3.55rem; line-height: 1; }
.price sup { font-family: Inter, sans-serif; font-size: 1rem; vertical-align: top; margin-right: 3px; }
.price-period { color: var(--muted); font-size: .85rem; }
.price-card .feature-list { margin-bottom: 30px; }
.price-card .btn { margin-top: auto; }
.setup-note {
  margin-top: 30px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.6);
}
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.compare-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; width: 42%; }
.compare-table thead th { background: #efebe2; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
.compare-table .check { color: var(--success); font-weight: 900; }
.compare-table .dash { color: #aaa69b; }
.feature-detail { display: block; margin-top: 5px; font-size: .75rem; color: var(--muted); font-weight: 400; }

/* Calculator page */
.calculator-shell {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.calculator-fields { padding: clamp(24px, 5vw, 46px); }
.calculator-result { padding: clamp(24px, 5vw, 46px); background: #22221d; color: var(--white); }
.calculator-result .field label { color: rgba(255,255,255,.6); }
.calculator-result textarea, .calculator-result input { background: rgba(255,255,255,.07); color: var(--white); border-color: rgba(255,255,255,.16); }
.calc-section-title { margin: 26px 0 13px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.calc-section-title:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.calc-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.calc-total { margin: 28px 0 20px; padding: 22px; border: 1px solid rgba(209,177,111,.34); border-radius: 16px; }
.calc-total span { display: block; color: rgba(255,255,255,.6); font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; }
.calc-total strong { display: block; margin-top: 6px; color: var(--brass-light); font-family: "DM Serif Display", Georgia, serif; font-size: 2.7rem; font-weight: 400; }
.disclaimer { font-size: .75rem; color: rgba(255,255,255,.49); }

.industry-card { min-height: 290px; position: relative; overflow: hidden; }
.industry-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(176,138,73,.2);
  border-radius: 50%;
  right: -45px;
  bottom: -55px;
}

.notice {
  padding: 17px 20px;
  border-left: 3px solid var(--brass);
  background: rgba(176,138,73,.09);
  color: var(--ink-soft);
  border-radius: 0 10px 10px 0;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: #1b1b17;
    border-radius: 15px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav .btn { width: 100%; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { padding: 7px 0; }
  .nav-menu {
    position: static;
    transform: none;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255,255,255,.035);
  }

  .nav-toggle { display: inline-grid; place-items: center; }
  .hero-grid, .grid-2, .calculator-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 720px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .grid-3, .pricing-grid, .photo-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .workflow-line { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .workflow-line::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .brand-mark { width: 40px; height: 35px; flex-basis: 40px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-text small { display: none; }
  .hero { padding-top: 68px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .proof-grid, .grid-4, .metric-grid, .form-grid, .calc-row { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .proof-item:last-child { border-bottom: 0; }
  .workflow-line { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom, .setup-note { flex-direction: column; align-items: flex-start; }
  .button-row .btn { width: 100%; }
  .card, .price-card { padding: 24px; }
}


/* Accessibility, conversion and performance refinements */
:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 24px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.breadcrumbs a:hover { color: var(--brass-dark); }
.breadcrumbs + .hero { padding-top: clamp(48px, 7vw, 92px); }

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.fit-card {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.fit-positive {
  border-color: rgba(56,97,73,.35);
  background: rgba(56,97,73,.055);
}
.neutral-list li::before {
  content: "–";
  background: rgba(23,23,19,.08);
  color: var(--muted);
}

.mobile-cta { display: none; }

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

@media (max-width: 980px) {
  body.nav-open { overflow: hidden; }
  .site-nav { max-height: calc(100vh - 96px); overflow-y: auto; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { padding: 9px 0; justify-content: space-between; }
  .nav-menu {
    position: static;
    transform: none;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255,255,255,.04);
  }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-mark { width: 40px; height: 35px; flex-basis: 40px; }
  body { padding-bottom: 76px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(23,23,19,.96);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(0,0,0,.18);
    backdrop-filter: blur(14px);
  }
  .mobile-cta span {
    font-size: .76rem;
    font-weight: 750;
    line-height: 1.25;
  }
  .mobile-cta .btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding-inline: 14px;
    font-size: .76rem;
  }
  .breadcrumbs { padding-top: 18px; }
}


/* Software tour and responsive product mockups */
.software-overview-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.software-overview-scroller {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
.software-overview-image {
  display: block;
  width: 100%;
  min-width: 980px;
  height: auto;
}
.software-overview-video-scroller {
  overflow: hidden;
  display: grid;
  place-items: center;
}
.software-overview-video {
  display: block;
  width: 100%;
  max-width: 1178px;
  height: auto;
}
.scroll-hint {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.screen-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.screen-card .product-frame {
  transform: none;
  flex: 1;
}
.screen-card .product-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.screen-card h3 {
  margin-bottom: 4px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.device-showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 46px;
  max-width: 920px;
  margin: 0 auto;
}
.device {
  position: relative;
  padding: 12px;
  background: #151511;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.device-tablet {
  border-radius: 28px;
}
.device-phone {
  width: min(100%, 310px);
  margin-inline: auto;
  padding: 10px;
  border-radius: 34px;
}
.device-screen {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}
.device-tablet .device-screen { aspect-ratio: 4 / 3; }
.device-phone .device-screen { aspect-ratio: 9 / 16; border-radius: 25px; }
.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.device-label {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}
.workflow-cards-6 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

@media (max-width: 1100px) {
  .screen-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .software-overview-image { min-width: 860px; }
  .device-showcase { grid-template-columns: 1fr; gap: 34px; }
  .screen-gallery, .workflow-cards-6 { grid-template-columns: 1fr; }
}


/* Calculator-first product storytelling */
.feature-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}
.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(176,138,73,.28);
  background: rgba(176,138,73,.08);
  border-radius: 999px;
  color: var(--brass-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.feature-kicker::before {
  content: "ƒx";
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brass);
  color: var(--ink);
  letter-spacing: 0;
}
.value-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.value-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}
.value-item > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(56,97,73,.11);
  color: var(--success);
  font-weight: 900;
}
.value-item strong { display: block; margin-bottom: 3px; }
.value-item p { margin: 0; color: var(--muted); font-size: .92rem; }

.fulfillment-board {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.fulfillment-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.4fr) repeat(3, minmax(94px, .7fr));
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.76);
}
.fulfillment-row.header {
  border: 0;
  padding-top: 0;
  padding-bottom: 4px;
  background: transparent;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.status-pill {
  display: inline-flex;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.status-complete { background: rgba(56,97,73,.12); color: var(--success); }
.status-progress { background: rgba(176,138,73,.14); color: var(--brass-dark); }
.status-waiting { background: rgba(108,106,97,.12); color: var(--muted); }

.quote-preview {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(209,177,111,.26);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.quote-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.quote-preview-head strong { color: var(--white); }
.quote-items { display: grid; gap: 10px; margin-top: 14px; }
.quote-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.quote-item:last-child { border-bottom: 0; }
.quote-item strong { display: block; color: var(--white); font-size: .9rem; }
.quote-item span { color: rgba(255,255,255,.58); font-size: .76rem; }
.quote-item-price { color: var(--brass-light) !important; font-weight: 800; font-size: .9rem !important; }
.quote-empty { color: rgba(255,255,255,.48); font-size: .84rem; padding: 8px 0; }
.quote-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  font-weight: 800;
}
.calc-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.calc-actions .btn { flex: 1 1 180px; }
.calc-confirmation { min-height: 1.4em; margin: 10px 0 0; color: var(--brass-light); font-size: .82rem; }

.option-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.option-cloud span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--ink-soft);
  font-size: .79rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .feature-spotlight { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .brand-mark { width: 40px; height: 35px; flex-basis: 40px; }
  .fulfillment-row { grid-template-columns: 1fr 1fr; }
  .fulfillment-row.header { display: none; }
  .fulfillment-row > strong { grid-column: 1 / -1; }
}


.speed-proof {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.speed-number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 18px;
}
.speed-number strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(4.8rem, 11vw, 8.5rem);
  font-weight: 400;
  line-height: .82;
  color: var(--brass-dark);
}
.speed-number span {
  max-width: 165px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.time-comparison {
  display: grid;
  gap: 14px;
}
.time-row {
  display: grid;
  grid-template-columns: minmax(125px, .8fr) minmax(180px, 2fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}
.time-row strong { font-size: .9rem; }
.time-row .time-bar {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-2);
}
.time-row .time-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--time-width, 100%);
  border-radius: inherit;
  background: var(--ink-soft);
}
.time-row.fast .time-bar::after { background: var(--brass); }
.time-row .time-value {
  min-width: 86px;
  text-align: right;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.35rem;
}
.speed-disclaimer {
  margin-top: 16px;
  color: var(--muted);
  font-size: .78rem;
}
@media (max-width: 760px) {
  .speed-proof { grid-template-columns: 1fr; }
  .time-row { grid-template-columns: 1fr auto; }
  .time-row .time-bar { grid-column: 1 / -1; grid-row: 2; }
  .time-row .time-value { grid-column: 2; grid-row: 1; }
}


/* Hero consistency and compact page navigation */
section[id] { scroll-margin-top: 96px; }
.hero .photo-frame,
.hero .product-frame {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}
.hero .photo-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.hero-copy { max-width: 720px; }
.section-jump-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-jump-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(23,23,19,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-size: .78rem;
  font-weight: 850;
}
.section-jump-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass-dark);
}
.compact-proof-row {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}
.compact-proof-row > div {
  padding: 22px;
  background: var(--paper);
}
.compact-proof-row strong {
  display: block;
  color: var(--brass-dark);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.compact-proof-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .82rem;
}
@media (max-width: 980px) {
  .hero .photo-frame,
  .hero .product-frame,
  .hero-portrait-frame { margin-inline: auto; }
}
@media (max-width: 640px) {
  .brand-mark { width: 40px; height: 35px; flex-basis: 40px; }
  .section-jump-nav { bottom: 88px; right: 12px; }
  .compact-proof-row { grid-template-columns: 1fr; }
  .hero .photo-frame,
  .hero .product-frame { max-width: 460px; }
}

@media (max-width: 1180px) {
  .section-jump-toggle { display: inline-flex; }
  .section-jump-links { display: none; }
  .section-jump-nav.open .section-jump-links { display: grid; }
}
@media (max-width: 1180px) {
  .section-jump-links a:hover span,
  .section-jump-links a:focus-visible span { transform: none; }
}


/* Real-world case study and time-savings calculator */
.before-after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.roi-calculator { display: grid; grid-template-columns: .86fr 1.14fr; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.roi-inputs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; padding: clamp(26px, 5vw, 50px); }
.roi-inputs .field:last-child { grid-column: 1 / -1; }
.input-prefix { display: flex; align-items: center; border: 1px solid rgba(23,23,19,.18); background: var(--white); border-radius: 10px; overflow: hidden; }
.input-prefix span { padding-left: 14px; color: var(--muted); font-weight: 800; }
.input-prefix input { border: 0; border-radius: 0; }
.roi-results { padding: clamp(30px, 5vw, 54px); color: var(--white); background: linear-gradient(145deg, #1d1d18, #363126); }
.roi-result-primary { padding-bottom: 25px; margin-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
.roi-result-primary span, .roi-result-grid span { display: block; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.roi-result-primary strong { display: block; margin-top: 8px; color: var(--brass-light); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 400; line-height: 1; }
.roi-result-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.roi-result-grid > div { padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.04); }
.roi-result-grid strong { display: block; margin-top: 7px; font-size: 1.12rem; }
.roi-result-grid .roi-result-wide { grid-column: 1 / -1; }
.roi-disclaimer { margin: 22px 0 0; color: rgba(255,255,255,.5); font-size: .76rem; }
@media (max-width: 820px) { .roi-calculator, .before-after-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .roi-inputs, .roi-result-grid { grid-template-columns: 1fr; } .roi-inputs .field:last-child { grid-column: auto; } }


/* Simplified ROI experience selector */
.roi-inputs .field.full { grid-column: 1 / -1; }
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.experience-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.experience-option {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  text-align: left;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.experience-option:hover,
.experience-option:focus-visible {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.experience-option.is-selected {
  border-color: var(--brass-dark);
  background: rgba(176,138,73,.12);
  box-shadow: inset 0 0 0 1px rgba(176,138,73,.2);
}
.experience-option strong,
.experience-option span,
.experience-option small { display: block; }
.experience-option strong { font-size: 1rem; }
.experience-option span { margin-top: 5px; color: var(--brass-dark); font-weight: 800; }
.experience-option small { margin-top: 9px; color: var(--muted); line-height: 1.45; }
.field-help { margin: 10px 0 0; color: var(--muted); font-size: .78rem; }
@media (max-width: 560px) {
  .experience-selector { grid-template-columns: 1fr; }
}

/* Terms of Service */
.legal-hero {
  padding: clamp(70px, 10vw, 120px) 0 clamp(62px, 8vw, 96px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(176,138,73,.24), transparent 34%),
    linear-gradient(140deg, #11110e 0%, #242218 100%);
}
.legal-hero-inner { max-width: 900px; }
.legal-hero .eyebrow { color: var(--brass-light); }
.legal-hero h1 { max-width: 680px; margin-bottom: 22px; }
.legal-hero h1 span { color: var(--brass-light); }
.legal-hero .lead { color: rgba(255,255,255,.76); }
.legal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 32px;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}
.legal-hero-meta strong { color: var(--white); }
.legal-hero-meta a { color: var(--brass-light); font-weight: 800; }
.legal-hero-meta a:hover { color: var(--white); }
.legal-section { padding-top: clamp(48px, 7vw, 90px); }
.legal-layout {
  display: grid;
  grid-template-columns: 218px minmax(0, 790px);
  justify-content: space-between;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}
.legal-sidebar { position: sticky; top: 104px; }
.legal-toc {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.54);
  box-shadow: var(--shadow-soft);
}
.legal-toc p {
  margin: 0 0 8px;
  color: var(--brass-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.legal-toc a {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
}
.legal-toc a:hover,
.legal-toc a:focus-visible { color: var(--brass-dark); background: rgba(176,138,73,.12); }
.legal-article { min-width: 0; }
.legal-notice {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  margin-bottom: 52px;
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(176,138,73,.10);
  color: var(--ink-soft);
}
.legal-notice strong { color: var(--ink); }
.legal-article section { scroll-margin-top: 106px; padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.legal-article section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-article .eyebrow { margin-bottom: 8px; }
.legal-article h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.2vw, 3.15rem); }
.legal-article h3 { margin-top: 30px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.02rem; font-weight: 850; letter-spacing: 0; }
.legal-article p,
.legal-article li { color: var(--ink-soft); }
.legal-article p { max-width: 780px; }
.legal-article a { color: var(--brass-dark); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(118,91,47,.38); text-underline-offset: 3px; }
.legal-article a:hover { color: var(--ink); text-decoration-color: var(--ink); }
.legal-article ul { display: grid; gap: 9px; padding-left: 24px; margin: 0 0 24px; }
.legal-article strong { color: var(--ink); }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-toc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-toc p { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .legal-hero { padding-top: 58px; }
  .legal-hero-meta { display: grid; gap: 10px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-notice { padding: 19px; margin-bottom: 38px; }
  .legal-article section { padding-bottom: 32px; margin-bottom: 32px; }
}
