/* Avo - refreshed site styles (v13) */

/* ============ BASE OVERRIDES ============ */
body { padding-bottom: 0; background: var(--bg); }

.container { max-width: 1520px; }

/* Better type rhythm */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 400;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.italic-accent { font-style: italic; font-weight: 300; color: #B6534A; }
.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--fg-muted);
}

/* ============ LANGUAGE SWITCHER (top nav) ============ */
.lang-switcher {
  position: relative;
  display: inline-flex; align-items: center;
}
.lang-switcher__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  opacity: 0.82;
}
.lang-switcher__btn:hover { opacity: 1; color: #B6534A; border-color: #B6534A; }
.lang-switcher__flag {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #B6534A;
  color: var(--ivory-50);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0;
}
.lang-switcher__caret { transition: transform var(--dur-fast) var(--ease); }
.lang-switcher.open .lang-switcher__caret { transform: rotate(180deg); }
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: var(--ivory-50);
  color: var(--ink-900);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 60px rgba(14, 31, 24, 0.22);
  padding: 8px;
  z-index: 100;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.lang-switcher.open .lang-switcher__menu {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.lang-switcher__item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  text-align: start;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  font-family: var(--font-body);
  color: var(--ink-900);
}
.lang-switcher__item:hover { background: var(--ivory-100); }
.lang-switcher__item.on { background: var(--ivory-100); }
.lang-switcher__item.on .lang-switcher__chk { opacity: 1; color: #B6534A; }
.lang-switcher__code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #B6534A;
  font-weight: 600;
}
.lang-switcher__native {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink-900);
}
.lang-switcher__en {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 2px;
}
.lang-switcher__chk {
  opacity: 0;
  color: var(--rule);
  font-family: var(--font-mono);
  font-size: 14px;
}

