/* palette: bg=#0B1F1A fg=#F3EFE6 accent=#C9A84C */
/* fonts: display="Bodoni Moda" body="Lato" mono="IBM Plex Mono" */

:root {
  --bg: #0B1F1A;        /* deep emerald background */
  --bg-alt: #0F2A22;    /* alternating section background */
  --bg-deep: #071612;   /* deepest emerald for inverted bands */
  --fg: #F3EFE6;        /* champagne off-white text */
  --fg-soft: #DED8C9;   /* slightly softer foreground */
  --muted: #93A197;     /* muted sage secondary text */
  --accent: #C9A84C;    /* champagne gold accent */
  --accent-deep: #A6863A; /* darker gold for hover */
  --accent-soft: rgba(201, 168, 76, 0.14);
  --border: rgba(243, 239, 230, 0.14);
  --border-strong: rgba(243, 239, 230, 0.28);
  --serif: 'Bodoni Moda', ui-serif, Georgia, serif;
  --sans: 'Lato', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: clamp(80px, 12vw, 160px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.h2 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; line-height: 1.02; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--fg-soft); line-height: 1.7; max-width: 620px; }
.muted { color: var(--muted); }
em, .accent-word { color: var(--accent); font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn--primary { background: var(--accent); color: #12130C; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.35s var(--ease);
}
.link-arrow:hover { gap: 16px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  background: rgba(11, 31, 26, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(11, 31, 26, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 40px -18px rgba(0, 0, 0, 0.6);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand__mark {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__mark span { color: var(--accent); }
.brand__dot { color: var(--accent); }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 38px; }
}
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: flex-end;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 26px; }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg-deep);
  padding: 110px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--accent); padding-left: 10px; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
  opacity: 0.42;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 100%, rgba(11,31,26,0.35), rgba(11,31,26,0.95) 70%),
    linear-gradient(180deg, rgba(7,22,18,0.75) 0%, rgba(11,31,26,0.5) 40%, rgba(11,31,26,0.98) 100%);
}
.hero__inner { padding-top: 130px; padding-bottom: clamp(60px, 9vw, 110px); width: 100%; }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 15ch;
  margin: 22px 0 0;
}
.hero__sub {
  margin-top: 34px;
  max-width: 560px;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: var(--fg-soft);
  line-height: 1.7;
}
.hero__actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero__meta div { min-width: 120px; }
.hero__meta .n { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--fg); }
.hero__meta .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- generic section head ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 84px); }
.sec-head .h2 { margin-bottom: 26px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.split { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 900px) {
  .sec-head.split { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: none; }
  .sec-head.split .lead { text-align: right; }
}

/* ---------- services ---------- */
.services { background: var(--bg-alt); }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc {
  background: var(--bg-alt);
  padding: 42px 34px 48px;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.svc:hover { background: var(--bg-deep); }
.svc__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.svc__icon { width: 34px; height: 34px; margin: 26px 0 22px; color: var(--accent); }
.svc h3 { font-size: 1.6rem; letter-spacing: -0.01em; margin-bottom: 14px; line-height: 1.1; }
.svc p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ---------- manifesto / dark band ---------- */
.manifesto {
  background: var(--bg-deep);
  text-align: center;
  padding: clamp(100px, 15vw, 190px) 0;
  position: relative;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 0.5;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 10px;
}
.manifesto__cite { margin-top: 46px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- work / cases ---------- */
.work-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 860px) { .work-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.case {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.case:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6); }
.case__media { aspect-ratio: 16 / 10; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); opacity: 0.9; }
.case:hover .case__media img { transform: scale(1.06); }
.case__body { padding: 32px 34px 38px; }
.case__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.case__body h3 { font-size: 1.75rem; letter-spacing: -0.01em; margin: 16px 0 12px; line-height: 1.12; }
.case__body p { color: var(--muted); font-size: 15.5px; }
.case__foot { margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap; }
.case__foot .kpi .v { font-family: var(--serif); font-size: 1.5rem; color: var(--fg); }
.case__foot .kpi .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- process ---------- */
.process { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 40px 0; border-top: 1px solid var(--border); }
@media (min-width: 860px) { .step { padding: 0 30px 0 0; border-top: 1px solid var(--border-strong); padding-top: 34px; } }
.step__n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.step h3 { font-size: 1.45rem; margin: 22px 0 12px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- principles / team ---------- */
.people-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 700px) { .people-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .people-grid { grid-template-columns: repeat(3, 1fr); } }
.person { background: var(--bg); padding: 38px 32px 42px; }
.avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #12130C;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.person h3 { font-size: 1.4rem; letter-spacing: -0.01em; }
.person .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 8px 0 16px; }
.person p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- stats band ---------- */
.stats { background: var(--bg-deep); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 20px; }
@media (min-width: 860px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat .v { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -0.02em; }
.stat .v em { color: var(--accent); }
.stat .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); margin-top: 16px; max-width: 22ch; }

