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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.nav-links a.active {
  color: #fff;
}

.agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .8s ease;
}

.agent-card-new:hover .agent-photo img {
  transform: scale(1.04);
}

.agent-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.agent-socials {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.agent-social {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: border-color .2s,color .2s;
}

.agent-social:hover {
  border-color: #333;
  color: #000;
}

.agent-more-btn:hover {
  border-color: #333;
  color: #000;
}

.footer-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 72px 52px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 64px;
}

.footer-newsletter {
  position: relative;
}

.footer-newsletter h2 {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.footer-newsletter>p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-email-form {
  position: relative;
}

.footer-email-input {
  width: 100%;
  padding: 13px 52px 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
}

.footer-email-input:focus {
  border-color: rgba(255,255,255,.28);
}

.footer-email-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform .2s,background .2s;
  flex-shrink: 0;
}

.footer-email-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: #ede9e2;
}

.footer-glow {
  position: absolute;
  right: -20px;
  top: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(200,169,110,.09);
  filter: blur(28px);
  pointer-events: none;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

.footer-nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color .2s;
}

.footer-nav-links a:hover {
  color: #fff;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-style: normal;
}

.footer-address p {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.55;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s,color .2s,background .2s;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.footer-social-btn::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.96);
  color: #111;
  font-size: 11px;
  font-family: var(--sans);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
}

.footer-social-btn:hover::after {
  opacity: 1;
}

.footer-darkmode {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.38);
}

.footer-darkmode svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dm-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
}

.dm-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.dm-track {
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  background: rgba(255,255,255,.14);
  cursor: pointer;
  transition: background .2s;
}

.dm-track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform .22s;
}

.dm-switch input:checked + .dm-track {
  background: var(--accent);
}

.dm-switch input:checked + .dm-track::before {
  transform: translateX(20px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 52px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.28);
}

.footer-bottom-nav {
  display: flex;
  gap: 22px;
}

.footer-bottom-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom-nav a:hover {
  color: #fff;
}

.hamburger.open svg {
  transform: rotate(-45deg);
}

.hamburger.open svg .mti-top {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

.mob-overlay.show {
  opacity: 1;
}

.mob-drawer.open {
  transform: translateX(0);
}

.mob-nav li a.active {
  color: var(--accent-text);
}

.mob-nav li a.active::after {
  color: var(--accent-text);
}

.cta-close-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-close-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-close-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cta-close h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: var(--track-tight);
  color: #fff;
  margin: 0;
  text-wrap: balance;
}

.cta-close-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-close-wa:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.cta-close-form:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 52px;
  transition: background .35s ease,border-color .35s ease,box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.lit {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: #e5e1d8;
  box-shadow: 0 1px 24px rgba(0,0,0,.06);
}

.snav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.snav-logo img {
  height: 28px;
  width: auto;
  display: block;
  transition: filter .3s ease;
  filter: brightness(0) invert(1);
}

.site-nav.lit .snav-logo img {
  filter: brightness(0);
}

.snav-link {
  position: relative;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .26s ease;
}

.snav-link:hover {
  color: #fff;
}

.snav-link:hover::after {
  transform: scaleX(1);
}

.site-nav.lit .snav-link {
  color: #555;
}

.site-nav.lit .snav-link:hover {
  color: #111;
}

.snav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.snav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.22);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .26s ease,transform .26s ease,border-color .26s ease;
}

.snav-wa:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.45);
  transform: scale(1.02);
}

.site-nav.lit .snav-wa {
  background: #0d0d0d;
  color: #fff;
  border-color: #0d0d0d;
}

.site-nav.lit .snav-wa:hover {
  background: #333;
  border-color: #333;
}

.snav-wa svg {
  width: 15px;
  height: 15px;
}

.snav-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
  padding: 0;
  transition: background .26s ease,border-color .26s ease,color .26s ease,transform .26s ease;
}

