/* ============================================================
   VÉRTICE — style.css
   Corpo. Imagem. Confiança.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Montserrat:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:    #0B0B0B;
  --black2:   #111111;
  --black3:   #1A1A1A;
  --black4:   #2A2A2A;
  --gold:     #C6A75E;
  --gold-lt:  #D9BC82;
  --gold-dk:  #9E7F3A;
  --gold-dkr: #7A5E24;
  --white:    #F5F5F5;
  --muted:    rgba(245,245,245,0.55);
  --muted2:   rgba(245,245,245,0.35);
  --muted3:   rgba(245,245,245,0.15);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;

  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);

  --max:          1200px;
  --pad:          clamp(24px, 5vw, 80px);
  --section-pad:  clamp(80px, 10vw, 140px);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); }

/* ── Utilities ───────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.gold { color: var(--gold); }

/* ── Reveal animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .52s; }

/* ═══════════════════════════════════════════════════════════════
   LOGO SVG (inline symbol)
═══════════════════════════════════════════════════════════════ */
.logo-symbol { display: inline-block; vertical-align: middle; }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background .45s var(--ease), padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 0;
  border-color: rgba(198,167,94,.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
}
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .32em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.nav__logo-tag {
  font-size: .52rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 400;
}

/* links */
.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.nav__links a:hover { color: var(--gold); }

/* cta */
.nav__cta {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(198,167,94,.5);
  color: var(--gold);
  transition: background .35s, color .35s, border-color .35s;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.nav__mobile.open { opacity: 1; pointer-events: all; display: flex; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--white);
  transition: color .3s;
}
.nav__mobile a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid rgba(198,167,94,.55);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease);
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--black); }
.btn:hover::after { transform: scaleX(1); }

.btn--solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--solid::after { background: var(--black); }
.btn--solid:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   SECTION TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
.sec-label {
  font-size: .6rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 26px 0;
}
.sec-text {
  font-size: clamp(.82rem, 1.4vw, .95rem);
  color: var(--muted);
  line-height: 1.9;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* geometric triangle bg decoration */
.hero__geo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero__geo svg {
  position: absolute;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  opacity: .04;
}

/* vertical accent lines */
.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__lines::before,
.hero__lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(198,167,94,.18) 25%,
    rgba(198,167,94,.18) 75%,
    transparent 100%
  );
}
.hero__lines::before { left: 7%; }
.hero__lines::after  { right: 7%; }

/* horizontal fine rule at top */
.hero__top-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,167,94,.3) 50%, transparent);
}

.hero__inner { position: relative; z-index: 1; max-width: 760px; }

