:root {
  --ink: #0d1117;
  --ink-soft: #1e2535;
  --gold: #b8943f;
  --gold-light: #d4ac5a;
  --gold-pale: #f5edd6;
  --cream: #faf8f3;
  --slate: #4a5568;
  --mist: #f0eee9;
  --white: #ffffff;
  --border: rgba(184, 148, 63, 0.2);
  --border-subtle: rgba(13, 17, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-label-gold,
.section-label-gold-dark {
  color: var(--gold);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 64px;
  border-bottom: 1px solid rgba(184, 148, 63, 0.15);
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(8px);
}

.nav-inner {
  width: min(1200px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo-main {
  color: var(--white);
}

.footer-logo .logo-main {
  color: rgba(255, 255, 255, 0.4);
}

.logo-dot {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(184, 148, 63, 0.06) 0%, transparent 70%),
    var(--ink);
}

.hero-inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  margin: 24px 0 24px;
  max-width: 840px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.02;
}

.hero-italic {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-ghost:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hero-stats {
  max-width: 640px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.stat-item {
  display: grid;
  gap: 8px;
}

.stat-value {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 0.95;
}

.stat-value span {
  color: var(--gold);
}

.stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reframe {
  background: var(--ink-soft);
  padding: 90px 0;
}

.reframe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.reframe-left h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.08;
}

.italic-gold,
.italic-gold-dark {
  color: var(--gold);
  font-style: italic;
}

.reframe-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.reframe-right {
  display: grid;
  gap: 14px;
}

.reframe-card {
  margin: 0;
  border-left: 2px solid var(--gold);
  background: rgba(184, 148, 63, 0.05);
  padding: 20px 28px;
}

.reframe-card h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
}

.reframe-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.services {
  background: var(--white);
  padding: 96px 0;
}

.section-title-dark {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.05;
}

.services-grid {
  margin-top: 38px;
  border: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  padding: 56px 48px;
}

.service-card + .service-card {
  border-left: 1px solid var(--border-subtle);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 28px;
  color: var(--mist);
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
}

.service-tag {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.service-card > p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.arrow-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.arrow-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.arrow-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 500;
}

.deal-cycle {
  background: var(--cream);
  padding: 96px 0;
}

.section-intro-dark {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.deal-track {
  position: relative;
  margin-top: 44px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.deal-line {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 23px;
  height: 1px;
  background: var(--gold);
}

.deal-stage {
  position: relative;
}

.roman-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  background: var(--cream);
}

.deal-stage h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.deal-stage p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.dot-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.dot-list li {
  position: relative;
  padding-left: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.dot-list li::before {
  content: "·";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.framework {
  background: var(--cream);
  padding: 96px 0;
}

.framework-row {
  margin-top: 34px;
  display: grid;
  gap: 0;
}

.framework-row-one {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.framework-row-two {
  grid-template-columns: 1fr 2fr;
  margin-top: 2px;
}

.framework-card {
  border: 1px solid var(--border-subtle);
  border-right: 0;
  background: var(--white);
  padding: 40px 36px;
}

.framework-row-one .framework-card:last-child,
.framework-row-two .framework-card:last-child {
  border-right: 1px solid var(--border-subtle);
}

.framework-row-two .framework-card {
  border-top: 0;
}

.framework-icon {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.framework-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.framework-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.framework-summary {
  border-right: 1px solid var(--ink);
  background: var(--ink);
}

.framework-summary h3 {
  color: var(--white);
}

.framework-summary p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.about {
  background: var(--ink);
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
}

.about-left h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.about-left p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.74;
}

.about-left strong {
  color: var(--white);
  font-weight: 500;
}

.credential-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.credential-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 500;
}

.about-right {
  display: grid;
  gap: 2px;
}

.vignette {
  border: 1px solid rgba(184, 148, 63, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
}

.vignette:hover {
  border-color: rgba(184, 148, 63, 0.35);
}

.vignette-type {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vignette h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.vignette p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.pull-quote {
  background: var(--gold-pale);
  padding: 80px 24px;
}

.quote-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.quote-inner blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
}

.quote-inner p {
  margin: 22px 0 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  background: var(--ink-soft);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
}

.contact-left h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
}

.contact-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 13px 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  margin: 2px 0 0;
  min-height: 20px;
  color: #ffd1d1;
  font-size: 12px;
  line-height: 1.4;
}

.submit-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.submit-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 300;
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 40px;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 50%;
  width: min(760px, calc(100% - 32px));
  transform: translateX(-50%);
  bottom: 24px;
  border: 1px solid var(--border);
  background: rgba(13, 17, 23, 0.98);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}

.cookie-decline {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
  cursor: pointer;
}

.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-banner.is-hidden {
  display: none !important;
}

.page-main {
  background: var(--cream);
  min-height: 100vh;
  padding: 120px 0 72px;
}

.page-hero {
  background: var(--ink);
  padding: 48px;
  border: 1px solid rgba(184, 148, 63, 0.14);
}

.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.02;
}

.page-hero p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.75;
}

.page-card {
  margin-top: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--white);
  padding: 36px;
}

.page-card h2 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.page-card h2:first-child {
  margin-top: 0;
}

.page-card p,
.page-card li {
  color: var(--slate);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.page-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.policy-meta {
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-you-wrap {
  text-align: center;
}

.thank-you-wrap h1 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
}

.thank-you-wrap p {
  margin: 0 auto 28px;
  max-width: 620px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 300;
}

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

.fade-1,
.fade-2,
.fade-3,
.fade-4,
.fade-5 {
  opacity: 0;
  animation-name: fadeUp;
  animation-fill-mode: forwards;
}

.fade-1 {
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0.1s;
}

.fade-2 {
  animation-duration: 0.7s;
  animation-timing-function: ease;
  animation-delay: 0.25s;
}

.fade-3 {
  animation-duration: 0.7s;
  animation-timing-function: ease;
  animation-delay: 0.4s;
}

.fade-4 {
  animation-duration: 0.7s;
  animation-timing-function: ease;
  animation-delay: 0.55s;
}

.fade-5 {
  animation-duration: 0.7s;
  animation-timing-function: ease;
  animation-delay: 0.7s;
}

@media (max-width: 900px) {
  .container,
  .nav-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 48px);
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding: 100px 24px 60px;
  }

  .reframe,
  .services,
  .deal-cycle,
  .framework,
  .about,
  .pull-quote,
  .contact {
    padding: 70px 24px;
  }

  .reframe-grid,
  .services-grid,
  .about-grid,
  .framework-row-one,
  .framework-row-two,
  .deal-track,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid {
    border: 0;
  }

  .service-card {
    padding: 42px 28px;
    border: 1px solid var(--border-subtle);
  }

  .service-card + .service-card {
    border-left: 1px solid var(--border-subtle);
  }

  .deal-track {
    padding-top: 0;
  }

  .deal-line {
    display: none;
  }

  .framework-row-two .framework-card {
    border-top: 1px solid var(--border-subtle);
  }

  .framework-card,
  .framework-row-one .framework-card:last-child,
  .framework-row-two .framework-card:last-child {
    border-right: 1px solid var(--border-subtle);
  }

  .submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    left: 50%;
    width: calc(100% - 24px);
    transform: translateX(-50%);
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-main {
    padding: 96px 0 60px;
  }

  .page-hero,
  .page-card {
    padding: 28px 22px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
