/* ============================================================
   AFTARKIA — Design System
   ============================================================ */

:root {
  --cream:      #F5F0EB;
  --ink:        #1C1C1E;
  --gold:       #B8965A;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-light: #F5F0EB;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; scroll-padding-top: 90px; }
body  { background: var(--cream); color: var(--text-dark); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }

/* ── Skip link ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--white);
  padding: .4rem .9rem; border-radius: 3px; font-size: .8rem;
  z-index: 9999; transition: top var(--ease);
}
.skip-link:focus { top: .75rem; }

/* ── Global section spacing ─────────────────────────────── */
section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
/* ── Container ──────────────────────────────────────────── */
.container { max-width: 1120px; margin-inline: auto; padding-inline: 1.5rem; }

/* ── Fade-in ────────────────────────────────────────────── */
.fade { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fade.in { opacity: 1; transform: none; }
.fade.d1 { transition-delay: .08s; }
.fade.d2 { transition-delay: .16s; }
.fade.d3 { transition-delay: .24s; }
.fade.d4 { transition-delay: .32s; }
.fade.d5 { transition-delay: .40s; }

/* ── Gold rule with diamond ─────────────────────────────── */
.gold-rule {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; margin-top: .9rem;
  color: var(--gold); font-size: .7rem;
}
.gold-rule::before,
.gold-rule::after {
  content: ''; display: block;
  width: 60px; height: 1px;
  background: var(--gold); opacity: .55;
}

/* ============================================================
   1. NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--gold);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 1.5rem;
}
.nav__logo img { height: 72px; width: auto; }

.nav__links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links .lang[aria-disabled="true"] { color: #aaa; cursor: default; pointer-events: none; }

/* WhatsApp CTA in nav */
.nav__wa {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 500; letter-spacing: .05em;
  color: var(--white);
  background: var(--gold); border: 1.5px solid var(--gold);
  border-radius: 3px; white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.nav__wa:hover { background: transparent; color: var(--gold); }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; min-width: 44px; min-height: 44px;
}
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--text-dark); transition: transform var(--ease), opacity var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__logo img { height: 60px; }
}
@media (max-width: 820px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none; flex-direction: column; align-items: flex-start; gap: .75rem;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--cream); padding: .9rem 1.5rem;
    border-bottom: 1px solid var(--gold);
  }
  .nav__links.open { display: flex; }
  .nav__links a:not(.nav__wa) { display: block; padding-block: .5rem; }
}
@media (max-width: 768px) {
  .nav__logo img { height: 48px; }
}

/* ============================================================
   2. INTRO — brand statement
   ============================================================ */
.intro {
  background: var(--ink);
  padding-block: 1.75rem 1.5rem;
  text-align: center;
}
.intro__inner {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}

.intro__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 400; font-style: italic;
  color: var(--gold);
  letter-spacing: .02em;
  margin-top: .25rem;
}
.intro__sub {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 300;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,240,235,.55);
}

@media (max-width: 480px) {
  .intro { padding-block: 1.25rem 1rem; }
}

/* ============================================================
   3. PRODUCTOS — first content section
   ============================================================ */
.productos {
  background: var(--cream);
  padding-block: 1.5rem;
}

.productos__header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-label {
  display: block; margin-bottom: .4rem;
  font-family: var(--font-sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
}

.productos__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.1;
}

/* 3+3 desktop / 2-col tablet / 1-col mobile */
.productos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.prod-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-right: 1px solid rgba(184,150,90,.4);
  border-bottom: 1px solid rgba(184,150,90,.4);
  border-left: 1px solid rgba(184,150,90,.4);
  border-radius: 0 0 3px 3px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
  overflow: hidden;
  min-height: 48px;
  text-decoration: none; color: inherit;
  transition: background .25s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prod-card:hover {
  background: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  border-right-color: var(--gold);
  border-bottom-color: var(--gold);
  border-left-color: var(--gold);
}

.prod-card__img-wrap {
  margin: -1.75rem -1.5rem 1rem;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}
