:root {
  --gold: #d4af37;
  --gold-30: rgba(212, 175, 55, 0.3);
  --gold-15: rgba(212, 175, 55, 0.15);
  --dark: #0a0a0a;
  --bg-dark: #0a0a0a;
  --text-white: #f5f0e8;
  --text-dim: #a1a1a1;
  --line-color: rgba(212, 175, 55, 0.2);
  --grid-line: rgba(255, 255, 255, 0.05);
}

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

html { 
  scroll-behavior: initial; /* Lenis handles this */
  cursor: none; 
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 1PX ARCHITECTURAL GRID */
.grid-container {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 50;
  display: flex;
  justify-content: space-evenly;
}

.grid-line-v {
  width: 1px;
  height: 100%;
  background: var(--grid-line);
}

.line-h {
  width: 100%;
  height: 1px;
  background: var(--line-color);
  position: relative;
  z-index: 10;
}

/* TYPOGRAPHY SCALE */
h1, h2, h3, .heading-xl {
  font-family: 'Regal', 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 300;
  line-height: 1.1;
  text-transform: none;
}

.label-tiny {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* GRAIN OVERLAY */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
}

/* NOISE FILTER SVG */
#noise {
  position: absolute;
  width: 100%; height: 100%;
}

/* CUSTOM CURSOR */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 10000;
}
/* The geometric diamond base */
.custom-cursor::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  background: transparent;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* The center precision dot */
.custom-cursor::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 3px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

/* Hover State - Morph into a hollow, glowing lens */
.custom-cursor.cursor-hover::before {
  width: 80px; height: 80px;
  border-color: rgba(212, 175, 55, 0.5);
  background: transparent;
  transform: translate(-50%, -50%) rotate(135deg);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.2);
}
.custom-cursor.cursor-hover::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.hero-dw-logo {
  position: absolute;
  top: 80px;
  left: 60px;
  max-width: 180px;
  z-index: 10;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(245, 240, 232, 0.03);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 1600px; /* Match global alignment */
  padding: 0 40px;
}

.hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: nowrap; /* Prevent stacking */
}

.hero-title {
  font-size: clamp(60px, 8vw, 120px);
  color: var(--text-white);
  white-space: nowrap;
}

.hero-title-italic {
  font-size: clamp(60px, 8vw, 120px);
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
}

/* Fix for italic character clipping with Splitting.js */
.hero-title-italic .word {
  overflow: visible !important;
}
.hero-title-italic .char {
  padding-right: 0.05em;
}

.hero-split-line {
  width: 1px;
  height: 100px;
  background: var(--gold);
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px 60px;
  border-top: 1px solid var(--line-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-white);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  transform-origin: top;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* NAVIGATION */
.main-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-links-left, .nav-links-right {
  display: flex;
  gap: 30px;
  flex: 1;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-brand {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 40px;
}

.nav-brand a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--text-white);
  font-weight: 400;
  line-height: 1;
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-link {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.1);
}

/* CURTAIN REVEAL */
.curtain-reveal-section {
  width: 100%;
  background: var(--bg-dark);
  position: relative;
}

.curtain-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curtain-panel {
  position: absolute;
  top: 0; width: 50%; height: 100%;
  background: var(--bg-dark);
  z-index: 10;
}

.left-panel { left: 0; border-right: 1px solid var(--line-color); }
.right-panel { right: 0; border-left: 1px solid var(--line-color); }

.curtain-content {
  width: 100%; height: 100%;
  position: relative;
  z-index: 5;
}

.curtain-content img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.curtain-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
}

.heading-xl {
  font-size: 80px;
  margin-top: 20px;
}

/* PROPERTY CARDS UPDATE */
.property-card {
  border: 1px solid var(--line-color);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.property-card:hover {
  border-color: var(--gold);
}

.property-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.property-info {
  padding: 30px;
}

.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 10px;
}

/* PAGE TRANSITION BAR */
.transition-bar {
  position: fixed;
  top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold);
  z-index: 9999;
  pointer-events: none;
}

/* FOOTER */
.main-footer {
  width: 100%;
  background: var(--bg-dark);
  position: relative;
  padding: 100px 0 40px; /* Removed side padding */
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15vw;
  font-weight: 700;
  color: rgba(245, 240, 232, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  max-width: 1600px; /* Match nav-container */
  margin: 0 auto;
}

.footer-col {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-col:first-child {
  padding-left: 40px; /* Align first column text with Home link */
}

.footer-col:last-child {
  padding-right: 40px; /* Align last column content with Contact link */
}

.footer-col.v-divider {
  border-left: 1px solid var(--line-color);
}

.footer-content a, .footer-links a, .footer-socials a {
  display: block;
  font-size: 16px;
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-content a:hover, .footer-links a:hover, .footer-socials a:hover {
  color: var(--gold);
}

.footer-content p {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px 0; /* Match side padding */
  max-width: 1600px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 12px;
}



.deal-card {
  padding: 50px 40px 40px;
  background: linear-gradient(145deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.9) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7), inset 0 0 20px rgba(212,175,55,0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.deal-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 30px rgba(212,175,55,0.15);
}
.deal-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}
.deal-stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  gap: 4px;
}
.deal-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

/* MAIN CONTENT LAYOUT */
.main-wrap {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 100px;
  max-width: 1600px;
  margin: 150px auto;
  padding: 0 40px;
}

.content {
  position: relative;
}

.section-h {
  font-size: 80px;
  margin-top: 20px;
}

.body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-white);
  margin-bottom: 30px;
  font-weight: 300;
}