/* ============ TOP NAV v2 ============ */
.nav2 {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--fg-on-dark);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav2.scrolled {
  background: rgba(14, 31, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(247,243,234,0.1);
}
.nav2__inner {
  max-width: 1520px;
  margin: 0 auto;
  width: 100%;
  padding: 14px clamp(14px, 2vw, var(--pad-x));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: center;
}
.nav2__logo { display: inline-flex; align-items: baseline; gap: 14px; color: inherit; }
.nav2__mark {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}
.nav2__word {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav2__links { display: flex; gap: clamp(8px, 1vw, 16px); justify-content: center; align-items: center; flex-wrap: nowrap; white-space: nowrap; min-width: 0; }
.nav2__links > * { display: inline-flex; align-items: center; height: 16px; line-height: 1; }
.nav2__links .nav2__link, .nav2__links .nav2__link--btn { height: 16px; padding: 0; box-sizing: border-box; }
.nav2__links .nav2__link.on::after { bottom: -3px; }
.nav2__link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 1;
  position: relative;
  padding: 0 0 3px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--dur) var(--ease);
}
.nav2__link:hover { opacity: 0.7; }
.nav2__link.on { opacity: 1; }
.nav2__link.on::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent-warm);
}
.nav2__right { display: flex; align-items: center; gap: clamp(8px, 1vw, 14px); justify-content: flex-end; min-width: 0; }
.nav2__utility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: max-content;
}
.nav2__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav2__social-link {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.82;
  transition: opacity var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav2__social-link:hover {
  opacity: 1;
  color: var(--accent-warm);
  border-color: var(--accent-warm);
  transform: translateY(-1px);
}
.nav2__social-link svg { width: 14px; height: 14px; fill: currentColor; display: block; }

/* Guides dropdown in nav */
.nav2__dd { position: relative; display: inline-flex; align-items: center; }
.nav2__link--btn { background: transparent; border: 0; cursor: pointer; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: inherit; opacity: 1; margin: 0; padding: 0 0 3px; display: inline-flex; align-items: center; line-height: 1; vertical-align: baseline; }
.nav2__dd-menu {
  position: absolute; top: calc(100% + 22px); left: 50%; transform: translateX(-50%) translateY(-6px);
  display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 22px;
  min-width: 620px; padding: 22px 24px;
  background: var(--ink-900, #0E1F18); color: var(--ivory-50, #F7F3EA);
  border: 1px solid rgba(212, 165, 114, 0.18);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
  z-index: 100;
}
.nav2__dd.open .nav2__dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav2__dd-col { display: flex; flex-direction: column; gap: 6px; }
.nav2__dd-cat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-warm, #D4A572); margin-bottom: 6px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(212, 165, 114, 0.18);
}
.nav2__dd-item {
  display: block; padding: 8px 10px; border-radius: 8px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 13px; line-height: 1.35; text-decoration: none;
  text-transform: none; letter-spacing: normal;
  transition: background 160ms ease, color 160ms ease;
}
.nav2__dd-item:hover { background: rgba(212, 165, 114, 0.12); color: var(--ivory-50, #F7F3EA); }
.nav2__dd-item--rich { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; }
.nav2__dd-item-t { font-size: 13px; font-weight: 500; color: var(--ivory-50, #F7F3EA); }
.nav2__dd-item-d { font-size: 11.5px; color: rgba(247, 243, 234, 0.6); line-height: 1.4; }
.nav2__dd-menu--services { grid-template-columns: minmax(280px, 1fr); min-width: 320px; }

/* Mobile burger */
.nav2__burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; color: inherit; }
.nav2__burger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px 0; border-radius: 2px; }

/* Mobile-only compact pages dropdown (hidden by default on desktop) */
.nav2__pages-mobile { display: none; }

@media (max-width: 900px) and (min-width: 641px) {
  /* Tablet: keep Home, About, Listings in the nav bar; hide the rest */
  .nav2__inner { grid-template-columns: auto 1fr auto; gap: 8px; padding: 14px 16px; }
  .nav2__links { display: flex; gap: 14px; }
  .nav2__hide-tablet { display: none !important; }
  .nav2__burger { display: inline-flex; flex-direction: column; }
  .nav2__utility { flex-direction: row; gap: 8px; }
  .nav2__social { display: flex; }
}

@media (max-width: 640px) {
  /* Mobile: hide full link list, show compact pages dropdown instead */
  .nav2__links { display: none; }
  .nav2__pages-mobile { display: inline-flex; align-items: center; }
  .nav2__inner { grid-template-columns: auto auto 1fr auto; gap: 8px; padding: 14px 16px; }
  .nav2__burger { display: inline-flex; flex-direction: column; }
  .nav2__utility { flex-direction: row; gap: 8px; }
  .nav2__social { display: flex; }
  /* Anchor the mobile pages dropdown menu to the left edge so it doesn't overflow the screen */
  .nav2__pages-dd .nav2__dd-menu {
    left: 0; transform: translateX(0) translateY(-6px);
    min-width: 200px;
  }
  .nav2__pages-dd.open .nav2__dd-menu {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 640px) {
  .nav2__inner { padding: 12px 12px; gap: 6px; }
  .nav2__logo { gap: 8px; }
  .nav2__mark { width: 32px; height: 32px; font-size: 18px; }
  .nav2__word { display: none; }
  .nav2__right { gap: 6px; }
  .nav2__utility { gap: 6px; }
  .nav2__social { gap: 4px; }
  .nav2__social-link { width: 24px; height: 24px; }
  .nav2__social-link svg { width: 12px; height: 12px; }
  .nav2__right .btn--copper {
    padding: 0 !important;
    width: 40px; height: 40px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    gap: 0 !important;
    overflow: hidden;
    text-indent: 0;
  }
  .nav2__right .btn--copper::before {
    content: "";
    width: 14px; height: 14px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
  }
  .nav2__right .btn--copper .arrow { display: none !important; width: 0 !important; height: 0 !important; margin: 0 !important; }
  .lang-switcher__btn { padding: 8px 10px; gap: 4px; }
  .lang-switcher__btn > span:not(.lang-switcher__flag) { display: none; }
  .lang-switcher__menu { right: 0; left: auto; }
  .nav2__burger { padding: 6px; }
}

/* Mobile drawer */
.nav2__mobile {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 31, 24, 0.6);
  backdrop-filter: blur(6px);
  display: flex; justify-content: flex-end;
  animation: navFade .2s ease;
}
@keyframes navFade { from { opacity: 0; } to { opacity: 1; } }
.nav2__mobile-inner {
  width: min(380px, 90vw); height: 100%;
  background: var(--ink-900, #0E1F18); color: var(--ivory-50, #F7F3EA);
  padding: 64px 28px 32px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
  animation: navSlide .25s ease;
  position: relative;
}
@keyframes navSlide { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.nav2__mobile-close {
  position: absolute; top: 18px; right: 22px;
  background: transparent; border: 0; color: inherit; font-size: 32px; line-height: 1; cursor: pointer;
}
.nav2__mobile-link {
  padding: 14px 8px; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(247, 243, 234, 0.86); text-decoration: none;
  border-bottom: 1px solid rgba(247, 243, 234, 0.06);
}
.nav2__mobile-link:hover { color: var(--accent-warm, #D4A572); }
.nav2__mobile-cat {
  margin-top: 22px; padding: 10px 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-warm, #D4A572);
}
.nav2__mobile-sub {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 12px; border-radius: 10px;
  color: rgba(247, 243, 234, 0.86); text-decoration: none; font-size: 14px;
  transition: background 150ms ease;
}
.nav2__mobile-sub:hover { background: rgba(212, 165, 114, 0.1); }
.nav2__mobile-sub-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-warm, #D4A572); }

/* ============ HERO v2 - editorial split with Avo portrait ============ */
.hero2 {
  position: relative;
  min-height: 100vh;
  color: var(--ivory-50);
  overflow: hidden;
  margin-top: -80px; padding-top: 80px;
  display: flex; align-items: center;
  padding-bottom: clamp(40px, 6vh, 80px);
}
.hero2__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  animation: kenburns 28s ease-in-out infinite alternate;
  z-index: 0;
  filter: saturate(0.92);
}
.hero2__tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(14,31,24,0.55) 0%, rgba(14,31,24,0.15) 70%, transparent 100%),
    linear-gradient(180deg, rgba(14,31,24,0.7) 0%, rgba(14,31,24,0.5) 30%, rgba(14,31,24,0.6) 55%, rgba(14,31,24,0.95) 100%),
    linear-gradient(90deg, rgba(14,31,24,0.55) 0%, rgba(14,31,24,0.3) 55%, rgba(14,31,24,0.7) 100%);
}
.hero2__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.08; mix-blend-mode: overlay;
  background-image: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0, transparent 1px, transparent 2px);
}
.hero2__stage {
  position: relative; z-index: 3; width: 100%;
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  justify-content: center;
}

/* --- Portrait frame (left) --- */
.hero2__portrait-wrap {
  position: relative;
  display: flex; flex-direction: column;
  animation: floatup 1s var(--ease) both;
}
@keyframes floatup {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero2__portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--forest-900, #0E1F18);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 10px 24px rgba(0,0,0,0.35);
}
.hero2__portrait {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(1.03) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.hero2__portrait-frame:hover .hero2__portrait { transform: scale(1.03); }
.hero2__portrait-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--accent-warm);
  pointer-events: none;
  z-index: 2;
}
.hero2__portrait-corner--tl {
  top: 14px; left: 14px;
  border-right: 0; border-bottom: 0;
}
.hero2__portrait-corner--br {
  bottom: 14px; right: 14px;
  border-left: 0; border-top: 0;
}
.hero2__portrait-plaque {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 2px 0;
  border-top: 1px solid rgba(247,243,234,0.22);
  margin-top: 18px;
}
.hero2__plaque-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--accent-warm);
}
.hero2__plaque-role {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.68);
}

