/* Caballero De León — Built CSS */

/* === base/variables.css === */
:root {
  --white: #ffffff;
  --paper: #f8f6f2;
  --off-white: #f3f0ea;
  --warm-white: #efebe3;
  --stone: #ddd2c2;
  --gold-soft: #c8a97e;
  --gold-main: #c69c6d;
  --gold-deep: #a77d4f;
  --ink: #181818;
  --charcoal: #242320;
  --grey-700: #4c4a44;
  --grey-500: #5c584f;
  --grey-200: #d7cec1;
  --deep-navy: #1a2230;
  --deep-blue-grey: #262e3a;
  --shadow-soft: 0 28px 64px rgba(24, 24, 24, 0.08);
  --shadow-card: 0 18px 36px rgba(18, 18, 18, 0.07);
  --radius-xs: 14px;
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 42px;
  --container: min(1200px, calc(100vw - 40px));
  --container-wide: min(1360px, calc(100vw - 40px));
  --transition-fast: 170ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 520ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* === base/reset.css === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 156, 109, 0.14), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(44, 56, 77, 0.09), transparent 26%),
    linear-gradient(180deg, #fcfbf9 0%, #f8f5ef 46%, #f3eee6 100%);
  min-width: 320px;
  font-size: 1.0625rem;
  letter-spacing: 0.005em;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  border-radius: 18px;
  border: 1px solid rgba(76, 76, 72, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 15px 18px;
  min-height: 48px;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(198, 156, 109, 0.7);
  box-shadow: 0 0 0 4px rgba(198, 156, 109, 0.12);
}

textarea {
  resize: vertical;
  min-height: 160px;
}


/* === base/typography.css === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4a4640;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.24), rgba(198, 156, 109, 0.96));
}

.section-title {
  margin: 0 0 18px;
  max-width: 24ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}

.section-header.centered .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 20ch;
}

.section-copy,
.lead {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.78;
  color: var(--grey-700);
}

.lead,
.section-copy,
.card-copy,
.bio-card p,
.support-card p,
.comparison-card li,
.list-item p,
.faq-answer p,
.office-card p,
.contact-panel p {
  font-size: 1.03rem;
  line-height: 1.78;
}

.section-copy strong,
.lead strong {
  color: var(--ink);
}

.muted {
  color: #5c584f;
}

.gold {
  color: var(--gold-deep);
}


/* === base/utilities.css === */
.shell {
  width: var(--container);
  margin: 0 auto;
}

.shell-wide {
  width: var(--container-wide);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

main > .section {
  padding: clamp(92px, 9vw, 130px) 0;
  border-top: 1px solid rgba(24, 24, 24, 0.04);
}

.section.compact {
  padding: 84px 0;
}

main > .section.compact {
  padding: clamp(74px, 7.5vw, 102px) 0;
}

main > .section:nth-of-type(even) {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.56), rgba(243, 238, 229, 0.66));
}

.section-header {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.centered .eyebrow {
  justify-content: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-wrap {
  overflow: clip;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 999;
}

.skip-link:focus {
  top: 10px;
}

.hidden-mobile {
  display: inline-flex;
}



/* === components/buttons.css === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #172131, #2a3442);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(18, 28, 43, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(18, 28, 43, 0.27);
}

.btn-secondary {
  border-color: rgba(83, 78, 68, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(198, 156, 109, 0.4);
  box-shadow: 0 18px 32px rgba(23, 23, 23, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  transition: transform var(--transition-fast);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}


/* === components/cards.css === */
.credential-card,
.glass-card,
.info-card,
.service-card,
.metric-card,
.process-step,
.faq-card,
.contact-panel,
.pillar-card,
.bio-card,
.list-card,
.comparison-card,
.support-card,
.office-card:not(.office-card--mvd):not(.office-card--pde),
.form-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(24, 24, 24, 0.1);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 236, 0.94)),
    linear-gradient(160deg, rgba(198, 156, 109, 0.08), transparent 44%);
  backdrop-filter: blur(9px);
  box-shadow: var(--shadow-card);
}

.credential-card {
  min-height: 136px;
  padding: 22px 22px 20px;
}

.credential-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.credential-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--grey-700);
}

.info-card,
.pillar-card,
.service-card,
.metric-card,
.bio-card,
.support-card,
.comparison-card,
.list-card,
.contact-panel,
.process-step {
  padding: 28px;
}

.info-card::before,
.pillar-card::before,
.service-card::before,
.metric-card::before,
.bio-card::before,
.support-card::before,
.comparison-card::before,
.list-card::before,
.contact-panel::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(198, 156, 109, 0.08), transparent 42%);
  pointer-events: none;
}

.card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(198, 156, 109, 0.13);
  color: var(--gold-deep);
  font-size: 1.05rem;
  font-weight: 800;
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.card-copy {
  margin: 0;
  color: var(--grey-700);
  line-height: 1.75;
}

.card-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.65;
  color: var(--grey-700);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--gold-main);
}

.dark-panel {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.2), transparent 26%),
    linear-gradient(140deg, rgba(29, 36, 48, 0.98), rgba(42, 49, 58, 0.94));
}

.dark-panel .section-title,
.dark-panel .card-title,
.dark-panel h2,
.dark-panel h3,
.dark-panel h4 {
  color: var(--white);
}

.dark-panel .section-copy,
.dark-panel .card-copy,
.dark-panel p,
.dark-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.dark-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.dark-panel .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(198, 156, 109, 0.92));
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 36, 48, 0.06), rgba(29, 36, 48, 0.28));
}

.metric-value {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: var(--ink);
}

.metric-card .card-title {
  margin-bottom: 8px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card .card-copy {
  margin-bottom: 18px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

.service-card,
.info-card,
.pillar-card,
.metric-card,
.bio-card,
.support-card,
.comparison-card,
.list-card,
.process-step {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover,
.info-card:hover,
.pillar-card:hover,
.metric-card:hover,
.bio-card:hover,
.support-card:hover,
.comparison-card:hover,
.list-card:hover,
.process-step:hover {
  border-color: rgba(198, 156, 109, 0.28);
}

.support-card h3,
.contact-panel h3,
.list-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.support-card p,
.contact-panel p,
.list-card p {
  margin: 0;
  line-height: 1.78;
  color: var(--grey-700);
}

.faq-card {
  padding: 12px 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.faq-button span:last-child {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(198, 156, 109, 0.12);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-item.is-open .faq-button span:last-child {
  transform: rotate(45deg);
  background: rgba(198, 156, 109, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), opacity var(--transition-base), padding-bottom var(--transition-base);
  opacity: 0;
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  padding-bottom: 22px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.78;
  color: var(--grey-700);
}

body[data-page="faq"] .faq-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

body[data-page="faq"] .faq-card {
  height: 100%;
}

body[data-page="faq"] .faq-button span:last-child {
  background: linear-gradient(160deg, rgba(198, 156, 109, 0.24), rgba(198, 156, 109, 0.14));
  border: 1px solid rgba(198, 156, 109, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body[data-page="faq"] .faq-item.is-open .faq-button span:last-child {
  background: linear-gradient(160deg, rgba(198, 156, 109, 0.34), rgba(198, 156, 109, 0.2));
  border-color: rgba(198, 156, 109, 0.38);
}

.comparison-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.comparison-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--grey-700);
}

.comparison-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-size: 0.9rem;
}

.form-card {
  padding: 34px;
  border-radius: 34px;
}

.cta-banner {
  color: var(--white);
}

.cta-banner .section-title {
  color: var(--white);
}

.cta-banner .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cta-banner .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(198, 156, 109, 0.92));
}

.office-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.office-card--mvd {
  background: url('../images/photo-montevideo.jpg') center / cover no-repeat fixed;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-card--pde {
  background: url('../images/photo-punta-del-este.jpg') center / cover no-repeat fixed;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.28) 0%, rgba(17, 17, 17, 0.72) 100%);
  transition: background var(--transition-base);
}

.office-card:hover .office-card-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.34) 0%, rgba(17, 17, 17, 0.78) 100%);
}

.office-card-content {
  position: relative;
  z-index: 1;
}

.office-card.office-card--mvd .eyebrow,
.office-card.office-card--pde .eyebrow {
  color: var(--gold-soft);
}

.office-card.office-card--mvd h3,
.office-card.office-card--pde h3 {
  color: #ffffff;
}

.office-card.office-card--mvd p,
.office-card.office-card--pde p {
  color: rgba(255, 255, 255, 0.82);
}

.office-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.office-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--grey-700);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--grey-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-chip strong {
  color: var(--ink);
}

.site-footer {
  padding: 44px 0 24px;
}

.footer-card {
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(29, 36, 48, 0.98), rgba(42, 49, 58, 0.96)),
    linear-gradient(145deg, rgba(198, 156, 109, 0.12), transparent 42%);
  color: var(--white);
  box-shadow: 0 24px 50px rgba(23, 23, 23, 0.18);
}

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

.footer-brand img {
  width: 220px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}


/* === components/forms.css === */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.form-helper {
  margin: 18px 0 0;
  color: var(--grey-500);
  font-size: 0.93rem;
  line-height: 1.7;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(198, 156, 109, 0.12);
  color: var(--ink);
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.contact-grid .form-card {
  grid-column: 1 / -1;
  max-width: 680px;
  justify-self: center;
}

.contact-details-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.contact-detail {
  position: relative;
  overflow: hidden;
  padding: 34px 30px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--deep-navy);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.18);
  transition:
    background var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.contact-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(198, 156, 109, 0.1), transparent 48%);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-slow);
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(198, 156, 109, 0.22);
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.1);
  transform: translateY(-4px);
}

.contact-detail:hover::before {
  background: linear-gradient(145deg, rgba(198, 156, 109, 0.06), transparent 48%);
}

.contact-detail-number {
  display: block;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(198, 156, 109, 0.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color var(--transition-slow), border-color var(--transition-slow);
}

.contact-detail:hover .contact-detail-number {
  color: var(--gold-main);
  border-bottom-color: rgba(198, 156, 109, 0.18);
}

.contact-detail h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  transition: color var(--transition-slow);
}

.contact-detail:hover h3 {
  color: var(--ink);
}

.contact-detail p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition-slow);
}

.contact-detail:hover p {
  color: var(--grey-700);
}


/* === components/faq.css === */
/* ========================================================================== */
/* components/faq.css — FAQ basic + FAQ premium (unified)                    */
/* ========================================================================== */

/* ── FAQ basic ── */

.faq-card {
  padding: 12px 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.faq-button span:last-child {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(198, 156, 109, 0.12);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-item.is-open .faq-button span:last-child {
  transform: rotate(45deg);
  background: rgba(198, 156, 109, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), opacity var(--transition-base), padding-bottom var(--transition-base);
  opacity: 0;
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  padding-bottom: 22px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.78;
  color: var(--grey-700);
}

/* ── Premium layer overrides (from ~3500+) ── */

.faq-grid {
  gap: 24px;
  align-items: start;
}

.faq-card {
  padding: 14px 30px;
  border-radius: 30px;
}

.faq-button {
  padding: 22px 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-button span:last-child {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  background: rgba(198, 156, 109, 0.16);
}

.faq-item {
  border-color: rgba(31, 31, 31, 0.08);
}

.faq-item.is-open .faq-button {
  color: var(--gold-deep);
}

.faq-item.is-open .faq-button span:last-child {
  background: rgba(198, 156, 109, 0.27);
}

.faq-answer {
  transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  padding-right: 8px;
}

/* ── FAQ section premium ── */

.faq-section-premium {
  --faq-icon-size: 42px;
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(198, 156, 109, 0.14), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(29, 36, 48, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f1ea 0%, #eee8df 100%);
}

.faq-section-premium::before,
.faq-section-premium::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 125, 79, 0.28), transparent);
}

.faq-section-premium::before {
  top: 0;
}

.faq-section-premium::after {
  bottom: 0;
}

.faq-section-premium .shell {
  position: relative;
  z-index: 1;
}

.faq-section-premium .faq-grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.faq-section-premium .faq-unified {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 38px;
  border: 1px solid rgba(29, 36, 48, 0.08);
  background:
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(248, 244, 237, 0.98), rgba(239, 231, 219, 0.96));
  box-shadow:
    0 30px 66px rgba(22, 22, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.faq-section-premium .faq-unified::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(29, 36, 48, 0.04), transparent 20%);
  pointer-events: none;
}

.faq-section-premium .faq-unified > * {
  position: relative;
  z-index: 1;
}

.faq-section-premium .faq-intro {
  position: relative;
  width: min(100%, 880px);
  margin: 0 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(32px, 3.4vw, 42px) clamp(32px, 4.2vw, 52px) 24px;
  border-bottom: 1px solid rgba(29, 36, 48, 0.1);
  text-align: center;
}

