:root {
  --graphite: #26221d;
  --graphite-deep: #181512;
  --graphite-soft: #3f3a35;
  --ink: #25211d;
  --muted: #736a60;
  --paper: #f7f1e8;
  --paper-deep: #efe5d6;
  --ivory: #fbf8f2;
  --gold: #c89a4b;
  --gold-soft: #e8c987;
  --gold-dark: #9c6b25;
  --gold-pale: #ead8b8;
  --gold-gradient: linear-gradient(135deg, #9c6b25 0%, #e8c987 45%, #c89a4b 100%);
  --graphite-gradient: linear-gradient(135deg, #181512 0%, #2a251f 55%, #3a3027 100%);
  --line: rgba(200, 154, 75, 0.34);
  --shadow: 0 28px 82px rgba(24, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  background:
    linear-gradient(90deg, rgba(185, 135, 54, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 135, 54, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(214, 179, 111, 0.16), transparent 28rem),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(95deg, rgba(39, 36, 33, 0.018) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(4deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--graphite);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(200, 154, 75, 0.26);
  background: rgba(247, 241, 232, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(210px, 24vw, 340px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 32px);
  color: var(--graphite-soft);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.top-nav a {
  transition: color 180ms ease;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--ivory);
  background: var(--graphite-gradient);
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(56px, 8vw, 108px) 0;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: -34px;
  left: -28px;
  width: 72px;
  height: 1px;
  background: var(--gold-gradient);
  content: "";
}

.hero::before,
.hero::after,
.final-cta::before,
.positioning::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 46px;
  right: 34%;
  width: 180px;
  height: 180px;
  border-top: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.48;
  animation: slow-orbit 13s ease-in-out infinite alternate;
}

.hero::after {
  right: -5vw;
  bottom: 8%;
  width: 330px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-label {
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  color: var(--graphite);
  border: 1px solid rgba(200, 154, 75, 0.38);
  background: rgba(232, 201, 135, 0.26);
}

.hero h1 {
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.04;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 640px;
  margin-top: 26px;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 25px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-card {
  color: var(--ivory);
  border: 1px solid rgba(200, 154, 75, 0.28);
  background: var(--graphite-gradient);
  box-shadow: 0 18px 48px rgba(24, 21, 18, 0.22);
}

.btn-primary:hover,
.btn-card:hover {
  border-color: var(--gold);
  color: #251f19;
  background: var(--gold-gradient);
  box-shadow: 0 20px 54px rgba(156, 107, 37, 0.22);
}

.btn-secondary {
  color: var(--graphite);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--graphite-deep);
  background: rgba(232, 201, 135, 0.34);
}

.hero-visual,
.about-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  top: -24px;
  right: -22px;
  width: 74%;
  height: 92%;
  border: 1px solid rgba(185, 135, 54, 0.38);
  content: "";
  animation: frame-float 7s ease-in-out infinite alternate;
}

.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(185, 135, 54, 0.48);
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 201, 135, 0.32), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(238, 229, 216, 0.72)),
    var(--paper-deep);
  box-shadow: var(--shadow);
  animation: photo-float 8s ease-in-out infinite alternate;
}

.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder.has-photo {
  background: var(--paper-deep);
}

.photo-placeholder.has-photo::before {
  z-index: 2;
}

.photo-placeholder.has-photo::after {
  z-index: 2;
}

.photo-placeholder.has-photo p {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 230px;
  margin: 0;
  padding: 10px 12px;
  color: var(--ivory);
  text-align: right;
  background: rgba(24, 21, 18, 0.72);
  backdrop-filter: blur(12px);
}

.photo-placeholder-large img {
  object-position: center center;
}

.about-photo img {
  object-position: center top;
}

.photo-placeholder-large {
  min-height: clamp(500px, 65vh, 670px);
}

.photo-placeholder::before,
.photo-placeholder::after {
  position: absolute;
  content: "";
}

.photo-placeholder::before {
  top: 18px;
  right: 18px;
  width: 158px;
  height: 158px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.52;
  animation: slow-orbit 12s ease-in-out infinite alternate;
}

.photo-placeholder::after {
  bottom: 26px;
  left: 26px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.photo-placeholder p {
  position: relative;
  max-width: 180px;
  margin-top: 26px;
  color: rgba(63, 58, 53, 0.72);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.placeholder-figure {
  position: relative;
  width: min(62%, 230px);
  aspect-ratio: 0.74;
  border: 1px solid rgba(185, 135, 54, 0.34);
  background:
    linear-gradient(160deg, rgba(185, 135, 54, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.34);
}

.placeholder-figure::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(200, 154, 75, 0.18);
  content: "M";
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-style: italic;
}

.placeholder-figure span {
  position: absolute;
  left: 50%;
  top: 19%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(39, 36, 33, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
}

.placeholder-figure i {
  position: absolute;
  left: 50%;
  bottom: 13%;
  width: 58%;
  height: 44%;
  border: 1px solid rgba(39, 36, 33, 0.16);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.placeholder-figure.compact {
  width: min(54%, 180px);
}

.positioning {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0;
  text-align: center;
}

.positioning::before {
  top: 22%;
  left: 2%;
  width: 96%;
  height: 58%;
  border-top: 1px solid rgba(185, 135, 54, 0.22);
  border-bottom: 1px solid rgba(185, 135, 54, 0.16);
}

.positioning h2,
.section-heading h2,
.about-copy h2,
.final-cta h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 1.02;
}

.positioning h2 {
  width: min(820px, 100%);
  margin: 18px auto 0;
  font-style: italic;
}

.positioning p {
  width: min(760px, 100%);
  margin: 26px auto 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.positioning-attributes {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.positioning-attributes span {
  padding: 12px 16px;
  color: var(--graphite);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 154, 75, 0.28);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 28px rgba(24, 21, 18, 0.06);
}

.audience,
.method,
.situations {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: clamp(34px, 5vw, 54px);
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.audience .section-heading {
  width: min(900px, 100%);
}

.audience .section-heading h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.audience .section-heading h2 span,
.method .section-heading h2 span {
  display: block;
}

.audience-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.audience-card,
.method-step,
.situation-card {
  position: relative;
  border: 1px solid rgba(185, 135, 54, 0.24);
  background: rgba(251, 248, 242, 0.74);
  box-shadow: 0 16px 46px rgba(39, 36, 33, 0.07);
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.audience-card::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(185, 135, 54, 0.22);
  border-radius: 50%;
  content: "";
  transition: transform 280ms ease, border-color 280ms ease;
}

.audience-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(24, 21, 18, 0.16);
}

.audience-card:hover::after {
  transform: translate(-10px, -10px);
  border-color: rgba(232, 201, 135, 0.52);
}

.worker-card {
  border-color: rgba(200, 154, 75, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 201, 135, 0.24), transparent 36%),
    rgba(251, 248, 242, 0.82);
}

.company-card {
  color: rgba(251, 248, 242, 0.76);
  border-color: rgba(232, 201, 135, 0.32);
  background:
    radial-gradient(circle at 92% 8%, rgba(232, 201, 135, 0.2), transparent 32%),
    var(--graphite-gradient);
  box-shadow: 0 26px 78px rgba(24, 21, 18, 0.24);
}

.company-card h3 {
  color: #ffffff;
}

.company-card .check-list li::before {
  background: var(--gold-gradient);
}

.company-card .card-label {
  color: var(--graphite-deep);
  border-color: rgba(232, 201, 135, 0.76);
  background: var(--gold-gradient);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.company-card p:not(.card-label),
.company-card .check-list {
  color: #f5f1ea;
}

.company-card .card-icon {
  border-color: rgba(232, 201, 135, 0.44);
  background: rgba(255, 255, 255, 0.05);
}

.company-card .btn-card {
  color: var(--graphite-deep);
  border-color: rgba(232, 201, 135, 0.72);
  background: var(--gold-gradient);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.company-card .btn-card:hover {
  color: var(--ivory);
  background: transparent;
}

.audience-divider {
  display: grid;
  place-items: center;
}

.audience-divider span {
  display: block;
  width: 1px;
  height: 76%;
  background: linear-gradient(180deg, transparent, var(--gold-soft), var(--gold), transparent);
}

.audience-divider span::before {
  display: block;
  width: 16px;
  height: 16px;
  margin: 74px 0 0 -8px;
  border: 1px solid rgba(200, 154, 75, 0.58);
  background: var(--paper);
  transform: rotate(45deg);
  content: "";
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.audience-card h3 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.audience-card p:not(.card-label) {
  margin-top: 18px;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
  margin: 26px 0 30px;
  padding: 0;
  color: var(--graphite-soft);
  font-size: 0.94rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.company-card p:not(.card-label),
.company-card .check-list {
  color: #f5f1ea;
}

.company-card h3 {
  color: #ffffff;
}

.btn-card {
  align-self: flex-start;
  margin-top: auto;
}

.method {
  position: relative;
}

.method .section-heading {
  width: min(920px, 100%);
}

.method .section-heading h2 {
  max-width: 900px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.02;
}

.method::before {
  position: absolute;
  top: calc(50% + 58px);
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 154, 75, 0.62), transparent);
  content: "";
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-step {
  min-height: 260px;
  padding: 28px;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.method-step span {
  color: transparent;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.method-step h3 {
  margin-top: 26px;
  font-size: 1.45rem;
}

.method-step p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.method-step:hover {
  color: rgba(251, 248, 242, 0.78);
  border-color: rgba(232, 201, 135, 0.42);
  background: var(--graphite-gradient);
  transform: translateY(-6px);
}

.method-step:hover h3 {
  color: var(--ivory);
}

.method-step:hover p {
  color: rgba(251, 248, 242, 0.7);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  padding: clamp(72px, 10vw, 136px) 0;
}

.about::before {
  position: absolute;
  top: 14%;
  left: -24px;
  width: 6px;
  height: 72%;
  background: var(--graphite-gradient);
  content: "";
}

.about .photo-placeholder {
  min-height: 500px;
}

.about-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--graphite-soft);
}

.about-copy h2 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  font-weight: 600;
  line-height: 1.12;
}

.name-line {
  margin-top: 10px;
  color: var(--graphite);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 3.55vw, 3.35rem);
  font-weight: 700;
  line-height: 0.98;
  white-space: nowrap;
}

.oab-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 9px 13px;
  color: var(--graphite-deep);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-gradient);
}

.signature-strip {
  width: min(100%, 560px);
  margin-top: 30px;
  padding: 14px 0 14px 18px;
  color: var(--graphite);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-left: 3px solid var(--gold);
  border-top: 1px solid rgba(200, 154, 75, 0.18);
  border-bottom: 1px solid rgba(200, 154, 75, 0.18);
  background: rgba(247, 241, 232, 0.46);
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.situations .section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.situations-toggle {
  display: inline-flex;
  gap: 8px;
  margin: -18px 0 30px;
  padding: 6px;
  border: 1px solid rgba(200, 154, 75, 0.32);
  background: rgba(255, 255, 255, 0.4);
}

.toggle-button {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--graphite);
  font: 500 0.84rem/1.2 "Poppins", Arial, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.toggle-button:hover,
.toggle-button.is-active {
  color: var(--ivory);
  border-color: rgba(200, 154, 75, 0.36);
  background: var(--graphite-gradient);
}

.toggle-button.is-active {
  box-shadow: 0 12px 30px rgba(24, 21, 18, 0.16);
}

#situations-grid {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.situations-grid.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.situation-card {
  min-height: 148px;
  padding: 22px;
  color: var(--graphite-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.situation-card::before {
  display: block;
  width: 28px;
  height: 1px;
  margin-bottom: 20px;
  background: var(--gold);
  content: "";
  transition: width 220ms ease, background 220ms ease;
}

.situation-card:hover {
  color: rgba(251, 248, 242, 0.82);
  border-color: rgba(232, 201, 135, 0.44);
  background: var(--graphite-gradient);
  transform: translateY(-5px);
}

.situation-card:hover::before {
  width: 62px;
  background: var(--gold-gradient);
}

.trust-strip {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  background:
    linear-gradient(90deg, rgba(24, 21, 18, 0.98), rgba(42, 37, 31, 0.96)),
    var(--graphite);
}

.trust-strip::before {
  position: absolute;
  top: -70px;
  right: 8%;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(232, 201, 135, 0.24);
  border-radius: 50%;
  content: "";
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(251, 248, 242, 0.82);
  font-size: 0.86rem;
  font-weight: 400;
}

.trust-item span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(232, 201, 135, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.trust-item svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 201, 135, 0.24), transparent 34%),
    linear-gradient(115deg, rgba(24, 21, 18, 0.98), rgba(42, 37, 31, 0.98) 58%, rgba(58, 48, 39, 0.96)),
    var(--graphite-deep);
  background-size: 120% 120%;
  animation: cta-depth 14s ease-in-out infinite alternate;
}

.final-cta::before {
  top: -130px;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(214, 179, 111, 0.44);
  border-radius: 50%;
}

.final-cta::after {
  position: absolute;
  right: 12%;
  bottom: 20%;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 135, 0.62), transparent);
  content: "";
}

.final-cta-inner {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 12vw, 128px) 0;
}

.final-cta h2 {
  max-width: 780px;
  margin-top: 12px;
  color: var(--ivory);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.final-cta p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(251, 248, 242, 0.76);
}

.btn-gold {
  color: #221f1b;
  border: 1px solid var(--gold);
  background: var(--gold-gradient);
  box-shadow: 0 16px 46px rgba(156, 107, 37, 0.22);
}

.btn-gold:hover {
  box-shadow: 0 18px 46px rgba(185, 135, 54, 0.2);
}

.btn-outline-light {
  color: var(--ivory);
  border: 1px solid rgba(251, 248, 242, 0.42);
}

.btn-outline-light:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 26px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: rgba(251, 248, 242, 0.72);
  font-size: 0.82rem;
  background: #1d1a18;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
}