@media (min-width:861px) {
  .snav-trigger {
    display: none;
  }
}

.snav-trigger:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.55);
  transform: scale(1.07);
}

.site-nav.lit .snav-trigger {
  border-color: rgba(0,0,0,.18);
  color: #333;
}

.site-nav.lit .snav-trigger:hover {
  background: rgba(0,0,0,.06);
  border-color: #aaa;
}

.trigger-icon {
  width: 20px;
  height: 20px;
  display: block;
  pointer-events: none;
  transition: transform 600ms ease-out;
}

.snav-trigger.open .trigger-icon {
  transform: rotate(-45deg);
}

.trigger-path-top {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 600ms ease-out,stroke-dashoffset 600ms ease-out;
}

.snav-trigger.open .trigger-path-top {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

.fullmenu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  grid-template-columns: 1fr 1fr;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}

.fullmenu.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

.fm-left {
  background: #0d0b09;
  display: flex;
  flex-direction: column;
  padding: 0 60px 52px;
  position: relative;
  overflow: hidden;
}

.fm-left::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,rgba(200,169,110,.12) 0%,transparent 70%);
  pointer-events: none;
}

.fm-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.fm-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.fm-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .26s ease,color .26s ease,transform .3s ease;
}

.fm-close:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  transform: rotate(90deg);
}

.fm-close svg {
  width: 16px;
  height: 16px;
}

.fm-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 48px;
  margin-top: auto;
}

.fm-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a96e;
}

.fm-eyebrow span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: #7e6330;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.fm-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.fm-subtitle {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,.22);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: auto;
  flex-shrink: 0;
  transition: color .22s ease;
}

.fm-item:hover .fm-title {
  color: #7e6330;
  transform: translateX(6px);
}

.fm-item:hover .fm-num,
.fm-item:hover .fm-subtitle {
  color: rgba(200,169,110,.5);
}

.fullmenu.open .fm-item {
  opacity: 1;
  transform: translateY(0);
}

.fullmenu.open .fm-item:nth-child(1) {
  transition-delay: .18s;
}

.fullmenu.open .fm-item:nth-child(2) {
  transition-delay: .24s;
}

.fullmenu.open .fm-item:nth-child(3) {
  transition-delay: .30s;
}

.fullmenu.open .fm-item:nth-child(4) {
  transition-delay: .36s;
}

.fullmenu.open .fm-item:nth-child(5) {
  transition-delay: .42s;
}

.fullmenu.open .fm-item:nth-child(6) {
  transition-delay: .48s;
}

.fullmenu.open .fm-item:nth-child(7) {
  transition-delay: .44s;
}

.fullmenu.open .fm-item:nth-child(8) {
  transition-delay: .49s;
}

.fullmenu.open .fm-item:nth-child(9) {
  transition-delay: .54s;
}

.fm-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 44px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .4s ease .52s;
}

.fullmenu.open .fm-left-bottom {
  opacity: 1;
}

.fm-left-bottom p {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,.28);
  letter-spacing: .06em;
  line-height: 1.6;
}

.fm-left-bottom a {
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .26s ease;
}

.fm-left-bottom a:hover {
  color: rgba(255,255,255,.6);
}

.fm-right {
  position: relative;
  overflow: hidden;
}

.fm-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .55s ease,transform .55s ease;
  transform: scale(1.04);
}

.fm-img.active {
  opacity: 1;
  transform: scale(1);
}

.fm-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(13,11,9,.65) 0%,rgba(13,11,9,.28) 60%,rgba(13,11,9,.5) 100%);
  z-index: 1;
}

.fm-card {
  position: absolute;
  bottom: 52px;
  left: 44px;
  right: 44px;
  z-index: 2;
  background: rgba(13,11,9,.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 24px 26px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease .5s,transform .4s ease .5s;
}

.fullmenu.open .fm-card {
  opacity: 1;
  transform: translateY(0);
}

.fm-card-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: #7e6330;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fm-card-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8a96e;
}