.editorial-post {
  margin-top: 100px;
  padding-top: 100px;
  border-top: 1px solid var(--line-color);
}

.editorial-post h3 {
  font-size: 40px;
  margin: 20px 0;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.agent-profile {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.agent-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.agent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.8);
  transition: filter 0.4s ease;
}

.agent-profile:hover img {
  filter: grayscale(0) brightness(1);
}

.agent-contact {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.news-list {
  list-style: none;
  margin-top: 30px;
}

.news-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-color);
}

.news-list a {
  font-size: 14px;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-list a:hover {
  color: var(--gold);
}

/* TESTIMONIALS TICKER */
.testimonials-editorial {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.ticker-wrap {
  background: transparent;
  padding: 40px 0;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: tickerScroll 40s linear infinite;
}

.ticker-item {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  margin: 0 50px;
  color: var(--text-white);
}

.ticker-item .client-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 20px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.deal-client {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 20px;
}
.deal-client span {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  letter-spacing: 1px;
}

/* TESTIMONIALS REDESIGN - EDITORIAL GRID */
.testimonials-editorial-grid {
  display: columns;
  column-count: 2;
  column-gap: 80px;
  max-width: 1600px;
  margin: 100px auto;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .testimonials-editorial-grid { column-count: 1; }
}

.testimonial-item {
  break-inside: avoid;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-color);
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-item:hover {
  transform: translateX(10px);
}

.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-white);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
}

.author-info {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.testimonial-number {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  color: var(--line-color);
  font-family: 'Inter', sans-serif;
}

/* AFFILIATE EDITORIAL */
.affiliate-editorial {
  width: 100%;
  background: var(--bg-dark);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.affiliate-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Regal', serif;
  font-size: 25vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
  z-index: 1;
  text-transform: uppercase;
}

.affiliate-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.affiliate-header {
  margin-bottom: 60px;
}

.section-h-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-white);
  margin-top: 10px;
}

/* Fix for italic character clipping with Splitting.js */
.section-h-sm .word {
  overflow: visible !important;
}
.section-h-sm .char {
  padding-right: 0.05em;
}

.affiliate-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.affiliate-logo {
  height: 140px;
  width: auto;
  filter: grayscale(0.4) brightness(1.2);
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.affiliate-link:hover .affiliate-logo {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: translateY(-10px) scale(1.1);
}


/* RESOURCE CARDS */
.resource-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.resource-inner {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-color);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.resource-inner i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 25px;
}

.resource-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.resource-inner p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.btn-text {
  display: block;
  margin-top: 25px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.resource-card:hover .resource-inner {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold);
  transform: translateY(-10px);
}

/* EDITORIAL INFO PAGES */
.info-lead {
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}

.editorial-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: start;
}

.editorial-side-title {
  position: sticky;
  top: 150px;
}

.editorial-side-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1.1;
  font-style: italic;
  color: var(--gold);
}

.editorial-content-main {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-white);
  opacity: 0.9;
}

.editorial-content-main p {
  margin-bottom: 30px;
}

.expert-tip {
  padding: 40px;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin: 40px 0;
  position: relative;
}

.expert-tip::before {
  content: 'PRO TIP';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--bg-dark);
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(212, 175, 55, 0.1);
  line-height: 0.8;
  margin-bottom: -40px;
  display: block;
}

.editorial-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.editorial-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.editorial-list li::before {
  content: '→';
  color: var(--gold);
  font-family: serif;
}


/* CONTACT PAGE SPECIFIC */
.contact-portrait-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-color);
}

.contact-portrait {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.2) contrast(1.1);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-portrait-wrap:hover .contact-portrait {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.03);
}

.contact-large-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.contact-large-link:hover {
  color: var(--gold);
}

.editorial-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input, .form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.social-links-minimal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.social-links-minimal a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links-minimal a:hover {
  color: var(--gold);
}


/* ABOUT PAGE ENHANCEMENTS */
.about-hero-large {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.about-hero-large .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 10;
  max-width: 1600px; /* Match nav-container */
  padding: 0 40px;   /* Match nav-container */
}

.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Regal', serif;
  font-size: 35vw;
  line-height: 1;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.02em;
}

.about-portrait-main {
  position: relative;
  width: 100%;
  height: 75vh;
  max-height: 900px;
  z-index: 2;
  border: 1px solid var(--line-color);
  padding: 0px;
  margin-left: auto;
}

.about-portrait-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: filter 0.8s ease;
}

.about-portrait-main:hover img {
  filter: grayscale(0);
}

.signature {
  font-family: 'Monsieur La Doulaise', cursive;
  font-size: 84px;
  color: var(--gold);
  margin-top: 40px;
  opacity: 0.8;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  margin: 100px 0;
}

.stat-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid var(--line-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Regal', serif;
  font-size: 48px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 18px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--gold);
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 16px 35px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid var(--gold-30);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  background: var(--gold-15);
  color: var(--text-white);
  transform: translateY(-3px);
}