/* --- Content (right) --- */
.hero2__content {
  display: flex; flex-direction: column;
}
.hero2__eyebrow-row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: clamp(28px, 4vh, 56px);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(247,243,234,0.82);
}
.hero2__rule { flex: 0 1 160px; height: 1px; background: rgba(247,243,234,0.3); }
.hero2__title {
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
}
.hero2__title .hero2__line { display: block; }
.hero2__title .hero2__line:nth-child(2) { padding-left: 2vw; }
.hero2__title .hero2__line:nth-child(3) { padding-left: 0; }
.hero2__slogan-wrap {
  position: relative;
  display: inline-block;
  margin-top: clamp(20px, 3vh, 32px);
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
}
.hero2__slogan {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #0E1F18;
  max-width: 34ch;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.hero2__slogan-q {
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.6em;
  line-height: 0.8;
  color: #0E1F18;
  opacity: 0.85;
}
.hero2__slogan-q--open { align-self: flex-start; }
.hero2__slogan-q--close { align-self: flex-end; }
.hero2__slogan-text { display: inline; }

/* Laser dot traveling around rectangular border */
.hero2__laser {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.hero2__laser::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(14, 31, 24, 0.12);
  border-radius: 2px;
}
.hero2__laser::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg,
    rgba(212, 165, 114, 0) 0%,
    rgba(212, 165, 114, 0.7) 30%,
    #d4a572 50%,
    rgba(212, 165, 114, 0.7) 70%,
    rgba(212, 165, 114, 0) 100%);
  box-shadow:
    0 0 10px 2px rgba(212, 165, 114, 0.8),
    0 0 22px 4px rgba(212, 165, 114, 0.45);
  offset-path: rect(0 100% 100% 0 round 4px);
  offset-distance: 0%;
  offset-rotate: auto;
  animation: heroLaserDot 5s linear infinite;
}
@keyframes heroLaserDot {
  to { offset-distance: 100%; }
}
/* Fallback for browsers without offset-path */
@supports not (offset-path: rect(0 100% 100% 0)) {
  .hero2__laser::after {
    width: 140px;
    animation: heroLaserHop 5s steps(1, end) infinite;
  }
  @keyframes heroLaserHop {
    0%   { top: -2px; left: 0; transform: rotate(0deg); }
    25%  { top: 0; left: calc(100% - 140px); transform: rotate(0deg); }
    50%  { top: calc(100% - 2px); left: calc(100% - 140px); transform: rotate(0deg); }
    75%  { top: calc(100% - 2px); left: 0; transform: rotate(0deg); }
    100% { top: -2px; left: 0; transform: rotate(0deg); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero2__laser::after { animation-duration: 12s; }
}
.hero2__alias {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(20px, 3vh, 32px);
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(212, 165, 114, 0.45);
  background: rgba(14, 31, 24, 0.32);
  backdrop-filter: blur(4px);
  align-self: flex-start;
  animation: floatup 0.9s var(--ease) both;
}
.hero2__alias-mark {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 4px rgba(212, 165, 114, 0.18);
  flex-shrink: 0;
}
.hero2__alias-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: -0.005em;
  color: var(--ivory-50);
  line-height: 1.2;
}
.hero2__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  margin-top: clamp(32px, 5vh, 56px);
  padding-top: 28px;
  border-top: 1px solid rgba(247,243,234,0.22);
  flex-wrap: wrap;
}
.hero2__kicker { max-width: 480px; color: rgba(247,243,234,0.88); }
.hero2__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero2__scroll {
  position: absolute; right: 40px; bottom: 24px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(247,243,234,0.6);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
}
.hero2__scroll::before {
  content: ""; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(247,243,234,0.8), transparent);
  animation: hsi 2.4s ease-in-out infinite;
}
@keyframes hsi {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Tablet / small laptop: stack portrait above */
@media (max-width: 1080px) {
  .hero2__stage { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero2__portrait-wrap { max-width: 320px; }
  .hero2__title { font-size: clamp(48px, 10vw, 80px); }
}

/* RTL hero */
[dir="rtl"] .hero2__title .hero2__line:nth-child(2) { padding-left: 0; padding-right: 4vw; }
[dir="rtl"] .hero2__title .hero2__line:nth-child(3) { padding-left: 0; padding-right: 1.5vw; }
[dir="rtl"] .hero2__stage { grid-template-columns: 1fr minmax(320px, 420px); }
[dir="rtl"] .hero2__portrait-corner--tl { left: auto; right: 14px; border-right: 1px solid var(--accent-warm); border-left: 0; }
[dir="rtl"] .hero2__portrait-corner--br { right: auto; left: 14px; border-left: 1px solid var(--accent-warm); border-right: 0; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--bg-dark);
  color: var(--ivory-50);
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(247,243,234,0.1);
  border-bottom: 1px solid rgba(247,243,234,0.1);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 48px;
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ivory-50);
}
.marquee__dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-warm); flex-shrink: 0; }

/* ============ STATS DOCK ============ */
.stats {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  max-width: 1520px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stats__cell {
  padding: 0 32px;
  border-inline-start: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur) var(--ease);
}
.stats__cell:first-child { border-inline-start: 0; padding-inline-start: 0; }
.stats__cell:hover { transform: translateY(-4px); }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #B6534A;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.stats__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); }
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats__cell { border: 0; padding: 0; }
}