.fm-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.fm-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fm-card-price {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.fm-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: #c8a96e;
  color: #0d0d0d;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .26s ease;
}

.fm-card-btn:hover {
  opacity: .88;
}

.fm-wa-side {
  position: absolute;
  top: 52px;
  right: 44px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s ease .44s,transform .4s ease .44s,background .26s ease;
}

.fullmenu.open .fm-wa-side {
  opacity: 1;
  transform: translateY(0);
}

.fm-wa-side:hover {
  background: #1dc55c;
}

.fm-wa-side svg {
  width: 15px;
  height: 15px;
}

.fm-wa-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
}

.fm-wa-mobile svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fm-item[aria-current="page"] .fm-title {
  color: #7e6330;
}

.fm-item[aria-current="page"] .fm-num {
  color: rgba(200,169,110,.55);
}

body {
  font-family: var(--sans);
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.snav-link:hover,
.snav-link.active {
  color: #fff;
}

.snav-link:hover::after,
.snav-link.active::after {
  transform: scaleX(1);
}

.site-nav.lit .snav-link:hover,
.site-nav.lit .snav-link.active {
  color: #111;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
}

.blog-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.42) 58%,rgba(0,0,0,.22) 100%);
}

.blog-main {
  background: #fff;
  padding: 72px 68px 40px;
}

.blog-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-tab:hover {
  border-color: #999;
  color: #111;
}

.blog-tab.on {
  background: #0d0d0d;
  border-color: #0d0d0d;
  color: #fff;
}

.blog-filter-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
  flex-shrink: 0;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.blog-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.blog-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.blog-feature:hover .blog-feature-img img {
  transform: scale(1.04);
}

.blog-feature-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(13,11,9,.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-feature-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.blog-feature-body {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-feature-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.blog-feature-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.blog-feature-title {
  font-family: var(--serif);
  font-size: clamp(28px,2.9vw,40px);
  font-weight: 300;
  color: #0d0d0d;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  text-wrap: balance;
}

.blog-feature-excerpt {
  font-family: var(--sans);
  font-size: 16px;
  color: #666;
  line-height: 1.72;
  margin-bottom: 30px;
  text-wrap: pretty;
  max-width: 52ch;
}

.blog-feature-foot {
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-feature-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.blog-feature-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e4dc;
}

.blog-feature-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.blog-feature-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #0d0d0d;
}

.blog-feature-date {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

.blog-feature-arrow {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  flex-shrink: 0;
  transition: background .25s ease,color .25s ease,border-color .25s ease;
}

.blog-feature:hover .blog-feature-arrow {
  background: #0d0d0d;
  color: #fff;
  border-color: #0d0d0d;
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  margin-bottom: 14px;
}

.blog-card-cat {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #d8d3c8;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #888;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.blog-card-date {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.22;
  color: #111;
  padding: 0 32px;
  margin-bottom: 12px;
  text-wrap: pretty;
}

.blog-card-excerpt {
  font-family: var(--sans);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding: 0 32px;
  margin-bottom: 20px;
  text-wrap: pretty;
  flex: 1;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: .04em;
  transition: gap .25s ease;
}

.blog-card:hover .blog-card-read {
  gap: 14px;
}

.blog-card-read span {
  color: var(--accent-text);
}

.blog-load-wrap {
  display: flex;
  justify-content: center;
  padding: 56px 0 8px;
}

.blog-load {
  padding: 14px 48px;
  background: transparent;
  border: 1.5px solid #222;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #222;
  cursor: pointer;
  transition: all .24s ease;
}

.blog-load:hover {
  background: #0d0d0d;
  color: #fff;
}

.blog-news {
  background: #0d0d0d;
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
}

.blog-news::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 64% 56% at 50% 100%,rgba(200,169,110,.09) 0%,transparent 66%);
  pointer-events: none;
}

