:root {
  --ink: #181913;
  --ink-soft: #24251f;
  --paper: #f2efe7;
  --paper-deep: #e7e1d5;
  --white: #fbfaf6;
  --gold: #c4a16a;
  --gold-dark: #947145;
  --sage: #7d8372;
  --line: rgba(24, 25, 19, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--gold);
}

.section {
  padding: 150px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: #171711;
}

.button-gold:hover {
  background: #d1b27e;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid currentColor;
  padding: 0 0 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  color: rgba(255, 255, 255, 0.92);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: var(--line);
  background: rgba(242, 239, 231, 0.96);
  box-shadow: 0 8px 35px rgba(28, 28, 22, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 500;
}

.brand-copy small {
  opacity: 0.66;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-image {
  left: 46%;
  background: url("assets/roman-arch.jpg") center center / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(90deg, #11120e 0%, rgba(17, 18, 14, 0.97) 38%, rgba(17, 18, 14, 0.46) 67%, rgba(17, 18, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 15, 12, 0.55), transparent 35%);
}

.hero-grain {
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: 10vw;
  min-height: 790px;
  padding-top: 106px;
  padding-bottom: 74px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(4.3rem, 7.2vw, 7.75rem);
  letter-spacing: -0.055em;
}

.hero h1 em,
.contact h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #83a27a;
  box-shadow: 0 0 0 5px rgba(131, 162, 122, 0.12);
}

.hero-proof {
  align-self: end;
  margin-bottom: 34px;
  border-left: 1px solid var(--line-light);
}

.proof-rating,
.proof-item {
  display: grid;
  padding: 26px 0 26px 32px;
  border-top: 1px solid var(--line-light);
}

.proof-rating strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.95;
}

.stars,
.mini-stars {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.proof-rating small,
.proof-item small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.proof-item > span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.proof-item strong {
  max-width: 250px;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1.15;
}

.urgency-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 60px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(196, 161, 106, 0.4);
  background: rgba(17, 18, 14, 0.9);
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  backdrop-filter: blur(14px);
}

.urgency-label {
  padding: 4px 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.urgency-bar > span:last-child {
  color: var(--gold);
  font-weight: 700;
}

/* Intro */
.intro {
  position: relative;
  overflow: hidden;
}

.intro::after {
  position: absolute;
  top: 60px;
  right: -90px;
  color: rgba(24, 25, 19, 0.025);
  content: "SC";
  font-family: var(--serif);
  font-size: 28rem;
  line-height: 1;
  pointer-events: none;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 11vw;
}

.section-heading h2 {
  margin: 0;
}

.intro-copy {
  padding-top: 65px;
}

.intro-copy p {
  color: rgba(24, 25, 19, 0.68);
}

.intro-copy .lead-serif {
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-card {
  min-height: 295px;
  padding: 35px 42px;
  border-right: 1px solid var(--line);
}

.method-card:first-child {
  border-left: 1px solid var(--line);
}

.method-card > span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.method-card h3 {
  margin: 72px 0 17px;
  font-size: 2.1rem;
}

.method-card p {
  max-width: 290px;
  margin: 0;
  color: rgba(24, 25, 19, 0.62);
  font-size: 0.88rem;
}

/* Practice */
.practice {
  background: var(--ink-soft);
  color: var(--white);
}

.practice-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.46fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 80px;
}

.practice-heading h2 {
  margin: 0;
}

.practice-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.accordion-item {
  border-top: 1px solid var(--line);
}

.practice .accordion-item {
  border-color: var(--line-light);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.practice .accordion-item:last-child {
  border-color: var(--line-light);
}

.accordion-item h3 {
  margin: 0;
  font-family: inherit;
  letter-spacing: normal;
}

.accordion-trigger {
  display: grid;
  grid-template-columns: 60px minmax(270px, 0.72fr) 1fr 32px;
  align-items: center;
  gap: 26px;
  width: 100%;
  min-height: 132px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-number {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.accordion-title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
}

.accordion-summary {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.65;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  overflow: hidden;
}

.practice-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 0 50px 86px;
}

.practice-tags span {
  padding: 13px 24px 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.practice-tags span::before {
  margin-right: 10px;
  color: var(--gold);
  content: "—";
}

/* Founder */
.founder {
  background: var(--paper-deep);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) 1.2fr;
  gap: 11vw;
  align-items: center;
}

.founder-visual {
  position: relative;
  min-height: 660px;
  padding: 60px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.founder-visual::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(196, 161, 106, 0.35);
  border-radius: 50%;
  content: "";
}

.founder-monogram {
  color: rgba(196, 161, 106, 0.14);
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 0.8;
}

.founder-visual blockquote {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 130px 0 36px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.founder-rule {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--gold);
}

.founder-visual > span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin: 0 0 20px;
}

.founder-role {
  margin-bottom: 38px;
  color: var(--gold-dark) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-copy > p:not(.eyebrow):not(.founder-role) {
  max-width: 620px;
  color: rgba(24, 25, 19, 0.65);
}

.founder-copy > p:nth-of-type(3) {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
}

.founder-values {
  display: grid;
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.founder-values span {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
}

.founder-values b {
  color: var(--gold-dark);
  font-size: 0.65rem;
}

/* Reviews */
.reviews {
  background: var(--white);
}

.reviews-head,
.insights-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 80px;
}

.reviews-head h2,
.insights-head h2 {
  margin: 0;
}

.rating-lockup {
  display: grid;
  min-width: 210px;
  padding: 0 0 10px 30px;
  border-left: 1px solid var(--line);
}

.rating-lockup strong {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.rating-lockup span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.rating-lockup small {
  margin-top: 6px;
  color: rgba(24, 25, 19, 0.55);
}

.review-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-card {
  display: flex;
  min-height: 430px;
  margin: 0;
  padding: 45px;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.review-card:first-child {
  border-left: 1px solid var(--line);
}

.review-card.featured {
  background: var(--paper);
}

.quote-mark {
  height: 55px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.review-card blockquote {
  margin: auto 0;
  color: rgba(24, 25, 19, 0.75);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
  line-height: 1.45;
}

.review-card.featured blockquote {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
}

.review-card figcaption > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
}

.review-card figcaption div {
  display: grid;
}

.review-card figcaption strong {
  font-size: 0.78rem;
}

.review-card figcaption small {
  color: rgba(24, 25, 19, 0.46);
  font-size: 0.65rem;
}

.review-link {
  margin-top: 38px;
}

/* Insights */
.insights {
  background: var(--paper);
}

.insights-head > p {
  max-width: 420px;
  margin: 0 0 10px;
  color: rgba(24, 25, 19, 0.58);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  display: flex;
  min-height: 400px;
  padding: 38px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: transparent;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.insight-card:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-6px);
}

.insight-index {
  color: var(--gold-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 70px 0 24px;
  font-size: clamp(1.75rem, 2.45vw, 2.35rem);
  line-height: 1.08;
}

.insight-card p {
  color: rgba(24, 25, 19, 0.58);
  font-size: 0.84rem;
  transition: color 220ms ease;
}

.insight-card:hover p {
  color: rgba(255, 255, 255, 0.58);
}

.insight-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card:hover a {
  border-color: var(--line-light);
  color: var(--gold);
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}

.faq-heading {
  position: sticky;
  top: 135px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 30px;
}

.faq-heading > p:last-child {
  max-width: 400px;
  color: rgba(24, 25, 19, 0.58);
}

.faq-list .accordion-trigger {
  grid-template-columns: 1fr 32px;
  min-height: 94px;
  gap: 30px;
}

.faq-question {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.25;
}

.faq-list .accordion-panel p {
  max-width: 680px;
  margin: -3px 65px 32px 0;
  color: rgba(24, 25, 19, 0.62);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 150px 0 0;
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 11vw;
  padding-bottom: 115px;
}

.contact h2 {
  margin-bottom: 32px;
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.58);
}

.contact-direct {
  display: grid;
  margin-top: 55px;
  border-top: 1px solid var(--line-light);
}

.contact-direct a {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line-light);
}

.contact-direct span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-direct b {
  color: var(--gold);
}

.contact-form {
  padding: 45px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}

.form-heading strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.form-heading span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
}

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

.contact-form label > span {
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form label small {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  padding-top: 12px;
  resize: vertical;
}

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

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

.contact-form select option {
  background: var(--ink);
  color: var(--white);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
  margin-top: 34px;
}

.privacy-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
}

.privacy-note span {
  margin-right: 7px;
  color: #83a27a;
  font-size: 0.55rem;
}

.location-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr auto;
  align-items: stretch;
  border-top: 1px solid var(--line-light);
}

.location-strip > div,
.location-strip > a {
  min-height: 145px;
  padding: 34px 35px;
  border-right: 1px solid var(--line-light);
}

.location-strip > div:first-child {
  border-left: 1px solid var(--line-light);
}

.location-strip > div {
  display: grid;
  align-content: center;
}

.location-strip span {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-strip strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}

.location-strip > a {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  padding: 70px 0 24px;
  background: #0f100d;
  color: var(--white);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  padding-bottom: 55px;
}

.footer-top > p {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.59rem;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: var(--gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #587a51;
  box-shadow: 0 0 0 4px rgba(88, 122, 81, 0.17);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay {
  transition-delay: 180ms;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --shell: min(1240px, calc(100vw - 44px));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    height: calc(100vh - 82px);
    padding: 45px max(22px, calc((100vw - 1240px) / 2));
    overflow-y: auto;
    background: var(--paper);
    color: var(--ink);
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 5vw, 2.5rem);
  }

  .mobile-menu-contact {
    display: grid;
    gap: 4px;
    margin-top: 38px;
    color: var(--gold-dark);
  }

  .mobile-menu-contact span {
    color: rgba(24, 25, 19, 0.48);
    font-size: 0.67rem;
  }

  .hero-inner {
    grid-template-columns: 1fr minmax(220px, 0.36fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 8vw, 6.4rem);
  }

  .founder-grid {
    gap: 7vw;
  }

  .founder-visual {
    min-height: 580px;
    padding: 42px;
  }

  .founder-monogram {
    font-size: 10rem;
  }

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

  .review-card.featured {
    grid-column: 1 / -1;
    min-height: 350px;
  }

  .contact-grid {
    gap: 6vw;
  }

  .contact-form {
    padding: 35px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100vw - 38px);
  }

  .section {
    padding: 100px 0;
  }

  .hero {
    min-height: 920px;
  }

  .hero-image {
    left: 0;
    opacity: 0.66;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(15, 16, 13, 0.97), rgba(15, 16, 13, 0.58)), linear-gradient(0deg, #0f100d 0%, transparent 58%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
    min-height: 860px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

  .hero-lead {
    max-width: 560px;
  }

  .hero-proof {
    display: none;
  }

  .urgency-bar {
    grid-template-columns: auto 1fr;
    gap: 13px;
    min-height: 66px;
    padding: 10px 20px;
  }

  .urgency-bar > span:last-child {
    display: none;
  }

  .intro-grid,
  .practice-heading,
  .founder-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 10px;
  }

  .method-grid {
    grid-template-columns: 1fr;
    margin-top: 75px;
    border-bottom: 0;
  }

  .method-card,
  .method-card:first-child {
    min-height: auto;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .method-card h3 {
    margin: 34px 0 12px;
  }

  .practice-heading {
    gap: 20px;
  }

  .accordion-trigger {
    grid-template-columns: 45px 1fr 30px;
    min-height: 110px;
    gap: 15px;
  }

  .accordion-summary {
    display: none;
  }

  .practice-tags {
    grid-template-columns: 1fr 1fr;
    padding-left: 60px;
  }

  .founder-grid {
    gap: 70px;
  }

  .founder-visual {
    min-height: 520px;
  }

  .reviews-head,
  .insights-head {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .rating-lockup {
    padding-left: 0;
    border-left: 0;
  }

  .review-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .review-card.featured {
    grid-column: auto;
  }

  .review-card,
  .review-card:first-child {
    min-height: 340px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .insight-card {
    min-height: 340px;
  }

  .faq-heading {
    position: static;
  }

  .contact-grid {
    gap: 70px;
  }

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

  .location-strip > div,
  .location-strip > a,
  .location-strip > div:first-child {
    min-height: 120px;
    border: 1px solid var(--line-light);
    border-top: 0;
  }

  .footer-bottom {
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner {
    min-height: 805px;
    padding-top: 110px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-note {
    align-items: flex-start;
    font-size: 0.58rem;
  }

  .urgency-bar {
    font-size: 0.68rem;
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .intro::after {
    display: none;
  }

  .method-card {
    padding-inline: 10px;
  }

  .practice-tags {
    grid-template-columns: 1fr;
    padding-left: 45px;
  }

  .accordion-trigger {
    grid-template-columns: 36px 1fr 28px;
    min-height: 96px;
  }

  .accordion-title {
    font-size: 1.35rem;
  }

  .founder-visual {
    min-height: 470px;
    padding: 30px;
  }

  .founder-monogram {
    font-size: 8rem;
  }

  .founder-visual blockquote {
    margin-top: 100px;
  }

  .review-card {
    min-height: 370px;
    padding: 32px;
  }

  .insight-card {
    padding: 30px;
  }

  .faq-list .accordion-trigger {
    min-height: 86px;
  }

  .faq-list .accordion-panel p {
    margin-right: 0;
  }

  .contact {
    padding-top: 100px;
  }

  .contact h2 {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .contact-direct a {
    grid-template-columns: 80px minmax(0, 1fr) auto;
  }

  .contact-direct strong {
    font-size: 0.87rem;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions,
  .location-strip {
    grid-template-columns: 1fr;
  }

  .location-strip > div,
  .location-strip > a {
    border-right: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

/* V2: conversion, mobile-first polish and scroll motion */
.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.hero-image {
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero-rating-chip {
  display: none;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 92px;
  left: max(32px, calc((100vw - 1240px) / 2));
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--gold);
  content: "";
  animation: cue-line 2.4s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes cue-line {
  0% { transform: translateX(-100%); }
  45%, 60% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.case-router {
  position: relative;
  z-index: 5;
  padding: 115px 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.case-router::before {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(148, 113, 69, 0.13);
  border-radius: 50%;
  content: "";
}

.case-router-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1.38fr;
  gap: 8vw;
  align-items: end;
}

.router-intro h2 {
  margin: 0 0 26px;
  font-size: clamp(3.6rem, 5.4vw, 5.6rem);
}

.router-intro > p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(24, 25, 19, 0.58);
  font-size: 0.88rem;
}

.router-options {
  display: grid;
  border-top: 1px solid var(--line);
}

.router-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease, color 220ms ease;
}

.router-card:hover,
.router-card:focus-visible {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--ink);
  color: var(--white);
}

.router-number {
  color: var(--gold-dark);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.router-card div {
  display: grid;
  gap: 4px;
}

.router-card small {
  color: var(--gold-dark);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.router-card strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.router-card > b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold-dark);
  font-weight: 400;
  transition: transform 220ms ease;
}

.router-card:hover > b {
  color: var(--gold);
  transform: rotate(45deg);
}

.router-card.urgent small,
.router-card.urgent .router-number {
  color: #a45643;
}

.rating-lockup small b {
  color: var(--ink);
  font-weight: 600;
}

.mobile-contact-dock {
  display: none;
}

/* Purposeful reveal variants */
.reveal[data-reveal="clip"] {
  clip-path: inset(0 0 24% 0);
  opacity: 0;
  transform: translateY(22px);
  transition: clip-path 950ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-reveal="clip"].is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 750ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-reveal="right"] {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 750ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.94) translateY(25px);
  transition: opacity 800ms ease, transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-reveal="left"].is-visible,
.reveal[data-reveal="right"].is-visible,
.reveal[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-reveal="stagger"] {
  opacity: 1;
  transform: none;
}

.reveal[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-reveal="stagger"].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal[data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal[data-reveal="stagger"].is-visible > *:nth-child(6) { transition-delay: 450ms; }

.founder-visual {
  transform: translate3d(0, var(--card-shift, 0px), 0);
}

.founder-visual.reveal[data-reveal="scale"].is-visible {
  transform: translate3d(0, var(--card-shift, 0px), 0);
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 74px;
  }

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

  .mobile-menu {
    top: 74px;
    height: calc(100svh - 74px);
  }

  .hero {
    min-height: max(820px, 100svh);
  }

  .hero-inner {
    align-content: start;
    min-height: max(820px, 100svh);
    padding-top: 116px;
    padding-bottom: 190px;
  }

  .hero-image {
    top: -2%;
    bottom: -2%;
    left: 18%;
    opacity: 0.82;
    background-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 15, 12, 0.98) 0%, rgba(14, 15, 12, 0.86) 48%, rgba(14, 15, 12, 0.22) 100%),
      linear-gradient(0deg, rgba(14, 15, 12, 0.9) 0%, transparent 48%);
  }

  .hero-rating-chip {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 9px;
    width: max-content;
    margin: -5px 0 22px;
    padding: 8px 11px;
    border: 1px solid rgba(196, 161, 106, 0.35);
    background: rgba(17, 18, 14, 0.35);
    backdrop-filter: blur(10px);
  }

  .hero-rating-chip span {
    color: var(--gold);
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .hero-rating-chip strong {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
  }

  .hero-rating-chip small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.57rem;
  }

  .hero h1 {
    max-width: 690px;
    margin-bottom: 26px;
    font-size: clamp(3.8rem, 12.5vw, 6rem);
    line-height: 0.96;
  }

  .hero-lead {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
  }

  .hero-scroll-cue {
    display: none;
  }

  .urgency-bar {
    bottom: 66px;
    min-height: 64px;
    padding: 10px 19px;
    background: rgba(19, 20, 16, 0.96);
  }

  .case-router {
    padding: 90px 0 80px;
  }

  .case-router-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .router-intro h2 {
    font-size: clamp(3.5rem, 13vw, 5.3rem);
  }

  .router-card {
    min-height: 100px;
  }

  .mobile-contact-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #10110e;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.2);
  }

  .mobile-contact-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-contact-dock a + a {
    background: var(--gold);
    color: var(--ink);
  }

  .dock-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #54794f;
    box-shadow: 0 0 0 4px rgba(84, 121, 79, 0.16);
  }

  .floating-contact {
    display: none !important;
  }

  .site-footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 540px) {
  .hero-inner {
    padding-top: 104px;
    padding-bottom: 182px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 0.56rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.8vw, 4.15rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 17px;
  }

  .hero-actions .button {
    min-height: 60px;
  }

  .hero-note {
    max-width: 320px;
    margin-top: 24px;
    line-height: 1.6;
  }

  .urgency-bar {
    grid-template-columns: auto 1fr;
    font-size: 0.63rem;
  }

  .router-card {
    grid-template-columns: 36px 1fr 32px;
    gap: 14px;
    padding: 17px 0;
  }

  .router-card strong {
    font-size: 1.22rem;
  }

  .router-card > b {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .founder-visual,
  .studio-visual-frame img {
    transform: none !important;
  }

  .hero-scroll-cue i::after {
    animation: none;
  }

  .reveal[data-reveal] {
    clip-path: none;
    opacity: 1;
    transform: none;
  }

  .reveal[data-reveal="stagger"] > * {
    opacity: 1;
    transform: none;
  }
}

/* Editorial architectural imagery */
.studio-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  min-height: 570px;
  margin-top: 115px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.studio-visual-frame {
  min-height: 570px;
  overflow: hidden;
}

.studio-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transform: translate3d(0, var(--image-shift, 0px), 0) scale(1.075);
  transition: filter 500ms ease;
  will-change: transform;
}

.studio-visual:hover .studio-visual-frame img {
  filter: saturate(0.96) contrast(1.02);
}

.studio-visual figcaption {
  position: relative;
  display: flex;
  padding: 55px 42px 45px;
  flex-direction: column;
  border-left: 1px solid var(--line-light);
}

.studio-visual figcaption > span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-visual figcaption > strong {
  margin-top: 95px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.8vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.studio-visual figcaption > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
}

.studio-visual figcaption > i {
  margin-top: auto;
  color: rgba(196, 161, 106, 0.28);
  font-family: var(--serif);
  font-size: 4rem;
  font-style: normal;
  line-height: 1;
}

.studio-visual + .method-grid {
  margin-top: 70px;
}

.founder-visual {
  isolation: isolate;
}

.founder-bg {
  position: absolute;
  inset: -4%;
  z-index: -2;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(0.72) contrast(1.12);
  opacity: 0.72;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.founder-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 18, 14, 0.16), rgba(17, 18, 14, 0.9) 72%);
  content: "";
}

.founder-visual:hover .founder-bg {
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.075);
}

.founder-monogram,
.founder-visual blockquote,
.founder-rule,
.founder-visual > span {
  position: relative;
  z-index: 2;
}

.founder-monogram {
  color: rgba(196, 161, 106, 0.2);
}

@media (max-width: 800px) {
  .studio-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 80px;
  }

  .studio-visual-frame {
    min-height: 390px;
  }

  .studio-visual-frame img {
    object-position: 59% center;
  }

  .studio-visual figcaption {
    min-height: 320px;
    padding: 38px 30px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .studio-visual figcaption > strong {
    max-width: 520px;
    margin-top: 55px;
  }

  .studio-visual figcaption > i {
    position: absolute;
    right: 28px;
    bottom: 27px;
  }
}

@media (max-width: 540px) {
  .studio-visual-frame {
    min-height: 300px;
  }

  .studio-visual figcaption {
    min-height: 310px;
  }

  .studio-visual figcaption > strong {
    font-size: 2rem;
  }

  .founder-bg {
    object-position: 64% center;
  }
}