/* ============ INTRO QUOTE ============ */
.intro2 {
  padding: clamp(100px, 16vh, 180px) 0;
  text-align: center;
  background: var(--bg);
}
.intro2__inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; gap: 40px; align-items: center;
}
.intro2__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.28;
  letter-spacing: -0.018em;
  color: var(--fg);
  text-wrap: balance;
  position: relative;
  padding-top: 40px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.intro2__quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent);
  line-height: 0;
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
}
.intro2__sig {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  min-width: 280px;
}
.intro2__sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.intro2__sig-role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted); }
.intro2__chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: -8px;
}
.intro2__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg-alt);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.intro2__chip:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.intro2__chip-ico { color: var(--accent); font-size: 13px; line-height: 1; }
.intro2__rule {
  display: flex; align-items: center; gap: 14px; width: 100%; max-width: 520px;
  color: var(--accent);
  margin-top: -8px;
}
.intro2__rule span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--rule-strong), transparent); }
.intro2__rule em { font-style: normal; font-size: 16px; opacity: 0.7; }

/* ============ SERVICES BENTO ============ */
.svc2 { padding: clamp(100px, 14vh, 160px) 0; background: var(--bg-alt); }
.svc2__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 0 var(--pad-x);
  max-width: 1520px; margin: 0 auto clamp(56px, 8vh, 96px);
  align-items: end;
}
.svc2__head .display-2 { max-width: 14ch; }
.svc2__grid {
  max-width: 1520px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.svc2__card {
  padding: 40px 32px;
  border-inline-end: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 380px;
  background: var(--bg-alt);
  color: var(--fg);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.svc2__card:last-child { border-inline-end: 0; }
.svc2__card:hover { background: var(--fg); color: var(--bg); }
.svc2__card:hover .svc2__num { color: var(--accent-warm); }
.svc2__card:hover .svc2__blurb { color: rgba(247,243,234,0.82); }
.svc2__top { display: flex; justify-content: space-between; align-items: center; }
.svc2__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.svc2__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 42px);
  letter-spacing: -0.02em;
  margin-top: auto;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.svc2__blurb { font-size: 14px; line-height: 1.65; color: var(--fg-muted); transition: color var(--dur) var(--ease); }
.svc2__learn { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; color: var(--accent); }
@media (max-width: 900px) { .svc2__grid { grid-template-columns: 1fr; } .svc2__card { border-inline-end: 0; } .svc2__head { grid-template-columns: 1fr; } }

/* ============ ESTATES SPLIT IMAGERY ============ */
.estates { padding: clamp(100px, 14vh, 160px) 0; background: var(--bg); }
.estates__head {
  max-width: 1520px; margin: 0 auto clamp(56px, 8vh, 88px);
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: end; gap: 48px;
}
.estates__grid {
  max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 24px;
}
.estate-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-tint);
  min-height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--ivory-50);
}
.estate-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease);
}
.estate-card:hover .estate-card__img { transform: scale(1.06); }
.estate-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,31,24,0) 40%, rgba(14,31,24,0.85) 100%);
}
.estate-card__meta {
  position: relative; z-index: 1;
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.estate-card__tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 6px 10px;
  background: rgba(247,243,234,0.95);
  color: var(--ink-900);
}
.estate-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.estate-card__row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.estate-card--big { grid-column: span 7; grid-row: span 2; min-height: 560px; }
.estate-card--tall { grid-column: span 5; grid-row: span 2; min-height: 560px; }
.estate-card--wide { grid-column: span 6; min-height: 360px; }
@media (max-width: 900px) {
  .estates__grid { grid-template-columns: 1fr; }
  .estate-card--big, .estate-card--tall, .estate-card--wide { grid-column: 1 / -1; min-height: 380px; }
}

/* ============ BENTO TESTIMONIALS ============ */
.bento { padding: clamp(100px, 14vh, 160px) 0; background: var(--bg-dark); color: #ffffff; }
.bento, .bento__head, .bento__head *, .bento__quote, .bento__name { color: #ffffff !important; }
.bento__town { color: rgba(255,255,255,0.7) !important; }
.bento__head {
  max-width: 1520px; margin: 0 auto clamp(56px, 8vh, 88px);
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; gap: 20px;
}
.bento__grid {
  max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento__card {
  background: var(--forest-800);
  border: 1px solid rgba(247,243,234,0.08);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bento__card:hover { border-color: var(--accent-warm); transform: translateY(-4px); }
.bento__card--1 { grid-column: span 4; grid-row: span 2; }
.bento__card--2 { grid-column: span 2; }
.bento__card--3 { grid-column: span 2; }
.bento__card--4 { grid-column: span 3; }
.bento__card--5 { grid-column: span 3; }
.bento__mark {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.6;
  color: var(--accent-warm);
  font-style: italic;
  font-weight: 300;
  opacity: 0.8;
}
.bento__quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(247,243,234,0.94);
  font-weight: 300;
}
.bento__card--1 .bento__quote { font-size: clamp(22px, 2vw, 32px); font-style: italic; }
.bento__foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(247,243,234,0.1);
}
.bento__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 1px solid rgba(247,243,234,0.2);
  flex-shrink: 0;
}
.bento__name { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--ivory-50); }
.bento__town { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,243,234,0.55); margin-top: 3px; display: block; }
.bento__rating { display: flex; gap: 2px; color: var(--accent-warm); font-size: 12px; }
@media (max-width: 1000px) {
  .bento__grid { grid-template-columns: 1fr 1fr; }
  .bento__card--1, .bento__card--2, .bento__card--3, .bento__card--4, .bento__card--5 { grid-column: span 2; grid-row: auto; }
}

/* ============ VALUATION / MOAT / INSIGHTS / CONTACT - compact v2 ============ */
.val2 { background: var(--bg-dark-alt); color: var(--ivory-50); padding: clamp(100px, 14vh, 160px) 0; }
.val2__wrap {
  max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.val2__form { display: flex; flex-direction: column; gap: 14px; }
.val2__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-warm); }
.val2__row { display: flex; gap: 16px; }
.val2__input {
  flex: 1; background: transparent;
  border: 0; border-bottom: 1px solid rgba(247,243,234,0.3);
  color: var(--ivory-50);
  font-size: 18px;
  padding: 16px 0;
  outline: none;
}
.val2__input::placeholder { color: rgba(247,243,234,0.4); }
.val2__input:focus { border-color: var(--accent-warm); }
.val2__fine { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: rgba(247,243,234,0.5); }
@media (max-width: 900px) { .val2__wrap { grid-template-columns: 1fr; gap: 40px; } .val2__row { flex-direction: column; } }