/* ---------- faq ---------- */
.faq-list { border-top: 1px solid var(--border); max-width: 900px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq__icon { flex: none; width: 24px; height: 24px; position: relative; margin-top: 8px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); transition: transform 0.35s var(--ease); }
.faq__icon::before { top: 11px; left: 0; width: 24px; height: 1.5px; }
.faq__icon::after { left: 11px; top: 0; width: 1.5px; height: 24px; }
.faq[open] .faq__icon::after { transform: scaleY(0); }
.faq__answer { padding: 0 48px 32px 0; color: var(--fg-soft); font-size: 16px; line-height: 1.75; max-width: 74ch; }

/* ---------- CTA / form ---------- */
.cta { background: var(--bg-alt); }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.cta h2 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; line-height: 1.03; margin-bottom: 26px; }
.cta__meta { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.cta__meta .row .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.cta__meta .row .v { font-size: 17px; color: var(--fg-soft); }

.form { display: grid; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 12px 2px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color 0.35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(147, 161, 151, 0.6); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { margin-top: 10px; justify-self: start; }
.form__note { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); padding: clamp(70px, 9vw, 120px) 0 40px; border-top: 1px solid var(--border); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand__mark { font-size: 2rem; }
.footer__brand p { color: var(--muted); max-width: 34ch; margin-top: 20px; font-size: 15.5px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer__col a { color: var(--fg-soft); font-size: 15.5px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(50px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; align-items: center; } }
.footer__bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- legal pages ---------- */
.legal-page { padding: clamp(120px, 16vw, 180px) 0 clamp(70px, 10vw, 120px); }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); letter-spacing: -0.02em; line-height: 1.03; margin-bottom: 20px; }
.legal-page .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 50px; }
.legal-page h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); letter-spacing: -0.01em; margin: 50px 0 16px; }
.legal-page p { color: var(--fg-soft); margin-bottom: 18px; line-height: 1.8; font-size: 16.5px; }
.legal-page ul { color: var(--fg-soft); line-height: 1.8; padding-left: 22px; margin-bottom: 18px; }
.legal-page li { margin-bottom: 9px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- thank you ---------- */
.thanks { min-height: 84vh; display: flex; align-items: center; text-align: center; }
.thanks .container { max-width: 720px; }
.thanks h1 { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 26px; }
.thanks h1 em { color: var(--accent); }
.thanks p { color: var(--fg-soft); font-size: 1.15rem; max-width: 52ch; margin: 0 auto 40px; }

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-deep); border: 1px solid var(--border); padding: 34px 36px; max-width: 480px; border-radius: 6px; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border-strong); cursor: pointer; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 9999px; transition: all 0.3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #12130C; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); color: #12130C; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- misc ---------- */
.intro-split { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .intro-split { grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; } }
.intro-split .body p { color: var(--fg-soft); margin-bottom: 22px; font-size: 17px; }
.intro-split .body p:last-child { margin-bottom: 0; }
.value-list { list-style: none; padding: 0; margin: 34px 0 0; }
.value-list li { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); color: var(--fg-soft); }
.value-list li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 9px; background: var(--accent); border-radius: 50%; }
.value-list strong { font-family: var(--serif); font-weight: 400; color: var(--fg); font-size: 1.15rem; }