.blog-news-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.blog-news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
}

.blog-news-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.blog-news h2 {
  font-family: var(--serif);
  font-size: clamp(30px,4vw,52px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: var(--track-tight);
  text-wrap: balance;
}

.blog-news p {
  font-family: var(--sans);
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 48ch;
}

.blog-news-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin-top: 6px;
}

.blog-news-input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}

.blog-news-input:focus {
  border-color: rgba(255,255,255,.3);
}

.blog-news-btn {
  padding: 15px 30px;
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s ease,transform .2s ease;
}

.blog-news-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 68px 84px;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.blog-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.blog-hero-title {
  font-family: var(--serif);
  font-size: clamp(38px,5.4vw,72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.06;
  letter-spacing: var(--track-tight);
  margin-bottom: 22px;
  text-wrap: balance;
}

.blog-hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px,1.4vw,18px);
  font-weight: 400;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 56ch;
  text-wrap: pretty;
  margin-inline: auto;
}

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 56px;
}

.blog-tab {
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: transparent;
  color: #555;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}

.blog-grid-sec {
  background: #fff;
  padding: 8px 68px 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.blog-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.art-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.art-hero-bg {
  position: absolute;
  inset: 0;
}

.art-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.46) 0%,rgba(0,0,0,.12) 34%,rgba(0,0,0,.88) 100%);
}

.art-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding: 120px 44px;
  text-align: center;
}

.art-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.62);
  letter-spacing: .04em;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.art-breadcrumb a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color .2s;
}

.art-breadcrumb a:hover {
  color: #fff;
}

.art-breadcrumb span {
  color: rgba(255,255,255,.34);
}

.art-cat {
  display: block;
  font-family: var(--sans);
  font-size: clamp(13px,1.05vw,17px);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: clamp(18px,2.4vw,38px);
}

.art-title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 300;
  color: #fff;
  line-height: .92;
  letter-spacing: -.5px;
  margin-bottom: 30px;
  text-wrap: balance;
  margin-inline: auto;
}

.art-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.art-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-author-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2);
}

.art-author-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.art-author-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.art-meta-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.2);
}

.art-meta-fig {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.art-meta-fig .k {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.art-meta-fig .v {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.art-wrap {
  background: #fff;
}

.art-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.art-lead {
  font-family: var(--serif);
  font-size: clamp(20px,2.1vw,25px);
  font-weight: 300;
  color: #1c1c1c;
  line-height: 1.5;
  letter-spacing: -.01em;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.art-body p {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: #33312e;
  line-height: 1.82;
  margin-bottom: 28px;
  text-wrap: pretty;
}

.art-body p a {
  color: #9a7c41;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200,169,110,.5);
  transition: color .2s;
}

.art-body p a:hover {
  color: #0d0d0d;
}

.art-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px,2.8vw,34px);
  font-weight: 300;
  color: #0d0d0d;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 52px 0 18px;
  text-wrap: balance;
}

.art-body h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -.01em;
  margin: 40px 0 14px;
}

.art-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.art-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.art-body ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.art-body ul li {
  position: relative;
  padding-left: 26px;
  font-family: var(--sans);
  font-size: 18px;
  color: #33312e;
  line-height: 1.7;
}

.art-body ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.art-body blockquote {
  margin: 40px 0;
  padding: 6px 0 6px 32px;
  border-left: 3px solid var(--accent);
}

.art-body blockquote p {
  font-family: var(--serif);
  font-size: clamp(21px,2.3vw,27px);
  font-weight: 300;
  font-style: italic;
  color: #0d0d0d;
  line-height: 1.42;
  margin: 0;
  letter-spacing: -.01em;
}

.art-body blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
  letter-spacing: .04em;
}

.art-figure {
  margin: 44px 0;
}