.prod-card__img-wrap img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.prod-card:hover .prod-card__img-wrap img { transform: scale(1.05); }

.prod-card__num {
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); opacity: .7;
  transition: opacity .25s ease;
}
.prod-card:hover .prod-card__num { opacity: 1; }

.prod-card__name {
  font-family: var(--font-serif);
  font-size: 1.45rem; font-weight: 600; color: var(--ink);
  line-height: 1.2;
  transition: color .25s ease;
}
.prod-card:hover .prod-card__name { color: var(--gold); }

.prod-card__copy {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300; color: #5a5a5a;
  line-height: 1.5; flex: 1;
  transition: color .25s ease;
}
.prod-card:hover .prod-card__copy { color: rgba(245,240,235,.6); }

.prod-card__arrow {
  font-family: var(--font-sans);
  font-size: .78rem; color: var(--gold);
  text-align: right;
  transition: letter-spacing .2s ease;
}
.prod-card:hover .prod-card__arrow { letter-spacing: .06em; }

@media (max-width: 720px) {
  .productos__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .productos { padding-block: 1.5rem; }
  .productos__header { margin-bottom: 1.25rem; }
}

/* ============================================================
   4. TRUST BAR
   ============================================================ */
.trust {
  background: #2d2d30;
  border-top: 1px solid rgba(184,150,90,.2);
  padding-block: 1rem;
  text-align: center;
}

.trust__license {
  font-family: var(--font-sans);
  font-size: .85rem; font-weight: 300; color: rgba(245,240,235,.72);
  line-height: 1.5;
}
.trust__license strong { font-weight: 500; }

.trust__divider {
  width: 48px; height: 1px;
  background: var(--gold); opacity: .5;
  margin: .55rem auto;
}

.trust__partners-label {
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.trust__partners {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300; color: rgba(245,240,235,.5);
  line-height: 1.5;
}
.trust__dot {
  color: var(--gold); margin-inline: .5rem; opacity: .7;
}

/* ============================================================
   5. CLOSING CTA
   ============================================================ */
.closing-cta {
  background: var(--ink);
  padding-block: 1.75rem 1.5rem;
  text-align: center;
}

.closing-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: .5rem;
}

.closing-cta__sub {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300;
  color: rgba(245,240,235,.5);
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}

.closing-cta__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.5rem;
  font-family: var(--font-sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: background var(--ease), color var(--ease);
}
.closing-cta__btn:hover {
  background: transparent;
  color: var(--gold);
}

@media (max-width: 480px) {
  .closing-cta { padding-block: 2rem 1.5rem; }
  .trust__partners li { font-size: .7rem; padding: .25rem .6rem; }
}

/* ============================================================
   6. PAGE HEADER (seguros, bienes-raices, etc.)
   ============================================================ */
.page-header {
  background: var(--ink);
  padding-block: clamp(1.25rem, 3.5vh, 2rem);
  text-align: center;
  display: flex; align-items: center;
}
.page-header__inner {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.page-header__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--text-light);
  line-height: 1.1;
}
.page-header__sub {
  font-family: var(--font-sans);
  font-size: clamp(.8rem, 1.4vw, .92rem);
  font-weight: 300; color: rgba(245,240,235,.68);
  letter-spacing: .03em; line-height: 1.65;
  max-width: 900px;
  text-wrap: balance;
}

/* ============================================================
   7. PRODUCT SECTIONS (seguros.html)
   ============================================================ */
.product-section {
  padding-block: 0.75rem 0.65rem;
}
.product-section--cream { background: var(--cream); }
.product-section--white { background: var(--white); }

.product-section__inner { max-width: 1000px; }

.product-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.15; margin-bottom: .4rem;
}

.product-section__rule {
  display: flex; align-items: center;
  gap: .75rem; margin-bottom: 0.5rem;
  color: var(--gold); font-size: .7rem;
}
.product-section__rule::after {
  content: ''; display: block;
  width: 60px; height: 1px;
  background: var(--gold); opacity: .55;
}