.faq-section-premium .faq-intro .eyebrow {
  justify-content: center;
  color: rgba(74, 64, 52, 1);
}

.faq-section-premium .faq-intro .eyebrow::before {
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.22), rgba(198, 156, 109, 0.92));
}

.faq-section-premium .faq-intro .section-title {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.88rem, 2.15vw, 2.25rem);
  line-height: 1.08;
  text-align: center;
  color: #171717;
}

.faq-section-premium .faq-intro .section-copy {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(68, 60, 51, 1);
  text-align: center;
}

.faq-section-premium .faq-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  max-width: 760px;
  margin: 6px auto 0;
}

.faq-section-premium .faq-intro-points span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(29, 36, 48, 0.08);
  color: rgba(68, 60, 51, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-section-premium .faq-intro-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-main);
  flex-shrink: 0;
}

.faq-section-premium .faq-cta-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 24px 0 0;
}

.faq-section-premium .faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 34px rgba(22, 22, 22, 0.08);
  color: var(--ink);
}

.faq-section-premium .faq-cta-link:hover,
.faq-section-premium .faq-cta-link:focus-visible {
  border-color: rgba(198, 156, 109, 0.5);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 42px rgba(22, 22, 22, 0.12);
}

.faq-section-premium .faq-card {
  position: relative;
  padding: 0 clamp(24px, 3vw, 36px) clamp(18px, 2.6vw, 28px);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.faq-section-premium .faq-item {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 0;
  background: transparent;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.faq-section-premium .faq-item:last-child {
  margin-bottom: 0;
}

.faq-section-premium .faq-item:hover {
  transform: none;
  border-color: rgba(198, 156, 109, 0.34);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.faq-section-premium .faq-item:hover .faq-button {
  background:
    linear-gradient(90deg, rgba(198, 156, 109, 0.12), rgba(198, 156, 109, 0.02));
  color: var(--gold-deep);
}

.faq-section-premium .faq-item:hover .faq-question {
  transform: scale(1.02);
}

.faq-section-premium .faq-item:hover .faq-icon {
  border-color: rgba(198, 156, 109, 0.46);
  background:
    linear-gradient(160deg, rgba(250, 245, 237, 0.98), rgba(242, 233, 219, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 30px rgba(23, 23, 23, 0.1);
}

.faq-section-premium .faq-item:hover .faq-icon::before,
.faq-section-premium .faq-item:hover .faq-icon::after {
  background: var(--gold-deep);
}

.faq-section-premium .faq-item.is-open {
  border-color: rgba(198, 156, 109, 0.38);
  background:
    linear-gradient(90deg, rgba(198, 156, 109, 0.12), rgba(198, 156, 109, 0.03));
  box-shadow: none;
}

.faq-section-premium .faq-button {
  position: relative;
  gap: 22px;
  padding: 24px 10px 22px 4px;
  align-items: center;
  border-radius: 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.faq-section-premium .faq-question {
  flex: 1;
  padding-top: 2px;
  transform-origin: left center;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.faq-section-premium .faq-icon {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 var(--faq-icon-size);
  width: var(--faq-icon-size);
  min-width: var(--faq-icon-size);
  max-width: var(--faq-icon-size);
  height: var(--faq-icon-size);
  min-height: var(--faq-icon-size);
  max-height: var(--faq-icon-size);
  border-radius: 15px;
  border: 1px solid rgba(198, 156, 109, 0.24);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 227, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 10px 24px rgba(23, 23, 23, 0.08);
  transition:
    transform var(--transition-base),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.faq-section-premium .faq-icon::before,
.faq-section-premium .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--gold-deep);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base), opacity var(--transition-fast), background-color var(--transition-fast);
}

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

.faq-section-premium .faq-item.is-open .faq-button {
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(198, 156, 109, 0.18), rgba(198, 156, 109, 0.1));
}

.faq-section-premium .faq-item.is-open .faq-icon {
  border-color: rgba(198, 156, 109, 0.44);
  background:
    linear-gradient(160deg, rgba(250, 245, 237, 0.98), rgba(242, 233, 219, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 30px rgba(23, 23, 23, 0.1);
}

.faq-section-premium .faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-section-premium .faq-answer {
  opacity: 0;
  transform: translateY(-8px);
  padding: 0 24px 0;
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 320ms ease;
}

.faq-section-premium .faq-item.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 24px;
}

.faq-section-premium .faq-answer p {
  padding-right: 56px;
  color: rgba(68, 60, 51, 0.88);
}


/* === components/grids.css === */
.trust-grid,
.pillar-grid,
.services-grid,
.metrics-grid,
.bio-grid,
.support-grid,
.faq-grid,
.comparison-grid,
.contact-grid,
.offices-grid,
.module-grid,
.details-grid,
.story-grid,
.case-grid,
.stats-inline {
  display: grid;
  gap: 22px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(35, 35, 35, 0.08);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(245, 241, 234, 0.76)),
    radial-gradient(circle at top left, rgba(198, 156, 109, 0.12), transparent 28%);
}

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

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

.services-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-grid,
.support-grid,
.module-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bio-grid,
.contact-grid,
.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

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

.stats-inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-step .card-label {
  width: auto;
  min-width: 56px;
  padding: 0 18px;
  border-radius: 999px;
}

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


/* === layout/header.css === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 8px 0 0;
  transition: padding var(--transition-fast);
}

.site-header.scrolled {
  padding: 4px 0 0;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  padding: 9px 16px;
  border-radius: 22px;
  border: 1px solid #263242;
  background: #111823;
  backdrop-filter: none;
  box-shadow: 0 16px 34px rgba(5, 8, 12, 0.36);
  transition:
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-link {
  flex-shrink: 0;
}

.brand-link img {
  width: 194px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-item.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    letter-spacing var(--transition-fast);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: var(--gold-main);
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform var(--transition-fast);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: #1a2430;
  border-color: #344356;
  transform: translateY(-1px);
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: #ffffff;
}

.nav-trigger {
  gap: 10px;
}

.nav-trigger::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  margin-top: -2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}

.nav-trigger::after {
  left: 16px;
  right: 30px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 50;
  min-width: 320px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151d28;
  box-shadow: 0 16px 40px rgba(4, 7, 11, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown .nav-dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  min-height: auto;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  white-space: normal;
  transition: background-color 160ms ease;
}

.nav-dropdown .nav-dropdown-item::after {
  display: none;
}

.nav-dropdown-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
}

.nav-dropdown-desc {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.nav-dropdown .nav-dropdown-item:hover,
.nav-dropdown .nav-dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  transform: none;
}

.nav-dropdown .nav-dropdown-item:hover .nav-dropdown-title {
  color: #fff;
}

.nav-dropdown .nav-dropdown-item:hover .nav-dropdown-desc {
  color: rgba(255, 255, 255, 0.72);
}

.nav-dropdown .nav-dropdown-item.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown .nav-dropdown-item.is-active .nav-dropdown-title {
  color: #fff;
}

.nav-item.has-submenu:hover .nav-dropdown,
.nav-item.has-submenu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item.has-submenu:hover .nav-trigger::before,
.nav-item.has-submenu:focus-within .nav-trigger::before {
  transform: rotate(225deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 220ms ease, border-color 220ms ease;
}

.lang-flag svg {
  display: block;
  border-radius: 2px;
}

.lang-flag:hover,
.lang-flag:focus-visible {
  opacity: 0.9;
}

.lang-flag--active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
}

.header-actions .btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--deep-navy), var(--deep-blue-grey));
  box-shadow: 0 14px 28px rgba(29, 36, 48, 0.18);
}

.header-actions .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.header-actions .btn-primary > span {
  position: relative;
  z-index: 1;
}

.header-actions .btn-primary:hover,
.header-actions .btn-primary:focus-visible {
  color: var(--white);
  border-color: rgba(199, 161, 110, 0.5);
  box-shadow: 0 18px 36px rgba(167, 125, 79, 0.24);
  transform: translateY(-1px);
}

.header-actions .btn-primary:hover::before,
.header-actions .btn-primary:focus-visible::before {
  opacity: 1;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(29, 36, 48, 0.18);
}

.menu-toggle-line {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle-line::before,
.menu-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition-fast), top var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle-line::before {
  top: -6px;
}

.menu-toggle-line::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::after {
  top: 0;
  transform: rotate(-45deg);
}

body[data-page="home"] .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 8px 0;
  background: linear-gradient(180deg, rgba(7, 11, 17, 0.48), rgba(7, 11, 17, 0));
}

body[data-page="home"] .site-header.scrolled {
  padding: 4px 0;
  background: none;
}

body[data-page="home"] .header-bar {
  border-color: #263242;
  background: #111823;
  box-shadow: 0 16px 34px rgba(5, 8, 12, 0.36);
  backdrop-filter: none;
}

body[data-page="home"] .site-header .brand-link img {
  filter: brightness(0) invert(1);
}

body[data-page="home"] .site-header.scrolled .brand-link img {
  filter: none;
}

body[data-page="home"] .site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a:focus-visible,
body[data-page="home"] .site-nav a.is-active {
  background: #1a2430;
  border-color: #344356;
  color: #ffffff;
}

body[data-page="home"] .lang-flag--active {
  border-color: rgba(255, 255, 255, 0.4);
}

.site-header.scrolled .header-bar {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(23, 23, 23, 0.09);
  box-shadow: 0 8px 32px rgba(23, 23, 23, 0.1), 0 2px 8px rgba(23, 23, 23, 0.06);
  backdrop-filter: blur(12px);
}

.site-header.scrolled .brand-link img {
  filter: none;
}

.site-header.scrolled .site-nav a {
  color: rgba(23, 23, 23, 0.72);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible,
.site-header.scrolled .site-nav a.is-active {
  background: rgba(23, 23, 23, 0.06);
  border-color: rgba(23, 23, 23, 0.14);
  color: var(--ink);
}

.site-header.scrolled .site-nav a.is-active::after {
  background: var(--gold-main);
}

.site-header.scrolled .nav-dropdown {
  background: #fff;
  border-color: rgba(23, 23, 23, 0.08);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.12);
}

.site-header.scrolled .nav-dropdown .nav-dropdown-item:hover,
.site-header.scrolled .nav-dropdown .nav-dropdown-item:focus-visible {
  background: rgba(23, 23, 23, 0.04);
}

.site-header.scrolled .nav-dropdown .nav-dropdown-title {
  color: var(--ink);
}

.site-header.scrolled .nav-dropdown .nav-dropdown-desc {
  color: rgba(23, 23, 23, 0.58);
}

.site-header.scrolled .nav-dropdown .nav-dropdown-item:hover .nav-dropdown-title {
  color: var(--ink);
}

.site-header.scrolled .nav-dropdown .nav-dropdown-item:hover .nav-dropdown-desc {
  color: rgba(23, 23, 23, 0.68);
}

.site-header.scrolled .lang-flag--active {
  border-color: rgba(23, 23, 23, 0.2);
}

.site-header.scrolled .header-actions .btn-primary {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  border-color: rgba(167, 125, 79, 0.3);
  box-shadow: 0 8px 20px rgba(167, 125, 79, 0.18);
}

.site-header.scrolled .header-actions .btn-primary:hover,
.site-header.scrolled .header-actions .btn-primary:focus-visible {
  box-shadow: 0 14px 28px rgba(167, 125, 79, 0.28);
}

.site-header.scrolled .menu-toggle {
  color: var(--ink);
  background: rgba(23, 23, 23, 0.06);
  box-shadow: none;
}


/* === layout/hero.css === */
.hero {
  padding: 24px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(38px, 4vw, 58px);
  align-items: center;
}

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

.hero-title {
  margin: 0 0 22px;
  max-width: 17ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.85rem, 4.9vw, 4.45rem);
  line-height: 0.95;
  letter-spacing: -0.038em;
  font-weight: 500;
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 58ch;
  margin-bottom: 30px;
  font-size: 1.12rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badge {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(83, 78, 68, 0.18);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey-700);
}

.hero-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  --hero-parallax-y: 0px;
  position: relative;
  overflow: hidden;
  min-height: 690px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(22, 30, 42, 0.96), rgba(38, 48, 62, 0.86));
  box-shadow: 0 30px 86px rgba(20, 20, 20, 0.22);
}

.visual-frame img {
  position: absolute;
  inset: -42px 0;
  width: 100%;
  height: calc(100% + 84px);
  object-fit: cover;
  opacity: 0.78;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.035);
  will-change: transform;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(19, 19, 19, 0.46)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.34), transparent 34%);
}