.art-figure img {
  width: 100%;
  display: block;
  border-radius: 2px;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.art-figure figcaption {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
  letter-spacing: .02em;
}

.art-figure--wide {
  width: min(1040px,92vw);
  margin-inline: calc(50% - min(520px,46vw));
}

@media (max-width:1100px) {
  .art-figure--wide {
    width: 100%;
    margin-inline: 0;
  }
}

.art-callout-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.art-callout-lbl::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.art-callout p {
  font-family: var(--sans);
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.art-figures {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 44px 0;
}

.art-fig-cell {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.art-fig-cell .num {
  font-family: var(--serif);
  font-size: clamp(30px,3.4vw,40px);
  font-weight: 400;
  color: #0d0d0d;
  letter-spacing: -.01em;
  line-height: 1;
}

.art-fig-cell .lbl {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.art-foot {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.art-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.art-tag {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 13px;
  color: #666;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .2s;
}

.art-tag:hover {
  border-color: #999;
  color: #111;
}

.art-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 8px;
}

.art-share-lbl {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
}

.art-share-btns {
  display: flex;
  gap: 8px;
}

.art-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.art-share-btn:hover {
  border-color: #0d0d0d;
  background: #0d0d0d;
  color: #fff;
}

.art-share-btn svg {
  width: 16px;
  height: 16px;
}

.art-author-card {
  max-width: 740px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.art-author-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 34px;
}

.art-author-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.art-author-info h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: #0d0d0d;
  letter-spacing: -.01em;
  margin-bottom: 3px;
}

.art-author-role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--accent-text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.art-author-bio {
  font-family: var(--sans);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.art-author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  letter-spacing: .04em;
  transition: gap .2s;
}

.art-author-link:hover {
  gap: 13px;
}

.art-author-link span {
  color: var(--accent-text);
}

.art-related {
  background: #fff;
  padding: 80px 68px 24px;
  border-top: 1px solid var(--border);
}

.art-related-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.art-related-hd .lbl {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.art-related-hd .lbl::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.art-related-hd h2 {
  font-family: var(--serif);
  font-size: clamp(24px,2.6vw,34px);
  font-weight: 300;
  color: #0d0d0d;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.art-related-hd .rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.art-body ol {
  list-style: none;
  counter-reset: artstep;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.art-body ol li {
  counter-increment: artstep;
  position: relative;
  padding-left: 44px;
  font-family: var(--sans);
  font-size: 18px;
  color: #33312e;
  line-height: 1.7;
}

.art-table-wrap {
  overflow-x: auto;
  margin: 12px 0 40px;
}

.art-body table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
}

.art-body thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.art-body td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: #33312e;
  white-space: nowrap;
}

.art-body tbody tr:last-child td {
  border-bottom: none;
}

.art-body tr.art-table-highlight td {
  background: var(--warm);
  color: #0d0d0d;
  font-weight: 500;
}

.art-body tr.art-table-highlight td:first-child {
  border-left: 2px solid var(--accent);
}

.art-body ol li::before {
  content: counter(artstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f8f1e0;
  border: 1px solid rgba(200,169,110,.45);
  color: #9a7c41;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-body ul li strong,
.art-body ol li strong {
  display: block;
  margin-bottom: 4px;
  color: #0d0d0d;
}

.cg-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.cg-hero-bg {
  position: absolute;
  inset: 0;
}

.cg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cg-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.18) 0%,rgba(0,0,0,.36) 55%,rgba(0,0,0,.66) 100%);
}

.cg-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cg-hero-eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: clamp(18px,2.4vw,38px);
}

.cg-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  color: #fff;
  font-size: var(--fs-display);
  line-height: .92;
  letter-spacing: -.5px;
  text-wrap: balance;
  margin: 0;
}

.cg-hero-sub {
  font-family: var(--sans);
  font-size: var(--fs-sub);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 52ch;
  text-wrap: pretty;
  margin: clamp(20px,2.6vw,40px) auto 0;
}

.cg-crumb {
  padding: 20px 52px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}

.cg-crumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}