.product-section__copy {
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 300; color: var(--ink);
  line-height: 1.7; margin-bottom: .6rem;
}

.product-section__fiscal {
  font-family: var(--font-sans);
  font-size: .76rem; font-weight: 300; font-style: italic;
  color: var(--gold); line-height: 1.5;
  margin-bottom: 0.65rem;
}

.product-section__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 500;
  color: var(--gold); letter-spacing: .04em;
  transition: letter-spacing var(--ease);
}
.product-section__cta:hover { letter-spacing: .1em; }

/* ============================================================
   8. HOW WE WORK — steps (nosotros.html)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}
.step {
  padding: 1.25rem 1.5rem 1rem;
}
.step + .step {
  border-left: 1px solid rgba(184,150,90,.25);
}
.step__num {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: .35rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600; color: var(--ink);
  line-height: 1.2; margin-bottom: .5rem;
}
.step__copy {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300; color: var(--ink);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .step + .step {
    border-left: none;
    border-top: 1px solid rgba(184,150,90,.25);
  }
}

/* ============================================================
   HERO (nosotros.html)
   ============================================================ */
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes diamondPulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.4); opacity: .6; }
  100% { transform: scale(1);   opacity: 1; }
}

.hero {
  background: #1C1C1E;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}
.hero__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 100%;
}
.hero-logo {
  width: min(420px, 62%); height: auto;
  margin-block: 0;
  animation: heroFadeIn .8s ease 0s both;
}
.hero-diamond {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--gold);
  margin-top: 2rem; margin-bottom: .9rem;
  animation: heroFadeIn .6s ease .3s both,
             diamondPulse 1s ease 1.8s 1 forwards;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 700; color: var(--text-light);
  line-height: 1.3; max-width: 560px;
  animation: heroFadeIn .8s ease .6s both;
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 300;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-top: .75rem;
  animation: heroFadeIn .8s ease .9s both;
}

@media (max-width: 768px) {
  .hero { min-height: 40vh; padding: 2rem 1.5rem; }
  .hero-logo { width: 160px; }
}