.floating-panel {
  position: absolute;
  right: -28px;
  bottom: 28px;
  width: min(368px, calc(100% - 16px));
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.22);
  backdrop-filter: blur(16px);
}

.floating-panel .eyebrow {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 14px;
}

.floating-panel .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(198, 156, 109, 0.9));
}

.floating-panel h2,
.floating-panel h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  line-height: 1.06;
  font-weight: 500;
}

.floating-panel p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--grey-500);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-main);
}

.page-hero {
  padding: 28px 0 84px;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.page-hero .visual-frame {
  min-height: 540px;
}

.page-hero .hero-title {
  max-width: 24ch;
  font-size: clamp(2.05rem, 3.4vw, 2.95rem);
  line-height: 1.02;
}

body[data-page="faq"] .page-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body[data-page="faq"] .page-hero {
  padding-bottom: 40px;
}

body[data-page="faq"] .page-hero .hero-title {
  max-width: 28ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

body[data-page="faq"] .page-hero .hero-title,
body[data-page="faq"] .page-hero .hero-copy .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body[data-page="faq"] .page-hero + .section.compact {
  padding-top: 36px;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.86rem;
  color: var(--grey-500);
}

.breadcrumbs span {
  color: var(--gold-deep);
}

.list-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.list-item-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(198, 156, 109, 0.14);
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.list-item h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.list-item p {
  margin: 0;
  line-height: 1.7;
  color: var(--grey-700);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 34px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.split-copy {
  max-width: 620px;
}

.quote-block {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 2px solid rgba(198, 156, 109, 0.4);
  color: var(--grey-700);
  font-size: 1.03rem;
  line-height: 1.85;
}


/* === layout/footer.css === */
/* ========================================================================== */
/* layout/footer.css — Site footer (base + premium merged)                   */
/* ========================================================================== */

/* ── Footer container ── */

.site-footer {
  padding: 32px 0 18px;
}

/* ── Footer card ── */

.footer-card {
  padding: clamp(22px, 2.5vw, 30px);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      -40deg,
      #161d29 0%,
      #171f2b 30%,
      #18202d 50%,
      #171f2b 70%,
      #161d29 100%
    );
  background-size: 240% 240%;
  animation: footer-glow 36s ease infinite;
  color: var(--white);
  box-shadow: 0 24px 50px rgba(23, 23, 23, 0.18);
}

/* ── Footer grid ── */

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
  align-items: start;
}

/* ── Brand column ── */

.footer-brand {
  max-width: 310px;
}

.footer-brand img {
  width: 180px;
  margin-top: 8px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) sepia(0.35) brightness(0.82);
}

.footer-brand p {
  margin: 0;
  font-size: 0.84rem;
  max-width: 28ch;
  line-height: 1.65;
}

/* ── Columns ── */

.footer-column {
  width: 100%;
}

.footer-column a {
  transition: color var(--transition-fast);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0;
}

.footer-column li + li {
  margin-top: 0;
}

.footer-column h3 {
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-column a,
.footer-brand p {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

/* ── Contact column ── */

.footer-column-contact {
  justify-self: stretch;
  width: 100%;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-link,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  line-height: 1.55;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  font-size: 2rem;
  color: #ffffff;
  line-height: 1;
}

/* ── Footer contact SVG icons ── */

.footer-contact-icon svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/* ── Bottom bar ── */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}


/* === pages/home.css === */
body[data-page="home"] .hero-home-cinematic {
  padding: 0;
}

.hero-full-bleed {
  width: 100%;
  margin: 0;
}

.home-hero-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  border-radius: 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "content"
    "highlights";
  align-items: end;
  row-gap: 22px;
  padding: clamp(136px, 16vh, 186px) clamp(24px, 3.6vw, 42px) clamp(28px, 3vw, 36px);
  background: linear-gradient(140deg, rgba(15, 21, 32, 0.98), rgba(25, 34, 47, 0.92));
  box-shadow: inset 0 -70px 120px rgba(10, 14, 21, 0.32);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.88;
  transform: scale(1.02);
}

.home-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(103deg, rgba(8, 12, 19, 0.88) 8%, rgba(12, 16, 25, 0.74) 44%, rgba(15, 21, 31, 0.62) 100%),
    radial-gradient(circle at 84% 8%, rgba(198, 156, 109, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(6, 10, 16, 0.44));
}

.home-hero-grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.22;
}

.home-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: var(--white);
}

.home-hero-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 48px), 920px);
  max-width: 920px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.home-hero-content .eyebrow::before {
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.24), rgba(198, 156, 109, 1));
}

body[data-page="home"] .hero-home-cinematic .hero-title {
  margin: 0 auto 18px;
  max-width: 30ch;
  color: var(--white);
  font-size: clamp(2.5rem, 3.4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-align: center;
}

.home-hero-content .lead {
  max-width: 44ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.68;
  text-align: center;
}

.home-hero-content .btn-row {
  align-self: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero-home-cinematic .btn-primary {
  background: linear-gradient(135deg, #c49b6d, #a97741);
  color: #1b1b1b;
  box-shadow: 0 14px 28px rgba(154, 110, 58, 0.34);
  animation: heroPhoneRing 2.8s ease-in-out 2.1s infinite;
  transform-origin: center center;
}

.hero-home-cinematic .btn-primary:hover,
.hero-home-cinematic .btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(154, 110, 58, 0.42);
}

@keyframes heroPhoneRing {
  0%,
  72%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  76% {
    transform: translate3d(-1px, 0, 0) rotate(-2.6deg) scale(1.015);
  }

  80% {
    transform: translate3d(1px, 0, 0) rotate(2.8deg) scale(1.02);
  }

  84% {
    transform: translate3d(-1px, 0, 0) rotate(-2.4deg) scale(1.017);
  }

  88% {
    transform: translate3d(1px, 0, 0) rotate(2deg) scale(1.012);
  }
}

.hero-home-cinematic .btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.hero-home-cinematic .btn-secondary:hover,
.hero-home-cinematic .btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
}

.home-hero-highlights {
  position: relative;
  grid-area: highlights;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  perspective: 1500px;
}

.home-hero-scribble {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 18px;
  height: 150px;
  z-index: 0;
  opacity: 0.78;
  pointer-events: none;
  animation: heroScribbleFloat 7.6s ease-in-out 3s infinite alternate;
}

.home-hero-scribble svg {
  width: 100%;
  height: 100%;
}

.home-hero-scribble path {
  fill: none;
  stroke: rgba(224, 204, 176, 0.52);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  filter: drop-shadow(0 0 10px rgba(198, 156, 109, 0.12));
  animation: heroScribbleDraw 1900ms cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes heroScribbleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes heroScribbleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -6px, 0) scale(1.015);
  }

  100% {
    transform: translate3d(0, 4px, 0) scale(0.995);
  }
}

.home-hero-highlight {
  min-height: 132px;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow:
    0 1px 2px rgba(10, 14, 20, 0.04),
    0 8px 24px rgba(10, 14, 20, 0.06),
    0 24px 52px rgba(10, 14, 20, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-highlight:hover {
  transform: translateY(-3px) translate3d(0,0,0);
  box-shadow:
    0 1px 2px rgba(10, 14, 20, 0.03),
    0 12px 32px rgba(10, 14, 20, 0.08),
    0 28px 60px rgba(10, 14, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-hero-highlight:nth-of-type(2),
.home-hero-highlight:nth-of-type(4) {
  background: linear-gradient(165deg, rgba(210, 175, 130, 0.82), rgba(190, 148, 98, 0.78));
  border-color: rgba(198, 156, 109, 0.35);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow:
    0 1px 2px rgba(10, 14, 20, 0.04),
    0 8px 24px rgba(140, 100, 50, 0.10),
    0 24px 52px rgba(10, 14, 20, 0.06),
    inset 0 1px 0 rgba(255, 240, 215, 0.45);
}

.home-hero-highlight:nth-of-type(2):hover,
.home-hero-highlight:nth-of-type(4):hover {
  box-shadow:
    0 1px 2px rgba(10, 14, 20, 0.03),
    0 12px 32px rgba(140, 100, 50, 0.14),
    0 28px 60px rgba(10, 14, 20, 0.07),
    inset 0 1px 0 rgba(255, 240, 215, 0.55);
}

.home-hero-highlight strong {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 12px;
  color: #1a1814;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(198, 156, 109, 0.22);
}

.home-hero-highlight p {
  margin: 0;
  color: rgba(42, 38, 32, 0.78);
  font-size: 0.88rem;
  line-height: 1.62;
  letter-spacing: 0.005em;
}

.home-hero-highlight:nth-of-type(2) strong,
.home-hero-highlight:nth-of-type(4) strong {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.home-hero-highlight:nth-of-type(2) p,
.home-hero-highlight:nth-of-type(4) p {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero-band {
  margin-top: -1px;
  background: linear-gradient(180deg, #d9d6cf 0%, #e5e1da 100%);
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.home-hero-band .shell-wide {
  display: flex;
  align-items: center;
}

.home-hero-institutional {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(240px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 16px 0;
  color: var(--ink);
}

.home-hero-institutional .eyebrow {
  justify-content: flex-start;
  margin-bottom: 0;
  color: rgba(23, 23, 23, 0.72);
  white-space: nowrap;
}

.home-hero-institutional .eyebrow::before {
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.25), rgba(198, 156, 109, 1));
}

/* ── Trust section — homepage light override ── */
body[data-page="home"] .trust-section {
  color: var(--ink);
  background: var(--bg, #faf9f7);
}

body[data-page="home"] .trust-section::before,
body[data-page="home"] .trust-section::after {
  display: none;
}

body[data-page="home"] .trust-section .eyebrow {
  color: #615d56;
}

body[data-page="home"] .trust-section .section-title {
  color: var(--ink);
}

body[data-page="home"] .trust-section .section-copy {
  color: var(--grey-700);
}

body[data-page="home"] .trust-section .trust-panel {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 23, 23, 0.08);
}

body[data-page="home"] .trust-section .trust-kicker {
  color: var(--grey-700);
}

body[data-page="home"] .trust-section .trust-card-title {
  color: var(--ink);
}

body[data-page="home"] .trust-section .trust-card-copy {
  color: var(--grey-700);
}

body[data-page="home"] .trust-section .trust-icon svg {
  stroke: var(--ink);
}

.home-hero-institutional h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.16rem, 1.45vw, 1.38rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-align: left;
  color: #161616;
}

.home-hero-institutional p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.9rem;
  line-height: 1.56;
  text-align: left;
}


/* === pages/estudio.css === */
.differentiators-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 20% 10%, rgba(198, 156, 109, 0.06), transparent 40%),
    linear-gradient(180deg, #151c28, #1a2332, #151c28);
  color: #ffffff;
}

.differentiators-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.differentiators-section .shell {
  position: relative;
}

.differentiators-section .shell::before,
.differentiators-section .shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  pointer-events: none;
  opacity: 0.8;
}

.differentiators-section .shell::before {
  top: 84px;
  left: -56px;
  width: 260px;
  height: 220px;
  background: radial-gradient(circle, rgba(198, 156, 109, 0.18), rgba(198, 156, 109, 0));
}

.differentiators-section .shell::after {
  right: -46px;
  bottom: 18px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(38, 50, 65, 0.12), rgba(38, 50, 65, 0));
}

.differentiators-section .differentiators-header {
  max-width: 820px;
  margin: 0 auto 44px;
}

.differentiators-header .eyebrow {
  justify-content: center;
}

.differentiators-header .section-title,
.differentiators-header .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.differentiators-header .section-title {
  max-width: 680px;
  text-wrap: initial;
}

.differentiators-header .section-title span {
  display: block;
}

.differentiators-header .section-copy {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.68);
}

.differentiators-header .section-title {
  color: #ffffff;
}

.differentiators-header .eyebrow {
  color: rgba(198, 156, 109, 0.82);
}

.differentiators-section .differentiators-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.differentiator-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  justify-items: start;
  gap: 10px;
  min-height: 320px;
  padding: 30px 28px 26px;
  aspect-ratio: auto;
  border-radius: 32px;
  border-color: rgba(100, 84, 64, 0.16);
  box-shadow:
    0 20px 46px rgba(20, 20, 20, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.58);
  isolation: isolate;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-slow);
  text-align: left;
}

.differentiator-card::before,
.differentiator-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-slow);
}

.differentiator-card::before {
  opacity: 0.96;
}

.differentiator-card::after {
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0.24;
}

.differentiator-card > * {
  position: relative;
  z-index: 1;
}

.differentiator-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 34px 76px rgba(20, 20, 20, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.64);
}

.differentiator-card:hover::before {
  transform: scale(1.02);
}