.footer-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.site-footer address {
  font-style: normal;
}

.legal-note {
  color: rgba(251, 248, 242, 0.58);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.method-step:nth-child(2),
.situations-grid .situation-card:nth-child(2),
.trust-item:nth-child(2) {
  transition-delay: 90ms;
}

.method-step:nth-child(3),
.situations-grid .situation-card:nth-child(3),
.trust-item:nth-child(3) {
  transition-delay: 180ms;
}

.method-step:nth-child(4),
.situations-grid .situation-card:nth-child(4) {
  transition-delay: 270ms;
}

.situations-grid .situation-card:nth-child(5) {
  transition-delay: 80ms;
}

.situations-grid .situation-card:nth-child(6) {
  transition-delay: 160ms;
}

.situations-grid .situation-card:nth-child(7) {
  transition-delay: 240ms;
}

.situations-grid .situation-card:nth-child(8) {
  transition-delay: 320ms;
}

@keyframes photo-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

@keyframes frame-float {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-8px, 10px);
  }
}

@keyframes slow-orbit {
  from {
    transform: rotate(0deg) translateY(0);
  }

  to {
    transform: rotate(4deg) translateY(8px);
  }
}

@keyframes cta-depth {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .photo-placeholder,
  .hero-visual::before,
  .hero::before,
  .photo-placeholder::before,
  .final-cta {
    animation: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    justify-content: center;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero::before {
    right: 8%;
  }

  .hero-visual {
    width: min(620px, 100%);
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .audience-divider {
    display: none;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method::before {
    display: none;
  }

  .method-step {
    min-height: auto;
  }

  .situations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: min(285px, 78vw);
    margin: 0 auto;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.06;
  }

  .method .section-heading h2 {
    max-width: 100%;
    font-size: clamp(25px, 7.1vw, 30px);
    line-height: 1.08;
  }

  .hero-copy::before {
    left: 0;
  }

  .button-row,
  .final-cta .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .photo-placeholder,
  .photo-placeholder-large,
  .about .photo-placeholder {
    min-height: 390px;
  }

  .hero-visual::before {
    top: -14px;
    right: -10px;
  }

  .check-list,
  .situations-grid {
    grid-template-columns: 1fr;
  }

  .positioning-attributes {
    align-items: stretch;
    flex-direction: column;
  }

  .positioning-attributes span {
    width: 100%;
  }

  .audience-card,
  .method-step,
  .situation-card {
    padding: 24px;
  }

  .company-card .card-label {
    width: fit-content;
  }

  .about::before {
    left: 0;
    width: 100%;
    height: 4px;
  }

  .name-line {
    white-space: normal;
  }

  .trust-item {
    align-items: flex-start;
  }

  .positioning,
  .audience,
  .method,
  .about,
  .situations {
    padding: 62px 0;
  }
}