/* closing CTA display variant — large bold headline (nosotros) */
.closing-cta__heading--display {
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--ink);
  text-align: center;
  padding: 3rem 2rem;
}
.contact-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.contact-hero__sub {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .1em;
  margin-top: .75rem;
}
.page-header {
  background: var(--ink);
  padding-block: 1.25rem;
  text-align: center;
}
.contacto .page-header { padding-block: 1.25rem; }
.contact-hero-logo { width: min(300px, 65%); height: auto; margin: 0 auto 0.5rem; display: block; }
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-top: 0.5rem;
}
.product-section--cream { padding-top: 0.75rem; }
.product-section--cream .contact-channels { text-align: left; }
.product-section--cream .product-section__inner { text-align: center; }
.contact-temas-label { font-family: var(--font-sans); font-size: .8rem; font-weight: 300; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.contact-main {
  background: var(--cream);
  padding-block: 1.5rem;
  text-align: center;
}
.contact-main .contact-channels {
  justify-content: center;
}
.contact-main .contact-channel {
  text-align: center;
}
.contact-divider {
  color: var(--gold);
  font-size: 1rem;
  margin: 1.5rem auto;
  display: block;
}
.contact-temas-label {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.contact-temas-grid {
  text-align: left;
  margin-top: 0;
}
.contact-section { background: var(--cream); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-channel {
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(184,150,90,.2);
  border-top: 2px solid rgba(184,150,90,.4);
  border-radius: 0 0 2px 2px;
}

.contact-channel__label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  font-weight: 500;
}

.contact-channel__value {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  line-height: 1.4;
  transition: color var(--ease);
}

.contact-channel__value--primary {
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-channel__value--primary:hover { color: var(--gold); }
.contact-channel__value:not(.contact-channel__value--primary):hover { color: var(--gold); }

.contact-channel__note {
  font-size: .72rem;
  color: rgba(28,28,30,.5);
  margin-top: .4rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.wa-fab svg { width: 26px; height: 26px; fill: #fff; }

/* ── Back to top ────────────────────────────────────────── */
.top-btn {
  position: fixed; bottom: 1.5rem; right: 5rem; z-index: 500;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(184,150,90,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease), border-color var(--ease), background var(--ease);
}
.top-btn.visible { opacity: 1; pointer-events: auto; }
.top-btn:hover { background: var(--gold); border-color: var(--gold); }
.top-btn svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--ease); }
.top-btn:hover svg { stroke: #fff; }

/* ============================================================
   HOMEPAGE HERO MAIN
   ============================================================ */
.hero-main {
  background: var(--ink);
  padding-block: clamp(1.25rem, 3.5vh, 2.25rem);
  text-align: center;
}
.hero-main__inner {
  display: flex; flex-direction: column; align-items: center;
}
.hero-main__h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.65rem;
  max-width: 820px;
  text-wrap: balance;
}
.hero-main__sub {
  font-family: var(--font-sans);
  font-size: clamp(.78rem, 1.3vw, .88rem);
  font-weight: 300;
  color: rgba(245,240,235,.55);
  line-height: 1.6;
  max-width: 660px;
  margin-bottom: 0.5rem;
  letter-spacing: .02em;
  text-wrap: balance;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero-main__sub { white-space: normal; }
}
.hero-main__bridge {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300; font-style: italic;
  color: rgba(245,240,235,.72);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.hero-main__actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.hero-main__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.75rem;
  font-family: var(--font-sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: background var(--ease), color var(--ease);
}
.hero-main__cta:hover { background: transparent; color: var(--gold); }
.hero-main__cta-secondary {
  font-family: var(--font-sans); font-size: .82rem; font-weight: 300;
  color: rgba(245,240,235,.42);
  letter-spacing: .04em;
  transition: color var(--ease);
}
.hero-main__cta-secondary:hover { color: var(--gold); }

/* ============================================================
   AUTHORITY BLOCK
   ============================================================ */
.authority {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding-block: 1.25rem 1rem;
}
.authority__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.authority__label {
  display: block;
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: #7a6035;
  margin-bottom: .6rem;
}
.authority__text {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300;
  color: var(--ink); line-height: 1.85;
}
.authority__text strong { font-weight: 500; }
.authority__access-text {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300;
  color: #5a5a5a; line-height: 1.6;
  margin-bottom: .75rem;
}
.authority__insurers {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 400;
  color: var(--ink);
  line-height: 2.2;
}

@media (max-width: 768px) {
  .authority__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   APPROACH — advisory philosophy
   ============================================================ */
.approach {
  background: var(--cream);
  padding-block: 1.25rem 1rem;
}
.approach__intro {
  max-width: 780px;
  margin-bottom: 1.25rem;
}
.approach__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.15;
  margin-top: .35rem;
  margin-bottom: .75rem;
  text-wrap: balance;
}
.approach__copy {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300;
  color: #3a3a3a; line-height: 1.85;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pillar {
  border-left: 2px solid rgba(184,150,90,.35);
  padding-left: 1.25rem;
}
.pillar__num {
  font-family: var(--font-serif);
  font-size: .95rem; font-weight: 400;
  color: var(--gold); opacity: .65;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--ink); line-height: 1.2;
  margin-bottom: .4rem;
}
.pillar__copy {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300;
  color: #5a5a5a; line-height: 1.65;
}

@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (max-width: 480px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   SERVICES — advisory-framed categories
   ============================================================ */
.services {
  background: var(--white);
  padding-block: 1.25rem 1rem;
}
.services__header {
  margin-bottom: 1.25rem;
}
.services__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.15;
  margin-top: .35rem;
  margin-bottom: .5rem;
  text-wrap: balance;
}
.services__sub {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300;
  color: #5a5a5a; line-height: 1.6;
  max-width: 640px;
}
.service-group {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 2rem;
  align-items: start;
  padding-block: 1.1rem;
  border-top: 1px solid rgba(184,150,90,.2);
}
.service-group__category {
  display: block;
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  padding-top: .2rem;
  line-height: 1.5;
}
.service-group__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.service-item {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.1rem 1.25rem 1rem;
  background: var(--cream);
  border: 1px solid rgba(184,150,90,.3);
  border-top: 3px solid rgba(184,150,90,.5);
  border-radius: 0 0 2px 2px;
  text-decoration: none; color: inherit;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-item:hover {
  background: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}
.service-item__name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink); line-height: 1.2;
  transition: color .2s ease;
}
.service-item:hover .service-item__name { color: var(--gold); }
.service-item__copy {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 300;
  color: #5a5a5a; line-height: 1.55;
  flex: 1;
  transition: color .2s ease;
}
.service-item:hover .service-item__copy { color: rgba(245,240,235,.55); }
.services__cta-row {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,150,90,.15);
  margin-top: .5rem;
  text-align: right;
}
.services__all-link {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 400;
  color: var(--gold); letter-spacing: .04em;
  transition: letter-spacing var(--ease);
}
.services__all-link:hover { letter-spacing: .1em; }

@media (max-width: 900px) {
  .service-group { grid-template-columns: 1fr; gap: .75rem; }
  .service-group__category { margin-bottom: .25rem; }
}
@media (max-width: 480px) {
  .service-group__items { grid-template-columns: 1fr; }
}

/* ============================================================
   REAL ESTATE STRIP
   ============================================================ */
.re-strip {
  background: var(--cream);
  border-top: 1px solid rgba(184,150,90,.2);
  padding-block: 1.25rem 1rem;
}
.re-strip__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.15;
  margin-top: .35rem;
  margin-bottom: .75rem;
}
.re-strip__copy {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300;
  color: #5a5a5a; line-height: 1.8;
  max-width: none;
  margin-bottom: 1rem;
}
.re-strip__link {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 400;
  color: var(--gold); letter-spacing: .04em;
  transition: letter-spacing var(--ease);
  display: inline-block;
}
.re-strip__link:hover { letter-spacing: .1em; }