.cg-crumb a:hover {
  color: #111;
}

.cg-crumb-sep {
  opacity: .4;
}

.cg-crumb-cur {
  color: #111;
  font-weight: 500;
}

.cg-stats {
  background: #101010;
  color: #fff;
  padding: 44px 52px;
}

.cg-stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.cg-stat {
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,.13);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cg-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.cg-stat-num {
  font-family: var(--serif);
  font-size: var(--fs-stat);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.cg-stat-lbl {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.42);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cg-stat-note {
  font-size: 12px;
  color: var(--accent-text);
}

.cg-stats-src {
  max-width: 1040px;
  margin: 20px auto 0;
  font-size: 12px;
  color: rgba(255,255,255,.32);
  text-align: center;
  font-family: var(--sans);
}

.cg-section {
  padding: 80px 52px;
  background: #fff;
}

.cg-section.alt {
  background: var(--warm);
}

.cg-sec-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cg-sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.cg-sec-eyebrow::before,
.cg-sec-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.1);
}

.cg-sec-eyebrow span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.cg-sec-eyebrow span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cg-sec-h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #0d0d0d;
}

.cg-sec-desc {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.cg-overview {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cg-overview p {
  font-family: var(--sans);
  font-size: var(--fs-body);
  color: #333;
  line-height: 1.75;
}

.cg-overview p strong {
  color: #0d0d0d;
  font-weight: 600;
}

.cg-life-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
}

.cg-life-item {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cg-life-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-text);
}

.cg-life-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: .01em;
}

.cg-life-txt {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

.cg-demo-strip {
  max-width: 760px;
  margin: 0 auto 10px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.cg-demo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}

.cg-demo-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: #0d0d0d;
}

.cg-demo-lbl {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
}

.cg-demo-src {
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 600px;
}

.cg-persona-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.cg-persona {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-persona-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-text);
  flex-shrink: 0;
}

.cg-persona-icon svg {
  width: 20px;
  height: 20px;
}

.cg-persona h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #0d0d0d;
  letter-spacing: -0.01em;
}

.cg-persona ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.cg-persona li {
  font-family: var(--sans);
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.cg-persona li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.cg-persona-link {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: #0d0d0d;
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cg-persona-link:hover {
  color: var(--accent-text);
}

@media (max-width:960px) {
  .cg-persona-grid {
    grid-template-columns: 1fr;
  }
}

.cg-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cg-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}

.cg-faq-item:first-child {
  border-top: 1px solid var(--border);
}

.cg-faq-q {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 10px;
}

.cg-faq-a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.cg-related-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.cg-related-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color .2s ease,transform .2s ease;
}

.cg-related-card:hover {
  border-color: #ccc;
  transform: translateY(-2px);
}

.cg-related-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.cg-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cg-related-body {
  padding: 20px 22px 24px;
}

.cg-related-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cg-related-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: #0d0d0d;
  line-height: 1.3;
  margin-bottom: 8px;
}

.cg-related-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.cta-close {
  background: #0d0d0d;
  padding: 110px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%,rgba(200,169,110,.08) 0%,transparent 70%);
  pointer-events: none;
}

.cta-close-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,.48);
  line-height: 1.6;
  max-width: 48ch;
}

.cta-close-wa {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 16px 34px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #0d0d0d;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s,transform .2s;
}

.cta-close-form {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 16px 34px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s,color .2s,transform .2s;
  cursor: pointer;
}

.pd-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
}

.pd-hero:hover .pd-hero-img {
  transform: scale(1.025);
}

.pd-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .28;
}

.pd-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.04) 30%,
    rgba(0,0,0,.04) 50%,
    rgba(0,0,0,.80) 100%
  );
}

.pd-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px,4vw,60px);
}

.pd-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  /* nav clearance */
  gap: 16px;
  flex-wrap: wrap;
}

.pd-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--sans);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pd-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pd-pill-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--sans);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-decoration: none;
  transition: background .2s;
}