.moat { padding: clamp(100px, 14vh, 160px) 0; background: var(--bg); }
.moat__wrap {
  max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px;
}
.moat__list { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.moat__row {
  display: grid; grid-template-columns: 40px 1fr auto 1fr; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.moat__row:hover { padding-inline: 16px; background: var(--bg-alt); }
.moat__num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.14em; }
.moat__native { font-family: var(--font-display); font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.01em; }
.moat__en { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted); }
.moat__hello { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--accent); text-align: end; font-weight: 300; }
@media (max-width: 900px) { .moat__wrap { grid-template-columns: 1fr; gap: 40px; } .moat__row { grid-template-columns: 32px 1fr auto; } .moat__en { display: none; } }

/* ============ AWARDS ============ */
.awards { padding: clamp(100px, 14vh, 160px) 0; background: var(--bg-alt); }
.awards__wrap { max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x); }
.awards__head { max-width: 760px; margin-bottom: clamp(56px, 8vh, 88px); }
.awards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.awards__card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.awards__card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 114, 0.45);
  box-shadow: 0 24px 60px -24px rgba(14, 31, 24, 0.25), 0 0 0 1px rgba(212, 165, 114, 0.25);
}
.awards__media {
  aspect-ratio: 4 / 3;
  background: #f4efe6;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.awards__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 600ms var(--ease);
}
.awards__card:hover .awards__media img { transform: scale(1.04); }
.awards__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.awards__meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.awards__rule { display: inline-block; width: 24px; height: 1px; background: var(--accent); opacity: 0.6; }
.awards__level { color: var(--fg-muted); }
.awards__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-weight: 400;
}
.awards__copy { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin-top: 4px; }
@media (max-width: 1100px) { .awards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .awards__grid { grid-template-columns: 1fr; gap: 20px; } }

.guides { padding: clamp(100px, 14vh, 160px) 0; background: var(--bg-alt); }
.guides__head {
  max-width: 1520px; margin: 0 auto clamp(56px, 8vh, 88px);
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: end; gap: 40px;
  position: relative; z-index: 50;
}
.guides__grid { max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.guide-card { color: inherit; display: flex; flex-direction: column; gap: 18px; cursor: pointer; padding: 14px; border-radius: 16px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease); }
.guide-card:hover {
  transform: translateY(-6px);
  background: rgba(212, 165, 114, 0.06);
  box-shadow: 0 0 0 1px rgba(212, 165, 114, 0.35), 0 24px 60px -20px rgba(212, 165, 114, 0.45), 0 12px 36px -12px rgba(14, 31, 24, 0.25);
}
.guide-card__img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; position: relative; overflow: hidden; border-radius: 8px; transition: box-shadow var(--dur) var(--ease); }
.guide-card:hover .guide-card__img { box-shadow: 0 0 40px rgba(212, 165, 114, 0.4); }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.guide-card:hover .guide-card__img img { transform: scale(1.06); }
.guide-card:hover .guide-card__title { color: var(--accent-warm, #D4A572); }
.guide-card__title { transition: color var(--dur) var(--ease); }
.guide-card__kicker {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-warm); background: rgba(14,31,24,0.7); padding: 6px 10px;
}
.guide-card__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
.guide-card__title { font-family: var(--font-display); font-size: 22px; line-height: 1.22; letter-spacing: -0.015em; max-width: 24ch; }
@media (max-width: 900px) { .guides__grid { grid-template-columns: 1fr; } }

.cta2 { padding: clamp(120px, 20vh, 220px) 0; background: var(--bg-dark); color: var(--ivory-50); text-align: center; }
.cta2__wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta2__title { font-size: clamp(72px, 11vw, 180px); line-height: 0.9; }
.cta2__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; width: 100%; padding: 40px 0; border-top: 1px solid rgba(247,243,234,0.18); border-bottom: 1px solid rgba(247,243,234,0.18); margin: 16px 0; }
.cta2__ln { display: flex; flex-direction: column; gap: 6px; align-items: center; color: inherit; }
.cta2__lbl { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(247,243,234,0.55); }
.cta2__val { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.01em; line-height: 1.3; }
.cta2__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta2__form-link { border-color: rgba(247,243,234,0.28); color: var(--ivory-50); }
.cta2__bottom { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr); gap: clamp(22px, 3vw, 42px); align-items: stretch; margin-top: 10px; text-align: left; }
.cta2__form { background: rgba(247,243,234,0.06); border: 1px solid rgba(247,243,234,0.14); padding: clamp(18px, 3vw, 30px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cta2__form label { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.cta2__form label span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,243,234,0.58); }
.cta2__form input, .cta2__form textarea { width: 100%; border: 1px solid rgba(247,243,234,0.16); background: rgba(247,243,234,0.08); color: var(--ivory-50); padding: 14px 15px; font: inherit; outline: none; border-radius: 0; }
.cta2__form input::placeholder, .cta2__form textarea::placeholder { color: rgba(247,243,234,0.42); }
.cta2__form input:focus, .cta2__form textarea:focus { border-color: var(--accent-warm); background: rgba(247,243,234,0.11); }
.cta2__field--full, .cta2__submit { grid-column: 1 / -1; }
.cta2__submit { justify-self: start; }
.cta2__fine { grid-column: 1 / -1; margin: 0; color: rgba(247,243,234,0.62); font-size: 13px; line-height: 1.5; }
.cta2__map { min-height: 420px; background: rgba(247,243,234,0.06); border: 1px solid rgba(247,243,234,0.14); overflow: hidden; }
.cta2__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }
@media (max-width: 900px) { .cta2__meta, .cta2__bottom, .cta2__form { grid-template-columns: 1fr; gap: 24px; } .cta2__map { min-height: 340px; } }