.differentiator-card:hover::after {
  opacity: 0.48;
}

.differentiator-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.differentiator-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.differentiator-card .card-label {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 16px;
  font-size: 0.94rem;
}

.differentiator-card .metric-value {
  margin: 2px 0 2px;
  font-family: "Manrope", sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 700;
  align-self: start;
}

.differentiator-card .card-title {
  max-width: none;
  margin: 0;
  align-self: start;
  font-size: clamp(1.38rem, 1.5vw, 1.56rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.differentiator-card .card-copy {
  max-width: none;
  margin: 0;
  align-self: start;
  font-size: 0.98rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.differentiator-card-feature {
  grid-area: auto;
  border-color: rgba(167, 125, 79, 0.28);
  background:
    linear-gradient(165deg, rgba(247, 237, 219, 0.99), rgba(236, 220, 192, 0.98)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.24), rgba(198, 156, 109, 0) 44%);
  box-shadow:
    0 24px 54px rgba(111, 83, 49, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.64);
}

.differentiator-card-feature::before {
  background:
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.26), rgba(198, 156, 109, 0) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
}

.differentiator-card-feature .metric-value {
  color: #1b1a18;
}

.differentiator-card-feature .card-title {
  color: #171717;
}

.differentiator-card-feature .card-copy {
  color: rgba(64, 58, 52, 0.86);
}

.differentiator-card-warm {
  grid-area: auto;
  background:
    linear-gradient(165deg, rgba(214, 180, 120, 0.97), rgba(191, 149, 90, 0.96)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  border-color: rgba(160, 118, 67, 0.2);
}

.differentiator-card-warm::before {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.differentiator-card-warm .metric-value {
  color: #1f2430;
}

.differentiator-card-warm .card-title {
  color: #17110b;
}

.differentiator-card-warm .card-copy {
  color: rgba(39, 30, 20, 0.86);
}

.differentiator-card-light {
  grid-area: auto;
  background:
    linear-gradient(170deg, rgba(227, 236, 245, 0.99), rgba(210, 223, 237, 0.98)),
    radial-gradient(circle at top right, rgba(47, 70, 95, 0.18), rgba(47, 70, 95, 0) 44%);
  border-color: rgba(65, 92, 119, 0.24);
  box-shadow:
    0 24px 54px rgba(47, 70, 95, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.64);
}

.differentiator-card-light::before {
  background:
    radial-gradient(circle at top right, rgba(65, 92, 119, 0.22), rgba(65, 92, 119, 0) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.differentiator-card-light .metric-value {
  color: #171717;
}

.differentiator-card-light .card-title {
  color: #1d2430;
}

.differentiator-card-light .card-copy {
  color: rgba(59, 63, 68, 0.84);
}

.differentiator-card-navy {
  grid-area: auto;
  background:
    linear-gradient(155deg, rgba(26, 34, 45, 0.98), rgba(21, 29, 40, 0.96)),
    radial-gradient(circle at top left, rgba(198, 156, 109, 0.16), rgba(198, 156, 109, 0) 34%);
  border-color: rgba(92, 111, 132, 0.18);
  box-shadow:
    0 28px 70px rgba(18, 24, 31, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.differentiator-card-navy::before {
  background:
    radial-gradient(circle at top left, rgba(198, 156, 109, 0.18), rgba(198, 156, 109, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.differentiator-card-navy .metric-value {
  color: rgba(255, 255, 255, 0.92);
}

.differentiator-card-navy .card-title {
  color: #ffffff;
}

.differentiator-card-navy .card-copy {
  color: rgba(255, 255, 255, 0.68);
}

.studio-people-section {
  position: relative;
}

.studio-people-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.studio-people-intro .eyebrow {
  justify-content: center;
}

.studio-people-intro .section-title,
.studio-people-intro .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.studio-people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.studio-person-card {
  position: relative;
  overflow: hidden;
  height: 440px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 241, 236, 0.98));
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 26px 70px rgba(20, 20, 20, 0.1);
  will-change: transform, opacity, filter;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.studio-person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 84px rgba(20, 20, 20, 0.16);
  border-color: rgba(198, 156, 109, 0.24);
}

.studio-person-media {
  position: relative;
  min-height: 100%;
}

.studio-person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.studio-person-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 22, 31, 0.04) 6%, rgba(16, 22, 31, 0.2) 38%, rgba(16, 22, 31, 0.52) 100%),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.2), transparent 30%);
}

.studio-person-card-valentina .studio-person-overlay {
  background:
    linear-gradient(270deg, rgba(20, 24, 27, 0.04) 6%, rgba(20, 24, 27, 0.2) 38%, rgba(20, 24, 27, 0.52) 100%),
    radial-gradient(circle at top left, rgba(198, 156, 109, 0.18), transparent 34%);
}

.studio-person-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.14), transparent 32%),
    linear-gradient(160deg, rgba(251, 249, 245, 0.98), rgba(243, 239, 232, 0.94));
}

.studio-person-content h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #161616;
  max-width: 12ch;
}

.studio-person-card-noel .studio-person-content h3 {
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  max-width: 14ch;
}

.studio-person-role {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6d573a;
}

.studio-person-copy {
  margin: 0;
  max-width: 36ch;
  line-height: 1.8;
  color: var(--grey-700);
}

.studio-people-link {
  margin: 28px 0 0;
  text-align: center;
}

.bio-card .bio-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.bio-mark {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(198, 156, 109, 0.14), rgba(255, 255, 255, 0.88));
}

.bio-card h3 {
  margin: 0 0 6px;
  font-size: 1.28rem;
}

.bio-card .role {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.bio-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--grey-700);
}

.bio-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bio-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--grey-700);
  line-height: 1.65;
}

.bio-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold-main);
}

.bio-photo {
  margin-bottom: 22px;
  border-radius: 20px;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.bio-photo-placeholder {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(198, 156, 109, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(198, 156, 109, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #f7f6f3 0%, #f0ede7 40%, #ece8e0 100%);
  position: relative;
}

.bio-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 156, 109, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.bio-initials {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(198, 156, 109, 0.38);
  user-select: none;
}

.modalities-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 156, 109, 0.14), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(76, 76, 72, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, #efe6da 100%);
}

.modalities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.modalities-section .shell {
  position: relative;
  z-index: 1;
}

.modalities-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.modalities-header .eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.modalities-header .section-title {
  max-width: 23ch;
  margin-left: auto;
  margin-right: auto;
}

.property-modalities-title {
  max-width: 31ch;
}

.family-audience-title {
  max-width: 34ch;
}

@media (max-width: 720px) {
  .property-modalities-title {
    max-width: 100%;
  }

  .family-audience-title {
    max-width: 100%;
  }
}

.modalities-grid {
  align-items: stretch;
  gap: 20px;
}

.modalities-grid .modality-card {
  position: relative;
  min-height: 100%;
  padding: 30px 26px 28px;
  display: grid;
  grid-template-rows: minmax(3.1rem, auto) minmax(6.4rem, auto) 1fr;
  gap: 16px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(92, 79, 64, 0.16);
  box-shadow:
    0 18px 42px rgba(20, 20, 20, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.64);
}

.modalities-grid .modality-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 36%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 36%);
  pointer-events: none;
}

.modalities-grid .modality-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 156, 109, 0), rgba(198, 156, 109, 0.92), rgba(198, 156, 109, 0));
  opacity: 0.92;
}

.modalities-grid .modality-card > * {
  position: relative;
  z-index: 1;
}

.modalities-grid .modality-card .card-title,
.modalities-grid .modality-card .card-copy,
.modalities-grid .modality-card .card-list {
  margin: 0;
}

.modalities-grid .modality-card .card-title {
  font-size: clamp(1.28rem, 1.7vw, 1.52rem);
  line-height: 1.12;
  text-wrap: balance;
}

.modalities-grid .modality-card .card-copy {
  font-size: 0.98rem;
  line-height: 1.72;
}

.modalities-grid .modality-card .card-list {
  margin-top: 2px;
  align-self: start;
}

.modalities-grid .modality-card .card-list li {
  margin-bottom: 9px;
}

.modalities-grid .modality-card:hover,
.modalities-grid .modality-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(198, 156, 109, 0.32);
  box-shadow:
    0 28px 58px rgba(20, 20, 20, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.72);
}

.modalities-grid .modality-card:nth-child(1) {
  background:
    linear-gradient(165deg, rgba(248, 239, 225, 0.98), rgba(239, 226, 202, 0.96)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.18), transparent 42%);
  border-color: rgba(167, 125, 79, 0.2);
}

.modalities-grid .modality-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(36, 44, 54, 0.98), rgba(24, 31, 40, 0.96)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.14), transparent 34%);
  border-color: rgba(95, 110, 126, 0.28);
  box-shadow:
    0 20px 46px rgba(17, 22, 29, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.04);
}

.modalities-grid .modality-card:nth-child(3) {
  background:
    linear-gradient(165deg, rgba(228, 232, 234, 0.98), rgba(214, 220, 223, 0.96)),
    radial-gradient(circle at top right, rgba(76, 76, 72, 0.1), transparent 42%);
  border-color: rgba(108, 111, 112, 0.2);
}

.modalities-grid .modality-card:nth-child(1) .card-title,
.modalities-grid .modality-card:nth-child(3) .card-title {
  color: #171717;
}

.modalities-grid .modality-card:nth-child(1) .card-copy,
.modalities-grid .modality-card:nth-child(3) .card-copy,
.modalities-grid .modality-card:nth-child(1) .card-list li,
.modalities-grid .modality-card:nth-child(3) .card-list li {
  color: rgba(52, 46, 40, 0.82);
}

.modalities-grid .modality-card:nth-child(2) .card-title {
  color: #fff7ec;
}

.modalities-grid .modality-card:nth-child(2) .card-copy,
.modalities-grid .modality-card:nth-child(2) .card-list li {
  color: rgba(255, 244, 229, 0.84);
}

.modalities-grid .modality-card:nth-child(2) .card-list li::before {
  background: rgba(241, 207, 157, 0.9);
}

.property-modalities-grid .modality-card,
.modalities-comparison-grid .modality-comparison-card {
  position: relative;
  min-height: 100%;
  padding: 30px 26px 28px;
  display: grid;
  gap: 16px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(92, 79, 64, 0.16);
  box-shadow:
    0 18px 42px rgba(20, 20, 20, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.64);
}

.property-modalities-grid .modality-card {
  grid-template-rows: minmax(3.1rem, auto) 1fr;
}

.modalities-comparison-grid .modality-comparison-card {
  grid-template-rows: minmax(3.4rem, auto) 1fr;
}

.property-modalities-grid .modality-card::before,
.modalities-comparison-grid .modality-comparison-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 36%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 36%);
  pointer-events: none;
}

.property-modalities-grid .modality-card::after,
.modalities-comparison-grid .modality-comparison-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 156, 109, 0), rgba(198, 156, 109, 0.92), rgba(198, 156, 109, 0));
  opacity: 0.92;
}

.property-modalities-grid .modality-card > *,
.modalities-comparison-grid .modality-comparison-card > * {
  position: relative;
  z-index: 1;
}

.property-modalities-grid .modality-card .card-title,
.modalities-comparison-grid .modality-comparison-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.7vw, 1.52rem);
  line-height: 1.12;
  text-wrap: balance;
}

.property-modalities-grid .modality-card .card-list,
.modalities-comparison-grid .modality-comparison-card ul {
  margin: 0;
  align-self: start;
}

.property-modalities-grid .modality-card .card-list li,
.modalities-comparison-grid .modality-comparison-card li {
  margin-bottom: 9px;
}

.property-modalities-grid .modality-card:hover,
.property-modalities-grid .modality-card:focus-within,
.modalities-comparison-grid .modality-comparison-card:hover,
.modalities-comparison-grid .modality-comparison-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(198, 156, 109, 0.32);
  box-shadow:
    0 28px 58px rgba(20, 20, 20, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.72);
}

.property-modalities-grid .modality-card:nth-child(1),
.modalities-comparison-grid .modality-comparison-card:nth-child(1) {
  background:
    linear-gradient(165deg, rgba(248, 239, 225, 0.98), rgba(239, 226, 202, 0.96)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.18), transparent 42%);
  border-color: rgba(167, 125, 79, 0.2);
}

.property-modalities-grid .modality-card:nth-child(2),
.modalities-comparison-grid .modality-comparison-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(36, 44, 54, 0.98), rgba(24, 31, 40, 0.96)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.14), transparent 34%);
  border-color: rgba(95, 110, 126, 0.28);
  box-shadow:
    0 20px 46px rgba(17, 22, 29, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.04);
}