/* ============================================================
   CONVERSATION — closing invitation
   ============================================================ */
.conversation {
  background: var(--ink);
  padding-block: 1.5rem 1.25rem;
  text-align: center;
}
.conversation__pre {
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.conversation__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400; font-style: italic;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: .65rem;
}
.conversation__sub {
  font-family: var(--font-sans);
  font-size: .85rem; font-weight: 300;
  color: rgba(245,240,235,.5);
  letter-spacing: .03em;
  margin-bottom: 2rem;
}
.conversation__actions {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap;
}
.conversation__wa {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.5rem;
  font-family: var(--font-sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: background var(--ease), color var(--ease);
}
.conversation__wa:hover { background: transparent; color: var(--gold); }
.conversation__contact {
  font-family: var(--font-sans); font-size: .82rem; font-weight: 300;
  color: rgba(245,240,235,.42);
  transition: color var(--ease);
}
.conversation__contact:hover { color: var(--gold); }

/* ============================================================
   FOOTER — structured 4-column
   ============================================================ */
footer { background: #1C1C1E; border-top: 1px solid rgba(184,150,90,.2); }

.footer-grid {
  display: grid;
  grid-template-columns: 160px 1fr 1fr auto;
  gap: 2.5rem;
  padding: 2.25rem 3rem;
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.footer-brand img { width: 140px; height: auto; display: block; margin-bottom: .75rem; }
.footer-brand__sub {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 300;
  color: rgba(245,240,235,.3);
  line-height: 1.75;
}

.footer-col__label {
  display: block;
  font-family: var(--font-sans);
  font-size: .6rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(184,150,90,.5);
  margin-bottom: .8rem;
}

.footer-nav ul { list-style: none; }
.footer-nav li + li { margin-top: .15rem; }
.footer-nav a {
  font-family: var(--font-sans);
  font-size: .8rem; font-weight: 300;
  color: rgba(245,240,235,.48);
  transition: color .2s ease;
  display: inline-block; padding-block: .18rem;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact-col__link {
  display: block;
  font-family: var(--font-sans);
  font-size: .8rem; font-weight: 300;
  color: rgba(245,240,235,.52);
  transition: color .2s ease;
  margin-bottom: .3rem;
}
.footer-contact-col__link:hover { color: var(--gold); }
.footer-contact-col__note {
  font-family: var(--font-sans);
  font-size: .68rem; font-weight: 300;
  color: rgba(245,240,235,.22);
  margin-top: .75rem; line-height: 1.5;
}

.footer-social-icons {
  display: flex; gap: 1rem;
  margin-bottom: 1rem;
}
.footer-social-icons a {
  color: rgba(245,240,235,.5);
  transition: color .2s ease;
  display: flex;
}
.footer-social-icons svg { width: 20px; height: 20px; }
.footer-social-icons a:hover { color: rgba(245,240,235,.9); }

.footer-cnsf {
  font-family: var(--font-sans);
  font-size: .6rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(184,150,90,.35);
  line-height: 1.5;
}

.footer-b2 {
  border-top: 1px solid rgba(184,150,90,.18);
  padding: .65rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1120px; margin-inline: auto;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: .68rem; color: rgba(184,150,90,.45);
}
.footer-credit {
  font-family: var(--font-sans);
  font-size: .78rem; color: rgba(184,150,90,.72);
  transition: color .2s ease;
}
.footer-credit:hover { color: var(--gold); text-decoration: underline; }
.footer-privacy {
  font-family: var(--font-sans);
  font-size: .64rem;
  color: rgba(245,240,235,.25);
  text-align: center;
  padding: .5rem 3rem .75rem;
  max-width: 1120px;
  margin-inline: auto;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    padding: 1.75rem 1.5rem;
  }
  .footer-b2 { padding: .65rem 1.5rem; }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
  .footer-brand img { width: 120px; }
  .footer-b2 { padding: .6rem 1.25rem; flex-direction: column; gap: .25rem; }
}

/* ============================================================
   DESKTOP LAYOUT — 2-column compositions
   ============================================================ */

/* Product sections with title: heading left, content right */
.product-section__inner:has(.product-section__title) {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 3rem;
  row-gap: 0;
  max-width: none;
  text-align: left;
  align-items: start;
}
.product-section__inner:has(.product-section__title) .product-section__title { grid-column: 1; }
.product-section__inner:has(.product-section__title) .product-section__rule  { grid-column: 1; margin-top: .35rem; }
.product-section__inner:has(.product-section__title) .product-section__copy  { grid-column: 2; }
.product-section__inner:has(.product-section__title) .product-section__fiscal { grid-column: 2; }
.product-section__inner:has(.product-section__title) .product-section__cta   { grid-column: 2; margin-top: .25rem; }

/* Re-strip: heading left, copy + link right */
.re-strip > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  align-items: start;
}
.re-strip__copy { grid-column: 2; }
.re-strip__link { grid-column: 2; }

/* ── Mobile hero breathing room ──────────────────────────── */
@media (max-width: 768px) {
  .hero-main { padding-block: 1.5rem 1.25rem; }
  .hero-main__label { margin-bottom: 1rem; }
  .hero-main__tags { display: none; }
  .authority__inner { gap: 1.5rem; }
  .approach { padding-block: 2rem 1.75rem; }
  .approach__intro { margin-bottom: 2rem; }
  .services { padding-block: 2rem 1.75rem; }
  .services__header { margin-bottom: 1.5rem; }
  .re-strip { padding-block: 1.75rem 1.5rem; }
  .conversation { padding-block: 2.25rem 2rem; }
  .product-section__inner:has(.product-section__title) { display: block; }
  .re-strip > .container { display: block; }
  .re-strip__copy,
  .re-strip__link { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-main__h1 { font-size: 1.95rem; }
  .hero-main__actions { flex-direction: column; gap: 1rem; }
  .hero-main__cta-secondary { font-size: .8rem; }
}