.hero__label {
  font-size: .6rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.015em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .6s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__sub {
  font-size: clamp(.85rem, 1.5vw, 1rem);
  color: var(--muted);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .85s forwards;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.05s forwards;
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.hero__scroll-label {
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted2);
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: .5; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════════════════════
   METHOD
═══════════════════════════════════════════════════════════════ */
.method {
  padding: var(--section-pad) 0;
  position: relative;
}
.method__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: center;
}

/* decorative triangle panel */
.method__visual {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 540px;
}
.method__frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198,167,94,.15);
}
.method__frame-inner {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(198,167,94,.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method__triangle-bg {
  opacity: .07;
}
.method__num {
  position: absolute;
  bottom: -10px; right: -20px;
  font-family: var(--serif);
  font-size: 11rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(198,167,94,.05);
  pointer-events: none;
  user-select: none;
}

.method__quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════════════════════ */
.pillars {
  padding: var(--section-pad) 0;
  background: var(--black2);
  position: relative;
  overflow: hidden;
}
.pillars::after {
  content: 'VÉRTICE';
  position: absolute;
  bottom: -60px; right: -24px;
  font-family: var(--serif);
  font-size: 16rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(198,167,94,.025);
  letter-spacing: .06em;
  pointer-events: none;
  user-select: none;
}

.pillars__header {
  text-align: center;
  margin-bottom: 72px;
}
.pillars__header .sec-rule { margin: 26px auto; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198,167,94,.08);
}

.pillar {
  background: var(--black);
  padding: 52px 40px 48px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s;
}
.pillar:hover { background: rgba(198,167,94,.03); }

/* top accent line on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: scaleX(0);
  transition: transform .55s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__num {
  position: absolute;
  top: 36px; right: 36px;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(198,167,94,.07);
}

/* small triangle icon per pillar */
.pillar__icon {
  margin-bottom: 32px;
}

.pillar__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.pillar__text {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}
.pillar__link {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s;
}
.pillar__link:hover { gap: 18px; }
.pillar__link-arrow { font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials__header .sec-rule { margin: 26px auto; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198,167,94,.08);
}

.testimonial {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  transition: background .35s;
}
.testimonial:hover { background: rgba(198,167,94,.025); }

.testimonial__mark {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(198,167,94,.09);
  font-weight: 300;
}
.testimonial__stars {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.testimonial__text {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(245,245,245,.82);
  margin-bottom: 28px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  flex-shrink: 0;
}
.testimonial__name {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .07em;
}
.testimonial__role {
  font-size: .7rem;
  color: rgba(245,245,245,.4);
  margin-top: 2px;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--black2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* big triangle decoration */
.cta-band__triangle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: .025;
  pointer-events: none;
}

.cta-band__eyebrow {
  font-size: .6rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 680px;
  margin: 0 auto 14px;
}
.cta-band__title em { font-style: italic; color: var(--gold); }
.cta-band__sub {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 48px;
}
.cta-band__note {
  margin-top: 20px;
  font-size: .65rem;
  color: var(--muted2);
  letter-spacing: .12em;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: start;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.contact__detail-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(198,167,94,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .78rem;
  color: var(--gold);
}

/* form */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__label {
  display: block;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.form__input,
.form__textarea {
  width: 100%;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(198,167,94,.18);
  color: var(--white);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .3s, background .3s;
  resize: none;
  border-radius: 0;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(245,245,245,.18); }
.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: rgba(198,167,94,.035);
}
.form__input.error,
.form__textarea.error { border-color: #c0504a; }
.form__error {
  font-size: .68rem;
  color: #c0504a;
  margin-top: 5px;
  display: none;
  letter-spacing: .04em;
}
.form__error.visible { display: block; }
.form__textarea { min-height: 110px; }

.form__success {
  display: none;
  text-align: center;
  padding: 52px 24px;
  border: 1px solid rgba(198,167,94,.25);
}
.form__success-icon {
  margin-bottom: 18px;
}
.form__success-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}
.form__success-text {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(198,167,94,.1);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: .55rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(198,167,94,.5);
  margin-bottom: 18px;
}
.footer__brand-text {
  font-size: .78rem;
  color: var(--muted2);
  line-height: 1.8;
  max-width: 260px;
}
.footer__col-title {
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: .78rem;
  color: var(--muted2);
  margin-bottom: 10px;
  transition: color .3s;
  letter-spacing: .03em;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__copy {
  font-size: .68rem;
  color: var(--muted2);
  letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 160px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 80% 30%, rgba(198,167,94,.06) 0%, transparent 60%);
}
.page-hero__triangle {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  opacity: .04;
  pointer-events: none;
}
.page-hero__label {
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero__label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  max-width: 720px;
  margin-bottom: 28px;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  font-size: clamp(.82rem, 1.5vw, .98rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.88;
}

/* content blocks */
.content-block { padding: var(--section-pad) 0; }
.content-alt { background: var(--black2); }
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.content-2col.reverse { direction: rtl; }
.content-2col.reverse > * { direction: ltr; }

.content-visual {
  aspect-ratio: 4/5;
  border: 1px solid rgba(198,167,94,.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.content-visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(198,167,94,.07);
}
.content-visual__svg { opacity: .12; }
.content-visual__dot {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border: 1px solid rgba(198,167,94,.3);
  border-radius: 50%;
}

.content-text > * + * { margin-top: 18px; }
.content-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
}
.content-text h2 em { font-style: italic; color: var(--gold); }
.content-text p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.9;
}
.content-text ul { margin-top: 10px; }
.content-text li {
  font-size: .85rem;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 14px;
}
.content-text li::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.content-quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}

/* stats strip */
.stats-strip {
  padding: 60px 0;
  background: var(--black2);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(198,167,94,.08);
}
.stat-item {
  background: var(--black);
  padding: 32px 28px;
  text-align: center;
  transition: background .3s;
}
.stat-item:hover { background: rgba(198,167,94,.03); }
.stat-item__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .method__grid     { grid-template-columns: 1fr; gap: 56px; }
  .method__visual   { max-height: 280px; aspect-ratio: unset; }
  .pillars__grid    { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr 1fr; }
  .content-2col     { grid-template-columns: 1fr; }
  .content-2col.reverse { direction: ltr; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid    { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pillar { padding: 40px 24px 36px; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}