.pd-pill-back:hover {
  background: rgba(255,255,255,.2);
}

.pd-loc {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pd-loc::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pd-title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 400;
  color: #fff;
  letter-spacing: var(--track-tight);
  line-height: 1.0;
  margin-bottom: clamp(20px,2.8vw,36px);
  max-width: 16ch;
  text-wrap: balance;
}

.pd-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 24px;
}

.pd-figures {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-price {
  font-family: var(--sans);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}

.pd-specs {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.72);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pd-specs span {
  display: inline-flex;
  align-items: center;
}

.pd-specs span::after {
  content: '·';
  opacity: .5;
  margin: 0 10px;
}

.pd-specs span:last-child::after {
  content: '';
}

.pd-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease,background .25s ease;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pd-btn-solid:hover {
  transform: translateY(-2px);
  background: #ede9e2;
}

.pd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.36);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease,background .25s ease,border-color .25s;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pd-btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: #fff;
}

.pd-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.pd-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.pd-crumb {
  padding: 22px 44px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}

.pd-crumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}

.pd-crumb a:hover {
  color: #111;
}

.pd-crumb-sep {
  opacity: .4;
}

.pd-crumb-cur {
  color: #111;
  font-weight: 500;
}

.pd-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.pd-left {
  border-right: 1px solid var(--border);
  padding: 56px 56px 72px;
}

.pd-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pd-section-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pd-desc-title {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0d0d0d;
  margin-bottom: 20px;
}

.pd-desc-text {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  max-width: 60ch;
  text-wrap: pretty;
}

.pd-desc-text+.pd-desc-text {
  margin-top: 14px;
}

.pd-divider {
  height: 1px;
  background: var(--border);
  margin: 44px 0;
}

.pd-feats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-top: 28px;
}

.pd-feat {
  background: #fff;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pd-feat-val {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: #0d0d0d;
  letter-spacing: -0.01em;
  line-height: 1;
}

.pd-feat-lbl {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #888;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pd-tag {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: #555;
  letter-spacing: .02em;
  background: #fafaf8;
}

.pd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-top: 44px;
}

.pd-gallery-cell {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
}

.pd-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.pd-gallery-cell:hover img {
  transform: scale(1.06);
}

.pd-gallery-cell:first-child {
  grid-row: 1/3;
  aspect-ratio: auto;
}

.pd-gallery-cell:first-child img {
  height: 100%;
}

.pd-right {
  padding: 48px 36px 72px;
  position: sticky;
  top: 80px;
}

.pd-price-card {
  background: var(--black);
  border-radius: 14px;
  padding: 32px 30px;
  margin-bottom: 20px;
}

.pd-price-card-price {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}

.pd-price-card-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pd-price-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}

.pd-price-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-price-spec-k {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

.pd-price-spec-v {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .02em;
}

.pd-price-cta {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s,transform .2s;
}

.pd-price-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.pd-price-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 20px;
  margin-top: 10px;
  text-align: center;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--sans);
  cursor: pointer;
  letter-spacing: .04em;
  text-decoration: none;
  transition: border-color .2s,background .2s;
}

.pd-price-wa:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}

.pd-agent-card {
  background: var(--warm);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
}

.pd-agent-photo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e4dc;
}

.pd-agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.pd-agent-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 2px;
}

.pd-agent-role {
  font-family: var(--sans);
  font-size: 12px;
  color: #888;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pd-agent-socials {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.pd-agent-social {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: border-color .2s,color .2s;
}

.pd-agent-social:hover {
  border-color: #333;
  color: #000;
}

.pd-ref {
  text-align: center;
  padding-top: 20px;
  font-family: var(--sans);
  font-size: 12px;
  color: #bbb;
  letter-spacing: .1em;
}

.pd-map-sec {
  background: var(--warm);
  padding: 56px 52px;
  border-bottom: 1px solid var(--border);
}