.footer2 { background: #050C09; color: rgba(247,243,234,0.75); padding: 80px 0 24px; }
.footer2__inner { max-width: 1520px; margin: 0 auto; padding: 0 var(--pad-x) 48px; display: grid; grid-template-columns: 1.3fr 2fr; gap: 64px; }
.footer2__brand { display: flex; flex-direction: column; gap: 8px; }
.footer2__mark { width: 48px; height: 48px; border: 1px solid var(--ivory-50); color: var(--ivory-50); font-family: var(--font-display); font-style: italic; font-size: 24px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.footer2__name { font-family: var(--font-display); font-size: 30px; letter-spacing: -0.02em; color: var(--ivory-50); }
.footer2__role { font-size: 12px; color: rgba(247,243,234,0.55); }
.footer2__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer2__col { display: flex; flex-direction: column; gap: 10px; }
.footer2__col a, .footer2__col span { font-size: 13px; color: rgba(247,243,234,0.72); transition: color var(--dur-fast) var(--ease); }
.footer2__col a:hover { color: var(--accent-warm); }
.footer2__col .eyebrow { color: var(--accent-warm); margin-bottom: 6px; }
.footer2__social { max-width: 1520px; margin: 24px auto 0; padding: 20px var(--pad-x) 0; display: flex; flex-wrap: wrap; gap: 14px; border-top: 1px solid rgba(247,243,234,0.08); align-items: center; }
.footer2__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: rgba(247,243,234,0.65); background: rgba(247,243,234,0.04); border: 1px solid rgba(247,243,234,0.1); text-decoration: none; transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.footer2__social a:hover { color: rgba(247,243,234,1); background: rgba(247,243,234,0.1); border-color: rgba(247,243,234,0.25); transform: translateY(-1px); }
.footer2__bottom { max-width: 1520px; margin: 0 auto; padding: 24px var(--pad-x) 0; display: flex; justify-content: space-between; border-top: 1px solid rgba(247,243,234,0.08); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: rgba(247,243,234,0.4); }
@media (max-width: 900px) { .footer2__inner { grid-template-columns: 1fr; } .footer2__cols { grid-template-columns: 1fr 1fr; } .footer2__bottom { flex-direction: column; gap: 8px; } }

/* Tweaks - keep from before but tiny visual refresh */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 70;
  background: rgba(14, 31, 24, 0.96);
  color: var(--ivory-50);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(247,243,234,0.15);
  width: 280px;
  font-family: var(--font-body);
  font-size: 11px;
}
.tweaks-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid rgba(247,243,234,0.1); }
.tweaks-toggle { background: transparent; border: 0; color: var(--ivory-50); cursor: pointer; font-size: 16px; padding: 0; width: 20px; height: 20px; }
.tweaks-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; max-height: 60vh; overflow-y: auto; }
.tw-row { display: flex; flex-direction: column; gap: 8px; }
.tw-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,243,234,0.55); }
.tw-opts { display: flex; flex-wrap: wrap; gap: 6px; }
.tw-chip { background: transparent; border: 1px solid rgba(247,243,234,0.18); color: rgba(247,243,234,0.75); padding: 6px 10px; font-size: 10px; letter-spacing: 0.08em; cursor: pointer; text-transform: uppercase; transition: all var(--dur-fast) var(--ease); }
.tw-chip:hover { color: var(--ivory-50); border-color: rgba(247,243,234,0.4); }
.tw-chip.on { background: var(--accent); color: var(--ivory-50); border-color: var(--accent); }

/* ============ 06 - Clean Testimonial ============ */
.ctest {
  background: #0E1F18;
  color: var(--ivory-50, #F7F3EA);
  padding: clamp(80px, 12vh, 140px) 0;
}
.ctest__rating {
  max-width: 1100px;
  margin: 0 auto clamp(20px, 3vh, 32px);
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.ctest__stars { display: inline-flex; gap: 6px; color: var(--ivory-50, #F7F3EA); font-size: clamp(28px, 4vw, 44px); line-height: 1; letter-spacing: 2px; }
.ctest__count {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: clamp(40px, 6vw, 68px);
  color: #B6534A;
  line-height: 1;
}
.ctest__ctas {
  max-width: 1100px;
  margin: clamp(24px, 4vh, 40px) auto 0;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; gap: 14px; flex-wrap: wrap;
}
.ctest__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(247,243,234,0.3);
  color: var(--ivory-50, #F7F3EA);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.ctest__cta:hover { background: #B6534A; border-color: #B6534A; color: var(--ivory-50, #F7F3EA); }
.ctest__head {
  max-width: 1100px;
  margin: 0 auto clamp(32px, 5vh, 56px);
  padding: 0 clamp(20px, 4vw, 48px);
}
.ctest__stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 56px) clamp(20px, 4vw, 48px) clamp(48px, 6vh, 72px);
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='20' fill='%23B6534A'/><path d='M16 22h12M22 16l6 6-6 6' stroke='%23F7F3EA' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") 22 22, pointer;
  outline: none;
  min-height: 360px;
}
.ctest__stage:focus-visible { box-shadow: inset 0 0 0 1px var(--accent-warm, #C97B5A); }
.ctest__cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 50;
  transform: translate(-50%, -140%);
  background: #B6534A;
  color: var(--ivory-50, #F7F3EA);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.ctest__cursor.is-on { opacity: 1; }

.ctest__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(28px, 5vh, 48px);
}
.ctest__previews {
  display: flex;
  align-items: center;
}
.ctest__preview {
  width: 28px; height: 28px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(14, 31, 24, 0.15);
  margin-left: -8px;
  filter: grayscale(0.6);
  opacity: 0.55;
  transition: opacity .3s ease, filter .3s ease, transform .3s ease, border-color .3s ease;
}
.ctest__preview:first-child { margin-left: 0; }
.ctest__preview.is-active {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--accent-warm, #C97B5A);
  box-shadow: 0 0 0 2px rgba(201, 123, 90, 0.18);
}

.ctest__index {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(14, 31, 24, 0.5);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ctest__index-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-900, #0E1F18);
  letter-spacing: -0.02em;
}
.ctest__index-sep { opacity: 0.4; }

.ctest__quote {
  font-family: var(--font-display, Georgia, serif);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink-900, #0E1F18);
  margin: 0 0 clamp(40px, 6vh, 72px);
  max-width: 880px;
}
.ctest__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: ctestWord .55s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes ctestWord {
  to { opacity: 1; transform: translateY(0); }
}

.ctest__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 4vh, 40px);
}
.ctest__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(14, 31, 24, 0.12);
  box-shadow: 0 0 0 4px rgba(201, 123, 90, 0.08);
  flex-shrink: 0;
}
.ctest__author-bar {
  width: 1px;
  height: 32px;
  background: var(--accent-warm, #C97B5A);
  opacity: 0.7;
}
.ctest__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-900, #0E1F18);
  letter-spacing: -0.005em;
}
.ctest__role {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 31, 24, 0.5);
  margin-top: 4px;
}

.ctest__progress {
  position: relative;
  height: 1px;
  width: 100%;
  background: rgba(14, 31, 24, 0.12);
  overflow: hidden;
  margin-bottom: 18px;
}
.ctest__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent-warm, #C97B5A);
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}