.property-modalities-grid .modality-card:nth-child(3),
.modalities-comparison-grid .modality-comparison-card:nth-child(3) {
  background:
    linear-gradient(165deg, rgba(228, 232, 234, 0.98), rgba(214, 220, 223, 0.96)),
    radial-gradient(circle at top right, rgba(76, 76, 72, 0.1), transparent 42%);
  border-color: rgba(108, 111, 112, 0.2);
}

.modalities-comparison-grid .modality-comparison-card:nth-child(4) {
  background:
    linear-gradient(165deg, rgba(223, 193, 145, 0.96), rgba(198, 156, 109, 0.94)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%);
  border-color: rgba(160, 118, 67, 0.22);
}

.property-modalities-grid .modality-card:nth-child(1) .card-title,
.property-modalities-grid .modality-card:nth-child(3) .card-title,
.modalities-comparison-grid .modality-comparison-card:nth-child(1) h3,
.modalities-comparison-grid .modality-comparison-card:nth-child(3) h3 {
  color: #171717;
}

.property-modalities-grid .modality-card:nth-child(1) .card-list li,
.property-modalities-grid .modality-card:nth-child(3) .card-list li,
.modalities-comparison-grid .modality-comparison-card:nth-child(1) li,
.modalities-comparison-grid .modality-comparison-card:nth-child(3) li {
  color: rgba(52, 46, 40, 0.82);
}

.property-modalities-grid .modality-card:nth-child(2) .card-title,
.modalities-comparison-grid .modality-comparison-card:nth-child(2) h3,
.modalities-comparison-grid .modality-comparison-card:nth-child(4) h3 {
  color: #fff7ec;
}

.property-modalities-grid .modality-card:nth-child(2) .card-list li,
.modalities-comparison-grid .modality-comparison-card:nth-child(2) li,
.modalities-comparison-grid .modality-comparison-card:nth-child(4) li {
  color: rgba(255, 244, 229, 0.84);
}

.property-modalities-grid .modality-card:nth-child(2) .card-list li::before,
.modalities-comparison-grid .modality-comparison-card:nth-child(2) li::before,
.modalities-comparison-grid .modality-comparison-card:nth-child(4) li::before {
  background: rgba(241, 207, 157, 0.9);
}

@media (max-width: 980px) {
  .modalities-header {
    margin-bottom: 34px;
  }

  .modalities-grid .modality-card {
    grid-template-rows: minmax(2.8rem, auto) minmax(5.8rem, auto) 1fr;
  }

  .property-modalities-grid .modality-card,
  .modalities-comparison-grid .modality-comparison-card {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 720px) {
  .modalities-section {
    background:
      radial-gradient(circle at 14% 10%, rgba(198, 156, 109, 0.12), transparent 34%),
      linear-gradient(180deg, #f6f0e8 0%, #ece3d7 100%);
  }

  .modalities-header .section-title {
    max-width: 100%;
  }

  .modalities-grid .modality-card {
    padding: 24px 20px 22px;
    grid-template-rows: auto auto auto;
    border-radius: 24px;
  }

  .property-modalities-grid .modality-card,
  .modalities-comparison-grid .modality-comparison-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
    grid-template-rows: auto 1fr;
  }
}


/* === pages/servicios.css === */
/* ========================================================================== */
/* pages/servicios.css — Services section, card flip, media, body             */
/* ========================================================================== */

/* ── Section background & decorative lines ── */

.services-section {
  position: relative;
  background-color: #d7d1c8;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(76, 76, 72, 0.12), transparent 28%),
    linear-gradient(180deg, #ddd7cf 0%, #cec7bc 100%);
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 125, 79, 0.34), transparent);
}

.services-section .shell::before {
  content: "";
  position: absolute;
  inset: 28px 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.services-section::before {
  top: 0;
}

.services-section::after {
  bottom: 0;
}

.services-section .shell {
  position: relative;
  z-index: 1;
}

/* ── Section header ── */

.services-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-section .eyebrow {
  display: inline-flex;
  flex-direction: column;
  color: rgba(74, 64, 52, 1);
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-section .eyebrow::before {
  width: 44px;
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.22), rgba(198, 156, 109, 0.96));
}

.services-section .section-title {
  color: #181614;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.services-section .section-copy {
  color: rgba(57, 50, 44, 0.82);
  width: min(100%, 58ch);
  max-width: 58ch;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Card container (perspective) ── */

.services-section .services-grid > .service-card {
  padding: 0;
  position: relative;
  height: 100%;
  perspective: 1800px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.services-section .services-grid > .service-card::before {
  content: none;
}

.services-section .services-grid > .service-card::after {
  content: none;
}

/* ── Card inner (3D flip) ── */

.services-section .services-card-inner {
  position: relative;
  min-height: 490px;
  height: 100%;
  transform-style: preserve-3d;
  transition:
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    translate 420ms ease;
}

/* ── Card faces ── */

.services-section .services-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(95, 82, 67, 0.16);
  box-shadow:
    0 18px 38px rgba(17, 22, 29, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.68);
}

.services-section .services-card-front {
  justify-content: flex-end;
  background: #101418;
  pointer-events: auto;
}

.services-section .services-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 18, 24, 0.12) 0%, rgba(14, 18, 24, 0.18) 38%, rgba(14, 18, 24, 0.74) 100%),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.18), transparent 34%);
  pointer-events: none;
  z-index: 1;
}

.services-section .services-card-back {
  transform: rotateY(180deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 245, 239, 1) 100%);
  pointer-events: none;
}

/* ── Card title ── */

.services-section .services-grid > .service-card .card-title {
  margin: 0;
  font-size: clamp(1.32rem, 1.58vw, 1.58rem);
  line-height: 1.12;
  text-wrap: balance;
}

/* ── Card media ── */

.services-section .services-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.services-section .services-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 22, 29, 0.02) 0%, rgba(17, 22, 29, 0.05) 58%, rgba(17, 22, 29, 0.14) 100%),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.14), transparent 34%);
  pointer-events: none;
}

.services-section .services-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Card front content ── */

.services-section .services-card-front-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 28px 24px 24px;
  margin-top: auto;
}

.services-section .services-card-front-content .card-title {
  color: #f7f1e8;
  max-width: 12ch;
}

.services-section .services-card-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(247, 241, 232, 0.84);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-section .services-card-hint::after {
  content: "\2192";
  font-size: 0.82rem;
  transform: translateY(-1px);
}

/* ── Card body (back face content) ── */

.services-section .services-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 28px 24px 24px;
  background: transparent;
}

.services-section .services-card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 245, 239, 1) 100%);
  pointer-events: none;
  z-index: 0;
}

.services-section .services-card-body > * {
  position: relative;
  z-index: 1;
}

.services-section .services-card-back-title,
.services-section .services-card-body .card-copy,
.services-section .services-card-body .card-list,
.services-section .services-card-body > p:last-child {
  margin-top: 0;
}

.services-section .services-card-back-title,
.services-section .services-card-body .card-copy,
.services-section .services-card-body .card-list {
  margin-bottom: 0;
}

.services-section .services-card-back-title {
  color: rgba(24, 22, 20, 0.96);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  text-wrap: balance;
}

.services-section .services-grid > .service-card .card-copy {
  font-size: 0.97rem;
  line-height: 1.68;
  color: rgba(52, 46, 40, 0.84);
}

.services-section .services-card-body .card-list {
  align-self: center;
  margin-top: 2px;
  text-align: left;
  list-style-position: inside;
}

.services-section .services-grid > .service-card .card-list li {
  margin-bottom: 8px;
  font-size: 0.91rem;
  line-height: 1.55;
  color: rgba(52, 46, 40, 0.82);
}

.services-section .services-grid > .service-card {
  transform: translateY(0);
  transition: transform 420ms ease;
}

.services-section .services-grid > .service-card .text-link {
  color: #181614;
}

/* ── Card CTA button ── */

.services-section .services-card-button {
  width: fit-content;
  min-width: 0;
  padding: 12px 18px;
  border-radius: 999px;
  border-color: rgba(24, 22, 20, 0.14);
  background: #181614;
  color: #f7f1e8;
  box-shadow: none;
}

.services-section .services-card-button:hover,
.services-section .services-card-button:focus-visible {
  border-color: rgba(24, 22, 20, 0.14);
  background: #2a2520;
  color: #ffffff;
}

/* ── Card image positions per card ── */

.services-section .services-grid > .service-card:nth-child(1) .services-card-media img {
  object-position: center center;
}

.services-section .services-grid > .service-card:nth-child(2) .services-card-media img {
  object-position: center center;
}

.services-section .services-grid > .service-card:nth-child(3) .services-card-media img {
  object-position: center center;
}

/* ── Bullet list gold dots ── */

.services-section .services-grid > .service-card .card-list li::before {
  background: rgba(167, 125, 79, 0.92);
}


/* === pages/contacto.css === */
/* ========================================================================== */
/* pages/contacto.css — Contact details strip, form section, contact panels  */
/* ========================================================================== */

/* ── Contact grid form centering ── */

.contact-grid .form-card {
  grid-column: 1 / -1;
  max-width: 680px;
  justify-self: center;
}

/* ── Contact details strip ── */

.contact-details-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.contact-detail {
  position: relative;
  overflow: hidden;
  padding: 34px 30px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--deep-navy);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.18);
  transition:
    background var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.contact-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(198, 156, 109, 0.1), transparent 48%);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-slow);
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(198, 156, 109, 0.22);
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.1);
  transform: translateY(-4px);
}

.contact-detail:hover::before {
  background: linear-gradient(145deg, rgba(198, 156, 109, 0.06), transparent 48%);
}

.contact-detail-number {
  display: block;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(198, 156, 109, 0.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color var(--transition-slow), border-color var(--transition-slow);
}

.contact-detail:hover .contact-detail-number {
  color: var(--gold-main);
  border-bottom-color: rgba(198, 156, 109, 0.18);
}

.contact-detail h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  transition: color var(--transition-slow);
}

.contact-detail:hover h3 {
  color: var(--ink);
}

.contact-detail p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition-slow);
}

.contact-detail:hover p {
  color: var(--grey-700);
}


/* === pages/service-detail.css === */
/* ========================================================================== */
/* pages/service-detail.css — CTA banner, KPIs, page overlays, property,     */
/*                            trust section, value section                    */
/* ========================================================================== */

/* ── CTA Banner — editorial premium card with photo ── */

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 6vw, 80px) clamp(48px, 5.5vw, 72px);
  border-radius: 40px;
  border: 1px solid rgba(198, 156, 109, 0.18);
  border-top: 2px solid rgba(198, 156, 109, 0.4);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(198, 156, 109, 0.14), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(198, 156, 109, 0.08), transparent 50%),
    linear-gradient(155deg, #1a2233 0%, #1d2a3a 40%, #162030 100%);
  box-shadow:
    0 30px 70px rgba(10, 14, 22, 0.3),
    0 4px 16px rgba(10, 14, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* boardroom photo — luminosity blend, low opacity */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 32, 48, 0.92) 0%, rgba(29, 42, 58, 0.78) 50%, rgba(22, 32, 48, 0.94) 100%),
    url("../images/photo-boardroom-v2.jpg") center / cover no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.4;
  pointer-events: none;
}

/* logo emblem watermark */
.cta-banner::after {
  content: "";
  position: absolute;
  right: clamp(28px, 5vw, 64px);
  bottom: clamp(28px, 4vw, 60px);
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  background: url("../images/logo-emblem.png") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.cta-banner .eyebrow,
.cta-banner .section-title,
.cta-banner .section-copy,
.cta-banner .btn-row {
  position: relative;
  z-index: 1;
}

.cta-banner .eyebrow {
  justify-content: center;
}

.cta-banner .eyebrow::before {
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.92), rgba(255, 255, 255, 0.18));
  order: 1;
}

.cta-banner .section-title {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.cta-banner .section-copy {
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
  line-height: 1.78;
  text-align: center;
}

.cta-banner .btn-row {
  justify-content: center;
}

.cta-banner .contact-chip {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner .contact-chip strong {
  color: #ffffff;
}

.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  color: #fff;
  border: 1px solid rgba(198, 156, 109, 0.3);
  box-shadow: 0 12px 28px rgba(167, 125, 79, 0.22);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-banner .btn-primary:hover,
.cta-banner .btn-primary:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(167, 125, 79, 0.32);
}

.cta-banner .btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  transition:
    background-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-banner .btn-secondary:hover,
.cta-banner .btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 14, 22, 0.18);
}

/* ── CTA Section wrapper ── */