.pd-map-placeholder {
  width: 100%;
  height: 320px;
  background: #e8e4dc;
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}

.pd-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(0,0,0,.04) 18px,
    rgba(0,0,0,.04) 19px
  );
}

.pd-map-label {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 13px;
  color: #999;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pd-map-pin {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  font-size: 18px;
}

.pd-similar {
  padding: 72px 44px 80px;
  background: #fff;
}

.pd-similar-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.pd-similar-title {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: #0d0d0d;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.pd-similar-link {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color var(--t);
}

.pd-similar-link:hover {
  color: #111;
}

.pd-similar-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.pd-sim-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-card);
  cursor: pointer;
}

.pd-sim-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.pd-sim-card:hover img {
  transform: scale(1.05);
}

.pd-sim-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.40) 0%,rgba(0,0,0,.04) 35%,rgba(0,0,0,.78) 100%);
  z-index: 1;
}

.pd-sim-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px,2.4vw,28px);
}

.pd-sim-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-sim-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--sans);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pd-sim-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.pd-sim-loc {
  font-family: var(--sans);
  color: rgba(255,255,255,.65);
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pd-sim-loc::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.pd-sim-title {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.pd-sim-meta {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pd-sim-price {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.pd-sim-specs {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.58);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 14px;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 12px;
  opacity: .38;
  line-height: 1.85;
  max-width: 230px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .4;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--t);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bot {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bot p {
  font-size: 11px;
  opacity: .28;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: all var(--t);
}

.socials a:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
/* Footer bülten formu geri bildirim mesajı */
.footer-news-msg{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.78);
}
.footer-news-msg.is-error{ color:#e9b8a0; }

/* İletişim formu hata mesajı */
.il-err{
  margin:14px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#a32b1c;
}

/* Hakkımızda — bölge kartları link oldu + "diğer bölgeler" satırı */
a.ab-region-card{ text-decoration:none; color:inherit; display:block; }
.ab-regions-more{
  margin-top:clamp(28px,3vw,44px);
  padding-top:clamp(24px,2.6vw,34px);
  border-top:1px solid rgba(0,0,0,.10);
  text-align:center;
}
.ab-regions-more-title{
  margin:0 0 14px;
  font-size:12px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--accent-text);
}
.ab-regions-more-links{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:10px 26px; margin-bottom:22px;
}
.ab-regions-more-links a{
  font-size:16px; color:inherit; text-decoration:none;
  padding-bottom:2px; border-bottom:1px solid rgba(0,0,0,.22);
  transition:border-color .2s, opacity .2s;
}
.ab-regions-more-links a:hover{ border-bottom-color:currentColor; }
.ab-regions-cta{
  display:inline-block; font-size:14px; letter-spacing:.06em;
  color:var(--accent-text); text-decoration:none;
}
.ab-regions-cta:hover{ text-decoration:underline; }
.ab-regions-strip-link{ color:inherit; text-decoration:underline; text-underline-offset:3px; white-space:nowrap; }

/* Hizmetler — odak kartı içi bağlantı */
.odak-stat-link{
  display:inline-block;
  margin-top:6px;
  color:var(--accent-text);
  text-decoration:none;
  white-space:nowrap;
}
.odak-stat-link:hover{ text-decoration:underline; }

/* ── Footer üyelik rozeti (TİGA) — kaynak: _includes/footer.njk ── */
.footer-member {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 26px 40px;
  margin: 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-member-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: .92;
  transition: opacity .25s ease;
}
.footer-member-badge:hover {
  opacity: 1;
}
.footer-member-badge img {
  display: block;
  width: 152px;
  height: auto;
}
.footer-member-txt {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
  max-width: 46ch;
  margin: 0;
}
@media (max-width:768px) {
  .footer-member {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 20px;
    margin: 0 20px;
  }
  .footer-member-txt {
    font-size: 12.5px;
  }
}