.ctest__hint {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 31, 24, 0.35);
}

@media (max-width: 640px) {
  .ctest__quote { font-size: clamp(22px, 6vw, 30px); }
  .ctest__index-num { font-size: 22px; }
}

/* Dark theme overrides for testimonial section */
.ctest .ctest__index { color: rgba(247,243,234,0.5); }
.ctest .ctest__index-num { color: var(--ivory-50, #F7F3EA); }
.ctest .ctest__quote { color: var(--ivory-50, #F7F3EA); }
.ctest .ctest__name { color: var(--ivory-50, #F7F3EA); }
.ctest .ctest__role { color: rgba(247,243,234,0.55); }
.ctest .ctest__avatar { border-color: rgba(247,243,234,0.18); }
.ctest .ctest__progress { background: rgba(247,243,234,0.12); }
.ctest .ctest__hint { color: rgba(247,243,234,0.4); }
.ctest .ctest__preview { border-color: rgba(247,243,234,0.18); }


/* ---------- Video Testimonials (2x2 grid w/ glow on hover) ---------- */
.vtest {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
  background: var(--ivory-50, #F7F3EA);
  position: relative;
}
.vtest__head {
  max-width: 920px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}
.vtest__title { margin-top: 18px; color: var(--ink-900, #0E1F18); }
.vtest__sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(14, 31, 24, 0.6);
  font-style: italic;
}
.vtest__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 760px) { .vtest__grid { grid-template-columns: 1fr; } }

.vtest__card { position: relative; grid-column: span 3; }
.vtest__card--portrait {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(420px, 100%);
}
.vtest__card-inner {
  --mx: 50%; --my: 50%;
  position: relative;
  border-radius: 18px;
  padding: 4px;
  background: rgba(14, 31, 24, 0.08);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  overflow: hidden;
}
.vtest__card-inner::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(220px circle at var(--mx) var(--my),
                rgba(182, 83, 74, 0.95),
                rgba(164, 107, 48, 0.55) 35%,
                rgba(182, 83, 74, 0) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 2;
}
.vtest__card-inner:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(182, 83, 74, 0.45),
    0 18px 60px -20px rgba(182, 83, 74, 0.55),
    0 30px 80px -30px rgba(14, 31, 24, 0.45);
}
.vtest__card-inner:hover::before { opacity: 1; }

.vtest__frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0E1F18;
}
.vtest__frame iframe,
.vtest__frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vtest__frame video { object-fit: cover; }
.vtest__caption {
  padding: 14px 18px 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 31, 24, 0.6);
  font-family: var(--font-sans, Helvetica, sans-serif);
}

[data-mode="dark"] .vtest { background: #0E1F18; }
[data-mode="dark"] .vtest__title { color: var(--ivory-50, #F7F3EA); }
[data-mode="dark"] .vtest__sub,
[data-mode="dark"] .vtest__caption { color: rgba(247, 243, 234, 0.65); }

@media (max-width: 760px) {
  .vtest__card,
  .vtest__card--portrait { grid-column: auto; }
}

/* ============ Avo Chatbot ============ */
.avo-chat { position: fixed; right: 20px; bottom: 20px; z-index: 9999; font-family: var(--font-sans, Helvetica, sans-serif); }
.avo-chat--rtl { right: auto; left: 20px; }

.avo-chat__launcher {
  width: 60px; height: 60px; border-radius: 999px; border: 0; cursor: pointer;
  background: linear-gradient(135deg, #b6534a, #a46b30);
  color: #fff; font-size: 26px; line-height: 1;
  box-shadow: 0 12px 32px -10px rgba(182,83,74,.6), 0 4px 12px rgba(14,31,24,.25);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; align-items: center; justify-content: center;
}
.avo-chat__launcher:hover { transform: translateY(-3px) scale(1.04); }
.avo-chat__launcher.is-open { background: #0E1F18; }

.avo-chat__panel {
  position: absolute; bottom: 76px; right: 0; width: 360px; max-width: calc(100vw - 32px);
  max-height: min(640px, calc(100vh - 120px));
  background: #F7F3EA; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(14,31,24,.45), 0 10px 30px rgba(14,31,24,.2);
  display: flex; flex-direction: column;
  animation: avoChatIn .25s ease;
  border: 1px solid rgba(14,31,24,.08);
}
.avo-chat--rtl .avo-chat__panel { right: auto; left: 0; }
@keyframes avoChatIn { from { opacity: 0; transform: translateY(12px);} to {opacity:1; transform:none;} }

.avo-chat__header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: #0E1F18; color: #F7F3EA;
}
.avo-chat__avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg,#b6534a,#a46b30);
  display: grid; place-items: center; font-family: Georgia, serif; font-style: italic;
  font-size: 15px; color: #F7F3EA;
}
.avo-chat__id { display: flex; flex-direction: column; flex: 1; line-height: 1.15; }
.avo-chat__id strong { font-size: 14px; }
.avo-chat__id span { font-size: 11px; opacity: .7; }
.avo-chat__x { background: transparent; border: 0; color: #F7F3EA; font-size: 22px; cursor: pointer; padding: 4px 8px; }

.avo-chat__body { padding: 14px 16px; overflow-y: auto; flex: 1; }

.avo-chat__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid rgba(14,31,24,.1);
  padding: 12px 14px; border-radius: 14px; text-decoration: none; color: #0E1F18;
  margin-bottom: 16px; transition: border-color .2s, transform .2s;
}
.avo-chat__cta:hover { border-color: #a46b30; transform: translateY(-1px); }
.avo-chat__cta strong { display: block; font-size: 14px; }
.avo-chat__cta span { font-size: 12px; opacity: .65; }
.avo-chat__cta-arrow { color: #a46b30; font-size: 18px; }

.avo-chat__label { font-size: 11px; letter-spacing: .14em; opacity: .55; margin: 12px 0 8px; color: #0E1F18; }
.avo-chat__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.avo-chat__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px; font-size: 12.5px;
  background: #fff; border: 1px solid rgba(14,31,24,.1); color: #0E1F18;
  text-decoration: none; transition: background .2s, border-color .2s;
}
.avo-chat__chip:hover { background: #0E1F18; color: #F7F3EA; border-color: #0E1F18; }
.avo-chat__chip--soft { background: rgba(164,107,48,.08); border-color: transparent; }
.avo-chat__chip--soft:hover { background: #a46b30; color: #fff; }

.avo-chat__actions { display: flex; gap: 8px; margin-top: 14px; }
.avo-chat__action {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px; border-radius: 12px; font-size: 12.5px; cursor: pointer;
  background: #0E1F18; color: #F7F3EA; border: 0; text-decoration: none;
  transition: background .2s;
}
.avo-chat__action:hover { background: #1a3329; }
.avo-chat__action--ghost { background: #fff; color: #0E1F18; border: 1px solid rgba(14,31,24,.12); }
.avo-chat__action--ghost:hover { background: #F7F3EA; }

/* Phone keypad popup */
.avo-phone {
  margin-top: 14px; padding: 16px;
  background: linear-gradient(180deg, #0E1F18, #1a3329);
  border-radius: 22px; color: #F7F3EA;
  box-shadow: inset 0 0 0 1px rgba(247,243,234,.08), 0 12px 30px -10px rgba(14,31,24,.6);
  animation: avoChatIn .25s ease;
}
.avo-phone__screen { text-align: center; padding: 8px 0 14px; border-bottom: 1px solid rgba(247,243,234,.12); }
.avo-phone__name { font-size: 12px; opacity: .6; letter-spacing: .12em; text-transform: uppercase; }
.avo-phone__num { font-family: Georgia, serif; font-size: 22px; margin-top: 4px; letter-spacing: .02em; }
.avo-phone__sub { font-size: 11px; opacity: .55; margin-top: 4px; }
.avo-phone__keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 12px 0; }
.avo-phone__key {
  background: rgba(247,243,234,.06); border-radius: 12px;
  padding: 10px 0; text-align: center;
  transition: background .15s;
}
.avo-phone__key:hover { background: rgba(247,243,234,.12); }
.avo-phone__digit { display: block; font-family: Georgia, serif; font-size: 18px; line-height: 1; }
.avo-phone__letters { display: block; font-size: 9px; letter-spacing: .15em; opacity: .55; margin-top: 2px; min-height: 10px; }
.avo-phone__call {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px; margin: 4px auto 2px;
  background: #2bb673; color: #fff; font-size: 22px; text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(43,182,115,.7);
  transition: transform .2s;
}
.avo-phone__call:hover { transform: scale(1.06); }

.avo-chat__input {
  display: flex; gap: 8px; padding: 10px 12px;
  border-top: 1px solid rgba(14,31,24,.08); background: #fff;
}
.avo-chat__input input {
  flex: 1; border: 0; outline: none; padding: 10px 12px; font-size: 13px;
  background: rgba(14,31,24,.04); border-radius: 999px; color: #0E1F18;
}
.avo-chat__input button {
  width: 36px; height: 36px; border-radius: 999px; border: 0; cursor: pointer;
  background: #a46b30; color: #fff; font-size: 16px;
}

@media (max-width: 480px) {
  .avo-chat__panel { width: calc(100vw - 24px); right: -8px; }
  .avo-chat--rtl .avo-chat__panel { left: -8px; right: auto; }
}

/* ============ PERFORMANCE: reduced motion + low-power fallback ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger, .words { opacity: 1 !important; transform: none !important; }
  .reveal .word, .words .word { opacity: 1 !important; transform: none !important; }
  /* drop GPU-heavy blurs that cause jank on weak GPUs */
  [class*="backdrop"], .lang-switcher__menu, .nav2__dropdown,
  .hero2__slogan-wrap { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}

/* Promote frequently-animated layers so they stay on the GPU during scroll */
.hero2__portrait, .bento__card, .stats__cell, .guide-card__img > img {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Default async image decoding via CSS (browsers that support it) */
img { content-visibility: auto; }