.cta-section {
  position: relative;
  overflow: hidden;
  background-color: var(--deep-navy) !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(198, 156, 109, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(155deg, #1d2430 0%, #222b37 46%, #18202a 100%) !important;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 156, 109, 0.26), transparent);
}

.cta-section::before {
  top: 0;
}

.cta-section::after {
  bottom: 0;
}

.cta-section .shell {
  position: relative;
  z-index: 1;
}

/* ── CTA Banner Home variant ── */

.cta-banner-home {
  padding: clamp(38px, 4vw, 52px) clamp(24px, 4vw, 44px);
  border: 1px solid rgba(126, 89, 45, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(212, 191, 160, 0.98), rgba(200, 169, 126, 0.96) 42%, rgba(182, 145, 101, 0.96) 100%) !important;
  box-shadow:
    0 26px 60px rgba(10, 15, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-align: center;
  color: var(--ink) !important;
}

.cta-banner-home::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cta-banner-home .eyebrow {
  justify-content: center;
  color: rgba(29, 36, 48, 0.72) !important;
}

.cta-banner-home .eyebrow::before {
  background: linear-gradient(90deg, rgba(29, 36, 48, 0.16), rgba(29, 36, 48, 0.78));
}

.cta-banner-home .section-title {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
  color: #171717 !important;
}

.cta-banner-home .section-copy {
  max-width: 62ch;
  margin: 0 auto 24px;
  text-align: center;
  color: rgba(29, 36, 48, 0.86) !important;
}

.cta-banner-home .contact-strip,
.cta-banner-home .cta-actions {
  justify-content: center;
}

.cta-banner-home .contact-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-home .contact-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 68px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: #ffffff !important;
  color: rgba(23, 23, 23, 0.76) !important;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.34;
  text-align: center;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.06);
}

.cta-banner-home .contact-chip strong {
  display: block;
  margin-bottom: 0;
  color: var(--deep-navy) !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-actions {
  margin-top: 30px;
}

.cta-banner-home .btn {
  transform-origin: center center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-banner-home .btn:hover,
.cta-banner-home .btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

.cta-banner-home .btn-primary {
  background: linear-gradient(135deg, var(--deep-navy), #243041);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(10, 14, 22, 0.18);
}

.cta-banner-home .btn-primary:hover,
.cta-banner-home .btn-primary:focus-visible {
  background: linear-gradient(135deg, #151b24, var(--deep-navy));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 42px rgba(29, 36, 48, 0.28);
}

.cta-banner-home .btn-secondary {
  border-color: rgba(29, 36, 48, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: var(--deep-navy);
}

.cta-banner-home .btn-secondary:hover,
.cta-banner-home .btn-secondary:focus-visible {
  border-color: rgba(29, 36, 48, 0.3);
  background: rgba(29, 36, 48, 0.92);
  color: var(--white);
  box-shadow: 0 20px 38px rgba(29, 36, 48, 0.18);
}

/* ── KPI chips: contraste oscuro sobre banner dorado ── */

.cta-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.kpi-chip {
  background: rgba(29, 36, 48, 0.88) !important;
  border: 1px solid rgba(198, 156, 109, 0.28) !important;
  border-top: 2px solid var(--gold-main) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(8px);
  box-shadow:
    0 8px 24px rgba(10, 15, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.kpi-chip strong {
  color: var(--gold-soft) !important;
}

/* stagger animation */
.kpi-chip:nth-child(1) { transition-delay: 0ms; }
.kpi-chip:nth-child(2) { transition-delay: 100ms; }
.kpi-chip:nth-child(3) { transition-delay: 200ms; }

/* ── WhatsApp button ── */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #25D366;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: translateY(-2px) scale(1.03);
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:active {
  transform: translateY(0) scale(0.985);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* ── Page-specific hero visual overlays ── */

body[data-page="service-accounting"] .page-hero .visual-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 26, 39, 0.5)),
    radial-gradient(circle at top right, rgba(75, 115, 158, 0.3), transparent 34%);
}

body[data-page="property-management"] .page-hero .visual-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(20, 33, 36, 0.5)),
    radial-gradient(circle at top right, rgba(85, 128, 109, 0.3), transparent 34%);
}

body[data-page="service-family-office"] .page-hero .visual-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(30, 22, 35, 0.55)),
    radial-gradient(circle at top right, rgba(126, 97, 143, 0.26), transparent 35%);
}

body[data-page="service-family-office"] .support-card:not(.dark-panel),
body[data-page="service-family-office"] .comparison-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 249, 0.95)),
    radial-gradient(circle at top right, rgba(116, 89, 132, 0.14), transparent 42%);
}

body[data-page="service-accounting"] .service-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 251, 0.94)),
    radial-gradient(circle at top right, rgba(66, 96, 132, 0.14), transparent 40%);
}

body[data-page="property-management"] .service-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 245, 0.94)),
    radial-gradient(circle at top right, rgba(88, 124, 108, 0.14), transparent 40%);
}

/* ── Property showcase section ── */

.property-showcase-section {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(198, 156, 109, 0.14), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(29, 36, 48, 0.08), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, #f3ede4 100%);
}

.property-showcase-section::before,
.property-showcase-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 125, 79, 0.22), transparent);
}

.property-showcase-section::before {
  top: 0;
}

.property-showcase-section::after {
  bottom: 0;
}

.property-showcase-section .shell {
  position: relative;
  z-index: 1;
}

.property-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
}

.property-showcase-copy {
  order: 1;
}

.property-showcase-media-wrap {
  order: 2;
  position: relative;
  padding: 22px 0 0 22px;
}

.property-showcase-media-wrap::before {
  content: "";
  position: absolute;
  inset: 0 80px 72px 0;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(29, 36, 48, 0.08), rgba(198, 156, 109, 0.12));
}

.property-showcase-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 36px;
  box-shadow: 0 30px 74px rgba(18, 18, 18, 0.18);
}

.property-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 23, 31, 0.08) 0%, rgba(17, 23, 31, 0.18) 45%, rgba(17, 23, 31, 0.46) 100%),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.18), transparent 32%);
}

.property-showcase-float {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(420px, calc(100% - 48px));
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(19, 24, 31, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 52px rgba(8, 10, 14, 0.24);
  color: var(--white);
}

.property-showcase-float-kicker {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(213, 177, 135, 0.9);
}

.property-showcase-float h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.property-showcase-float p:last-child {
  margin: 0;
  line-height: 1.72;
  color: rgba(245, 239, 231, 0.82);
}

.property-showcase-copy {
  max-width: 520px;
}

.property-showcase-copy .eyebrow {
  justify-content: flex-start;
}

.property-showcase-copy .section-title {
  max-width: 34ch;
  margin-bottom: 18px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(1.85rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.property-showcase-copy .section-copy {
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.82;
}

.property-showcase-pillars {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.property-showcase-pillar {
  padding: 22px 16px 20px;
  margin: 0 -16px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 14px;
  cursor: default;
  transition:
    background-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.property-showcase-pillar:hover {
  background: rgba(198, 156, 109, 0.06);
  transform: translateX(6px);
  border-bottom-color: rgba(198, 156, 109, 0.18);
  box-shadow: -3px 0 0 0 var(--gold-main);
}

.property-showcase-pillar:hover .property-showcase-pillar-kicker {
  color: var(--gold-deep);
}

.property-showcase-pillar:hover h3 {
  color: var(--ink);
}

.property-showcase-pillar-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(167, 125, 79, 0.9);
}

.property-showcase-pillar h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.38rem, 2vw, 1.72rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #181614;
}

.property-showcase-pillar p:last-child {
  margin: 0;
  max-width: 42ch;
  line-height: 1.72;
  color: rgba(57, 50, 44, 0.78);
}

.property-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.property-showcase-actions .text-link {
  color: #181614;
}

.property-showcase-actions .text-link::after {
  color: rgba(167, 125, 79, 0.92);
}

/* ── Trust section ── */

.trust-section {
  position: relative;
  padding: 126px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(198, 156, 109, 0.16), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(198, 156, 109, 0.08), transparent 18%),
    linear-gradient(180deg, #2a2a2a 0%, #222222 46%, #171717 100%);
  overflow: hidden;
}

.trust-section::before,
.trust-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 156, 109, 0.28), transparent);
}

.trust-section::before {
  top: 0;
}

.trust-section::after {
  bottom: 0;
}

.trust-section .shell {
  position: relative;
  z-index: 1;
}

.trust-section-intro {
  max-width: 840px;
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.trust-section .eyebrow {
  justify-content: center;
  color: rgba(213, 177, 135, 0.82);
}

.trust-section .eyebrow::before {
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.22), rgba(198, 156, 109, 0.92));
}

.trust-section .section-title {
  color: rgba(255, 255, 255, 0.95);
  max-width: 32ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-left: auto;
  margin-right: auto;
}

.trust-section .section-copy {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.trust-section .trust-grid {
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1500px;
  overflow: visible;
}

.trust-section .trust-panel {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(117, 100, 82, 0.18);
  background:
    linear-gradient(165deg, rgba(250, 248, 244, 0.99), rgba(232, 224, 213, 0.96)),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.16), transparent 40%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.trust-section .trust-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.75;
  pointer-events: none;
}

.trust-section .trust-panel:hover,
.trust-section .trust-panel:focus-within {
  transform: translateY(-5px);
  border-color: rgba(167, 125, 79, 0.34);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.62);
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  border-radius: 22px;
  border: 1px solid rgba(167, 125, 79, 0.22);
  background:
    radial-gradient(circle at 30% 30%, rgba(198, 156, 109, 0.18), transparent 72%),
    rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: #232323;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-kicker,
.trust-card-title,
.trust-card-copy {
  position: relative;
  z-index: 1;
}

.trust-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(167, 125, 79, 0.96);
}

.trust-card-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 1.82rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #191715;
}

.trust-card-copy {
  margin: 0;
  max-width: 28ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(57, 50, 44, 0.82);
}

/* ── Value section ── */

.value-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 18%, rgba(198, 156, 109, 0.14), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(29, 36, 48, 0.08), transparent 22%),
    linear-gradient(180deg, #fcfbf8 0%, #f4efe8 100%);
}

.value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.value-composition {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.value-copy {
  position: relative;
  top: auto;
  max-width: 1120px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.value-copy .section-title {
  max-width: none;
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  line-height: 0.98;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.value-copy .section-copy {
  max-width: 86ch;
  font-size: 1.05rem;
  line-height: 1.82;
  margin-left: auto;
  margin-right: auto;
}

.value-copy .quote-block {
  margin-top: 30px;
  margin-bottom: 0;
  max-width: 78ch;
  padding-left: 0;
  border-left: 0;
  border-top: 1px solid rgba(198, 156, 109, 0.56);
  padding-top: 24px;
  color: rgba(44, 40, 35, 0.78);
  font-size: 1rem;
  line-height: 1.86;
  margin-left: auto;
  margin-right: auto;
}

.value-copy-note {
  margin-top: 26px;
  padding-top: 20px;
  max-width: 70ch;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 0.9rem;
  line-height: 1.74;
  letter-spacing: 0.01em;
  color: rgba(57, 50, 44, 0.78);
  margin-left: auto;
  margin-right: auto;
}

/* ── Value accordion ── */

.value-accordion {
  display: flex;
  gap: 16px;
  width: 100%;
  min-height: 540px;
  align-items: stretch;
}

.value-accordion-panel {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: 0 28px 72px rgba(20, 20, 20, 0.14);
  min-height: 540px;
  transition:
    flex-grow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.value-accordion:hover .value-accordion-panel {
  flex-grow: 0.92;
}

.value-accordion:hover .value-accordion-panel:hover {
  flex-grow: 1.72;
  transform: translateY(-2px);
  border-color: rgba(198, 156, 109, 0.34);
  box-shadow: 0 34px 86px rgba(18, 18, 18, 0.18);
}

.value-accordion-media,
.value-accordion-media img {
  width: 100%;
  height: 100%;
}

.value-accordion-media {
  position: absolute;
  inset: 0;
}

.value-accordion-media img {
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-accordion:hover .value-accordion-panel:hover .value-accordion-media img {
  transform: scale(1.1);
}

.value-accordion-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 31, 0.12) 0%, rgba(16, 22, 31, 0.38) 40%, rgba(10, 14, 22, 0.84) 100%),
    radial-gradient(circle at top right, rgba(198, 156, 109, 0.1), transparent 34%);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.value-accordion-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24px 26px;
  color: var(--white);
  z-index: 1;
}

.value-accordion-meta {
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.72);
}

.value-accordion-copy h3 {
  margin: 0 0 12px;
  max-width: 14ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.62rem, 2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.value-accordion-copy p {
  max-width: 30ch;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(245, 239, 231, 0.88);
}


/* === animations/reveals.css === */
/* ========================================================================== */
/* animations/reveals.css — [data-reveal] base state for GSAP                */
/* ========================================================================== */

/* GSAP handles all reveal animations. This rule simply hides elements
   until ScrollTrigger brings them in, preventing a flash of unstyled
   content on load.                                                          */

[data-reveal] {
  visibility: hidden;
}


/* === animations/keyframes.css === */
/* ========================================================================== */
/* animations/keyframes.css — All @keyframes definitions                     */
/* ========================================================================== */

/* ── Hero phone ring ── */

@keyframes heroPhoneRing {
  0%,
  72%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  76% {
    transform: translate3d(-1px, 0, 0) rotate(-2.6deg) scale(1.015);
  }

  80% {
    transform: translate3d(1px, 0, 0) rotate(2.8deg) scale(1.02);
  }

  84% {
    transform: translate3d(-1px, 0, 0) rotate(-2.4deg) scale(1.017);
  }

  88% {
    transform: translate3d(1px, 0, 0) rotate(2deg) scale(1.012);
  }
}

/* ── Hero scribble draw ── */

@keyframes heroScribbleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ── Hero scribble float ── */

@keyframes heroScribbleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -6px, 0) scale(1.015);
  }

  100% {
    transform: translate3d(0, 4px, 0) scale(0.995);
  }
}

/* ── Process zigzag entrance ── */

@keyframes process-sigzag-enter {
  0% {
    opacity: 1;
    filter: none;
    transform: translate3d(164px, 0, 0);
  }

  16% {
    opacity: 1;
    filter: none;
    transform: translate3d(138px, -10px, 0);
  }

  34% {
    opacity: 1;
    filter: none;
    transform: translate3d(104px, 9px, 0);
  }

  52% {
    opacity: 1;
    filter: none;
    transform: translate3d(70px, -7px, 0);
  }

  70% {
    opacity: 1;
    filter: none;
    transform: translate3d(38px, 4px, 0);
  }

  86% {
    opacity: 1;
    filter: none;
    transform: translate3d(14px, -2px, 0);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0);
  }
}

/* ── Property float arrival ── */

@keyframes propertyFloatArrival {
  0% {
    opacity: 0;
    transform: translate3d(-118px, 24px, 0) scale(0.92);
  }

  40% {
    opacity: 0.78;
    transform: translate3d(-36px, 10px, 0) scale(0.97);
  }

  72% {
    opacity: 1;
    transform: translate3d(16px, -5px, 0) scale(1.025);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* ── Property pillar kicker entrance ── */

@keyframes propertyPillarKickerIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  65% {
    opacity: 1;
    transform: translate3d(0, -2px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ── Footer gradient glow ── */

@keyframes footer-glow {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 60% 40%; }
  50%  { background-position: 100% 100%; }
  75%  { background-position: 40% 60%; }
  100% { background-position: 0% 0%; }
}

/* ── Process drift (for GSAP ScrollTrigger) ── */

@keyframes process-drift {
  from { translate: 0px var(--ps-from, 16px); }
  to   { translate: 0px var(--ps-to, -5px); }
}


/* === animations/reduced-motion.css === */
/* ========================================================================== */
/* animations/reduced-motion.css — Accessibility: prefers-reduced-motion     */
/* ========================================================================== */

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

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

  [data-reveal] {
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* === responsive/breakpoints.css === */
/* ========================================================================== */
/* responsive/breakpoints.css — All @media queries consolidated by breakpoint */
/* ========================================================================== */


/* ========================================================================== */
/* @media (max-width: 1180px)                                                 */
/* ========================================================================== */

@media (max-width: 1180px) {

  /* ── Layout grids → single column ── */
  .hero-grid,
  .page-hero .hero-grid,
  .split-section,
  .split-section.reverse,
  .studio-people-grid,
  .story-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .floating-panel {
    right: 20px;
    bottom: 20px;
  }

  .trust-grid,
  .pillar-grid,
  .services-grid,
  .services-grid.four,
  .metrics-grid,
  .faq-grid,
  .offices-grid,
  .details-grid,
  .support-grid,
  .module-grid,
  .comparison-grid,
  .process-grid,
  .footer-grid,
  .stats-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    gap: 18px;
  }

  /* ── Premium layer overrides ── */

  .hero-grid,
  .page-hero .hero-grid,
  .split-section,
  .split-section.reverse,
  .studio-people-grid,
  .story-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .studio-person-card {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .studio-person-media {
    min-height: 360px;
  }

  .studio-person-content {
    padding: 28px 24px;
  }

  .studio-person-card-reverse .studio-person-content {
    order: 2;
  }

  .studio-person-card-reverse .studio-person-media {
    order: 1;
  }

  .floating-panel {
    right: 18px;
    bottom: 18px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(4) {
    margin-top: 0;
  }

  .home-hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "highlights";
    row-gap: 16px;
    padding: clamp(112px, 14vw, 146px) 22px 22px;
  }

  .home-hero-content {
    position: relative;
    width: min(100%, 620px);
    max-width: 620px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .home-hero-copy,
  .home-hero-institutional {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .home-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .home-hero-institutional {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 18px 0;
  }

  .home-hero-institutional .eyebrow,
  .home-hero-institutional h2,
  .home-hero-institutional p {
    text-align: center;
  }

  .home-hero-institutional .eyebrow {
    justify-content: center;
    white-space: normal;
  }

  .home-hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .home-hero-scribble {
    left: 1%;
    right: 1%;
    bottom: 10px;
    height: 118px;
  }

  .home-hero-band {
    padding: 0 22px;
  }
}


/* ========================================================================== */
/* @media (max-width: 1100px)                                                 */
/* ========================================================================== */

@media (max-width: 1100px) {

  /* ── FAQ premium layout ── */
  .faq-section-premium .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-section-premium .faq-intro {
    text-align: center;
  }

  .faq-section-premium .faq-intro .eyebrow {
    justify-content: center;
  }

  .faq-section-premium .faq-intro .section-title,
  .faq-section-premium .faq-intro .section-copy,
  .faq-section-premium .faq-intro-points span {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}


/* ========================================================================== */
/* @media (max-width: 980px)                                                  */
/* ========================================================================== */

@media (max-width: 980px) {

  /* ── Header mobile ── */
  .site-header {
    padding: 14px 0;
    padding-top: 8px;
  }

  .brand-link img {
    width: 182px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  /* ── Fullscreen white mobile menu ── */

  .site-nav,
  .header-actions {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav {
    inset: 0;
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 32px;
    background: #ffffff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .header-actions {
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .header-actions .btn-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    padding: 16px 18px;
    min-height: 50px;
    overflow: visible;
    isolation: auto;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
    border-color: transparent;
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(167, 125, 79, 0.22);
  }

  .header-actions .btn-primary::before {
    display: none;
  }

  .header-actions .btn-primary:hover {
    transform: none;
  }

  .lang-switcher {
    justify-content: center;
  }

  .menu-open .site-nav,
  .menu-open .header-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ── Nav link styles — dark text on white background ── */
  .site-nav a,
  .menu-open .site-header .site-nav a,
  .menu-open .site-header.scrolled .site-nav a {
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--ink);
    min-height: 48px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.07);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .menu-open .site-header .site-nav a:hover,
  .menu-open .site-header .site-nav a.is-active,
  .menu-open .site-header.scrolled .site-nav a:hover,
  .menu-open .site-header.scrolled .site-nav a.is-active {
    color: var(--gold-deep);
    background: transparent;
    border-color: rgba(23, 23, 23, 0.07);
  }

  .nav-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
  }

  .nav-trigger::before {
    border-color: var(--ink);
  }

  .nav-trigger::after {
    right: 22px;
  }

  /* ── Dropdown inside fullscreen menu ── */
  .nav-dropdown,
  .menu-open .nav-dropdown,
  .menu-open .site-header.scrolled .nav-dropdown {
    position: static;
    left: auto;
    min-width: 0;
    margin-top: 0;
    padding: 4px 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-item {
    padding: 10px 0;
    border-radius: 0;
    border: none;
    background: transparent;
    min-height: auto;
  }

  .nav-dropdown-item:hover,
  .nav-dropdown-item:focus-visible {
    background: transparent;
  }

  .nav-dropdown-title,
  .menu-open .nav-dropdown .nav-dropdown-title,
  .menu-open .site-header.scrolled .nav-dropdown .nav-dropdown-title {
    font-size: 0.76rem;
    color: var(--ink);
    font-weight: 600;
  }

  .nav-dropdown-desc,
  .menu-open .nav-dropdown .nav-dropdown-desc,
  .menu-open .site-header.scrolled .nav-dropdown .nav-dropdown-desc {
    font-size: 0.68rem;
    color: var(--grey-700);
  }

  .nav-dropdown-item:hover .nav-dropdown-title,
  .menu-open .site-header.scrolled .nav-dropdown .nav-dropdown-item:hover .nav-dropdown-title {
    color: var(--gold-deep);
  }

  /* ── Header bar when menu is open — transparent on white fullscreen ── */
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    z-index: 102;
    background: transparent;
  }

  body.menu-open .site-header .header-bar,
  body.menu-open .site-header.scrolled .header-bar {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .site-header .brand-link,
  body.menu-open .site-header.scrolled .brand-link {
    position: relative;
    z-index: 110;
  }

  body.menu-open .site-header .brand-link img,
  body.menu-open .site-header.scrolled .brand-link img {
    filter: none;
  }

  body.menu-open .site-header .menu-toggle,
  body.menu-open .site-header.scrolled .menu-toggle {
    position: relative;
    z-index: 110;
    color: var(--ink);
    background: rgba(23, 23, 23, 0.06);
    box-shadow: none;
  }

  body.menu-open .lang-flag--active {
    border-color: rgba(23, 23, 23, 0.2);
  }

  .header-bar {
    padding: 9px 12px;
    border-radius: 20px;
    background: #111823;
    border: 1px solid #263242;
    backdrop-filter: none;
  }

  .hidden-mobile {
    display: none;
  }

  /* ── Hero ── */
  .hero,
  .page-hero {
    padding-top: 12px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 6.2vw, 3.35rem);
    max-width: 19ch;
  }

  body[data-page="home"] .hero-home-cinematic .hero-title {
    max-width: 24ch;
    font-size: clamp(2.05rem, 5vw, 2.6rem);
    line-height: 1.06;
  }

  .page-hero .hero-title {
    font-size: clamp(1.88rem, 4.8vw, 2.45rem);
    max-width: 24ch;
  }

  .hero-copy .lead,
  .section-copy,
  .lead {
    font-size: 1rem;
  }

  .hero-title,
  .page-hero .hero-title {
    font-size: clamp(2rem, 5.4vw, 2.8rem);
  }

  /* ── Sections & typography ── */
  body {
    font-size: 1rem;
  }

  .section-title {
    max-width: 25ch;
    font-size: clamp(1.95rem, 4.9vw, 2.75rem);
  }

  /* ── Visual frames ── */
  .visual-frame,
  .page-hero .visual-frame {
    min-height: 460px;
  }

  /* ── Cards & containers ── */
  .cta-banner,
  .form-card,
  .footer-card {
    padding: 32px 24px;
  }

  .trust-grid,
  .pillar-grid,
  .services-grid,
  .services-grid.four,
  .metrics-grid,
  .faq-grid,
  .offices-grid,
  .details-grid,
  .support-grid,
  .module-grid,
  .comparison-grid,
  .process-grid,
  .footer-grid,
  .stats-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-highlight {
    min-height: 118px;
  }

  /* ── Modalities ── */
  .modalities-header {
    margin-bottom: 34px;
  }

  .modalities-grid .modality-card {
    grid-template-rows: minmax(2.8rem, auto) minmax(5.8rem, auto) 1fr;
  }

  .property-modalities-grid .modality-card,
  .modalities-comparison-grid .modality-comparison-card {
    padding: 26px 22px 24px;
  }

  /* ── Differentiators ── */
  .differentiators-section .differentiators-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  /* ── Footer ── */
  .footer-brand,
  .footer-column-contact {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  /* ── Contact ── */
  .contact-details-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
  }

  /* ── CTA Banner Home ── */
  .cta-banner-home .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  /* ── Property showcase & value ── */
  .property-showcase-grid {
    grid-template-columns: 1fr;
  }

  .property-showcase-copy,
  .property-showcase-media-wrap {
    order: initial;
  }

  .property-showcase-copy {
    max-width: 100%;
  }

  .property-showcase-copy .section-title,
  .property-showcase-copy .section-copy {
    max-width: 100%;
  }

  .property-showcase-media {
    min-height: 560px;
  }

  .value-composition {
    grid-template-columns: 1fr;
  }

  .value-copy {
    position: static;
    padding: 0;
  }

  .value-copy .section-title {
    max-width: 100%;
    white-space: normal;
  }

  .value-accordion {
    min-height: 480px;
  }

  .value-accordion-panel {
    min-height: 480px;
  }

  /* ── Trust section ── */
  .trust-section {
    padding: 108px 0;
  }

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

  /* ── Section title global override ── */
  .section-title,
  .services-section .section-title,
  .value-copy .section-title,
  .trust-section .section-title,
  .floating-panel h2 {
    max-width: 24ch;
    font-size: clamp(1.78rem, 4.2vw, 2.18rem);
  }
}


/* ========================================================================== */
/* @media (max-width: 720px)                                                  */
/* ========================================================================== */

@media (max-width: 720px) {

  /* ── Sections ── */
  .section,
  .hero,
  .page-hero {
    padding-bottom: 84px;
  }

  .section {
    padding-top: 84px;
  }

  main > .section,
  .hero,
  .page-hero {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  /* ── Grids → single column ── */
  .trust-grid,
  .pillar-grid,
  .services-grid,
  .services-grid.four,
  .metrics-grid,
  .faq-grid,
  .offices-grid,
  .details-grid,
  .support-grid,
  .module-grid,
  .comparison-grid,
  .process-grid,
  .footer-grid,
  .stats-inline,
  .hero-credentials,
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* ── Typography ── */
  .hero-title,
  .page-hero .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.52rem);
    line-height: 1.02;
  }

  body[data-page="home"] .hero-home-cinematic .hero-title {
    font-size: clamp(1.78rem, 7vw, 2.16rem);
    max-width: 20ch;
    line-height: 1.05;
  }

  .home-hero-content .lead {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .page-hero .hero-title {
    font-size: clamp(1.68rem, 6.2vw, 2rem);
    line-height: 1.06;
  }

  .section-title {
    font-size: clamp(1.72rem, 6.4vw, 2.18rem);
    line-height: 1.08;
  }

  /* ── Visual frame ── */
  .visual-frame {
    min-height: 400px;
    border-radius: 30px;
  }

  .visual-frame {
    min-height: 430px;
    border-radius: 30px;
  }

  /* ── Floating panel ── */
  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 18px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    background: linear-gradient(140deg, rgba(29, 36, 48, 0.96), rgba(42, 49, 58, 0.92));
  }

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  /* ── Buttons & strips ── */
  .contact-strip,
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .lang-switcher {
    justify-content: center;
    width: 100%;
  }

  /* ── CTA banner ── */
  .cta-banner {
    border-radius: 30px;
  }

  .cta-banner-home .contact-strip {
    grid-template-columns: 1fr;
  }

  .cta-kpis {
    grid-template-columns: 1fr !important;
  }

  .cta-banner-home .contact-chip {
    min-height: 0;
  }

  /* ── Cards border-radius ── */
  .process-step,
  .service-card,
  .pillar-card,
  .metric-card,
  .bio-card,
  .support-card,
  .comparison-card,
  .form-card,
  .faq-card,
  .cta-banner {
    border-radius: 24px;
  }

  /* ── Footer ── */
  .footer-bottom {
    flex-direction: column;
  }

  .footer-card {
    text-align: left;
  }

  .footer-contact-link,
  .footer-contact-item {
    min-height: 40px;
  }

  /* ── Home hero ── */
  body[data-page="home"] .hero-home-cinematic {
    padding-bottom: 0;
  }

  .home-hero-stage {
    padding: 132px 14px 20px;
    row-gap: 18px;
  }

  .home-hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
  }

  .home-hero-scribble {
    left: 0;
    right: 0;
    bottom: 4px;
    height: 72px;
    opacity: 0.3;
  }

  .home-hero-highlight {
    min-height: 0;
    border-radius: 14px;
    padding: 11px 12px 10px;
  }

  .home-hero-highlight strong {
    font-size: 0.68rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
  }

  .home-hero-highlight p {
    font-size: 0.79rem;
    line-height: 1.44;
  }

  .home-hero-band {
    padding: 0 14px;
  }

  .home-hero-institutional {
    padding: 16px 0;
  }

  /* ── Trust grid horizontal scroll ── */
  .trust-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;
  }

  .trust-grid .info-card {
    min-width: 228px;
    scroll-snap-align: start;
  }

  /* ── People / Studio ── */
  .studio-people-intro {
    margin-bottom: 24px;
  }

  .studio-person-media {
    min-height: 310px;
  }

  .studio-person-content {
    padding: 24px 18px;
  }

  .studio-person-content h3 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    max-width: none;
  }

  .studio-person-copy {
    max-width: none;
  }

  /* ── Differentiators ── */
  .differentiators-section .differentiators-header {
    margin-bottom: 30px;
  }

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

  .differentiators-section .differentiator-card,
  .differentiators-section .differentiator-card-feature {
    padding: 24px 22px;
    aspect-ratio: auto;
    border-radius: 24px;
  }

  .differentiator-card .card-title,
  .differentiator-card-feature .card-title,
  .differentiator-card .card-copy {
    max-width: none;
  }

  .differentiator-card-feature .metric-value {
    font-size: clamp(3.45rem, 13vw, 4.8rem);
  }

  /* ── Contact ── */
  .contact-details-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .contact-detail {
    padding: 24px 22px 22px;
  }

  /* ── Office cards ── */
  .office-card--mvd {
    background: url('../images/photo-montevideo.jpg') center / cover no-repeat scroll;
    min-height: 240px;
  }

  .office-card--pde {
    background: url('../images/photo-punta-del-este.jpg') center / cover no-repeat scroll;
    min-height: 240px;
  }

  /* ── Modalities ── */
  .modalities-section {
    background:
      radial-gradient(circle at 14% 10%, rgba(198, 156, 109, 0.12), transparent 34%),
      linear-gradient(180deg, #f6f0e8 0%, #ece3d7 100%);
  }

  .modalities-header .section-title {
    max-width: 100%;
  }

  .modalities-grid .modality-card {
    padding: 24px 20px 22px;
    grid-template-rows: auto auto auto;
    border-radius: 24px;
  }

  .property-modalities-grid .modality-card,
  .modalities-comparison-grid .modality-comparison-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
    grid-template-rows: auto 1fr;
  }

  .property-modalities-title {
    max-width: 100%;
  }

  .family-audience-title {
    max-width: 100%;
  }

  /* ── Property showcase ── */
  .property-showcase-section {
    padding: 84px 0;
  }

  .property-showcase-grid {
    gap: 28px;
  }

  .property-showcase-media-wrap {
    padding: 12px 0 0 12px;
  }

  .property-showcase-media-wrap::before {
    inset: 0 36px 56px 0;
    border-radius: 28px;
  }

  .property-showcase-media {
    min-height: 460px;
    border-radius: 28px;
  }

  .property-showcase-float {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .property-showcase-copy .section-title {
    max-width: 100%;
    font-size: clamp(1.95rem, 6.8vw, 2.45rem);
  }

  .property-showcase-copy .section-copy {
    max-width: 100%;
  }

  .property-showcase-pillars {
    margin-top: 28px;
  }

  .property-showcase-pillar {
    padding: 18px 0 16px;
  }

  .property-showcase-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* ── Value section ── */
  .value-section {
    padding: 84px 0;
  }

  .value-copy {
    padding: 0;
  }

  .value-accordion {
    flex-direction: column;
    min-height: auto;
    gap: 14px;
  }

  .value-accordion-panel,
  .value-accordion-panel:first-child {
    flex: none;
    min-height: 240px;
    border-radius: 28px;
  }

  .value-accordion:hover .value-accordion-panel,
  .value-accordion:hover .value-accordion-panel:hover {
    flex-grow: 1;
    transform: none;
  }

  .value-accordion-copy {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px 22px;
  }

  .value-accordion-copy h3,
  .value-accordion-copy p {
    max-width: none;
  }

  /* ── Trust section ── */
  .trust-section {
    padding: 84px 0;
  }

  .trust-section .trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  .trust-section .trust-panel {
    min-width: 0;
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .trust-section-intro {
    margin-bottom: 28px;
  }

  .trust-section .section-title {
    max-width: 100%;
  }

  .trust-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 20px;
  }

  .trust-card-copy {
    max-width: 100%;
  }

  /* ── FAQ premium ── */
  .faq-section-premium .faq-unified {
    border-radius: 28px;
  }

  .faq-section-premium .faq-intro {
    padding: 26px 18px 24px;
  }

  .faq-section-premium .faq-card {
    padding: 0 18px 14px;
    border-radius: 0;
  }

  .faq-section-premium .faq-item {
    border-radius: 0;
  }

  .faq-section-premium .faq-button {
    gap: 16px;
    padding: 20px 0 18px;
    border-radius: 0;
    font-size: 0.98rem;
  }

  .faq-section-premium .faq-icon {
    --faq-icon-size: 38px;
    flex-basis: var(--faq-icon-size);
    width: var(--faq-icon-size);
    min-width: var(--faq-icon-size);
    max-width: var(--faq-icon-size);
    height: var(--faq-icon-size);
    min-height: var(--faq-icon-size);
    max-height: var(--faq-icon-size);
    border-radius: 13px;
  }

  .faq-section-premium .faq-answer {
    padding: 0 0 0;
  }

  .faq-section-premium .faq-answer p {
    padding-right: 0;
  }

  /* ── Section title global override ── */
  .section-title,
  .services-section .section-title,
  .value-copy .section-title,
  .trust-section .section-title,
  .floating-panel h2 {
    max-width: 100%;
    font-size: clamp(1.58rem, 6vw, 1.95rem);
    line-height: 1.1;
  }
}


/* ========================================================================== */
/* @media (hover: hover) and (pointer: fine)                                  */
/* ========================================================================== */

@media (hover: hover) and (pointer: fine) {

  /* ── Service card flip on hover ── */
  .services-section .services-grid > .service-card:hover,
  .services-section .services-grid > .service-card:focus-within {
    transform: translateY(-8px);
  }

  .services-section .services-grid > .service-card:hover .services-card-inner,
  .services-section .services-grid > .service-card:focus-within .services-card-inner {
    transform: rotateY(180deg);
  }

  .services-section .services-grid > .service-card:hover .services-card-front .services-card-media img,
  .services-section .services-grid > .service-card:focus-within .services-card-front .services-card-media img {
    transform: scale(1.08);
  }

  .services-section .services-grid > .service-card:hover .services-card-face,
  .services-section .services-grid > .service-card:focus-within .services-card-face {
    box-shadow:
      0 28px 58px rgba(17, 22, 29, 0.18),
      0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .services-section .services-grid > .service-card:hover .services-card-front,
  .services-section .services-grid > .service-card:focus-within .services-card-front {
    pointer-events: none;
  }

  .services-section .services-grid > .service-card:hover .services-card-back,
  .services-section .services-grid > .service-card:focus-within .services-card-back {
    pointer-events: auto;
  }
}


/* ========================================================================== */
/* @media (hover: none), (max-width: 980px)                                   */
/* ========================================================================== */

@media (hover: none), (max-width: 980px) {

  /* ── Service card stacked layout (no flip) ── */
  .services-section .services-grid > .service-card {
    perspective: none;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(95, 82, 67, 0.16);
    background: #ffffff;
    box-shadow:
      0 18px 38px rgba(17, 22, 29, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .services-section .services-card-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    transform: none !important;
  }

  .services-section .services-card-face {
    position: relative;
    inset: auto;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .services-section .services-card-front {
    min-height: 280px;
    border-radius: 28px 28px 0 0;
  }

  .services-section .services-card-back {
    display: flex;
    border-radius: 0 0 28px 28px;
    pointer-events: auto;
  }

  .services-section .services-card-front-content {
    gap: 12px;
  }

  .services-section .services-card-front-content .card-title {
    max-width: 14ch;
  }

  .services-section .services-card-back-title {
    display: none;
  }

  .services-section .services-card-body {
    padding: 24px;
  }

  .services-section .services-card-hint {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Extra-small devices (≤480px)                                              */
/* ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .shell,
  .shell-wide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }

  .section-title {
    font-size: clamp(1.42rem, 6vw, 1.72rem);
  }

  .lead,
  .section-copy {
    font-size: 0.96rem;
  }

  .faq-button {
    font-size: 0.92rem;
    padding: 18px 0;
  }

  .faq-card {
    padding: 10px 16px;
  }

  .btn {
    font-size: 0.82rem;
    padding: 14px 22px;
  }

  .brand-link img {
    width: clamp(140px, 38vw, 170px);
  }

  .contact-chip {
    font-size: 0.82rem;
  }

  .comparison-card,
  .support-card {
    padding: 20px 16px;
  }

  .bio-card {
    padding: 20px;
  }
}

