/* ============================================================
   Z.C. RONOGIL — Global Styles
   Black / White / Gold · Luxury Minimalist · RTL/LTR
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Heebo:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --black:       #0A0A0A;
  --white:       #FFFFFF;
  --gold:        #C5A028;
  --gold-light:  #D4B84A;
  --gold-pale:   #F5EDD4;
  --gray-100:    #F7F7F5;
  --gray-200:    #EBEBEB;
  --gray-300:    #D0D0D0;
  --gray-500:    #8A8A8A;
  --gray-700:    #444444;
  --max-w:       1200px;
  --header-h:    80px;
  --radius:      2px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Heebo', 'Arial', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Language Toggle Logic --- */
html.lang-he { direction: rtl; }
html.lang-en { direction: ltr; }
html.lang-he .en { display: none !important; }
html.lang-en .he { display: none !important; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--black);
  z-index: 1000;
  border-bottom: 1px solid rgba(197,160,40,0.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Nav Right Group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-btn {
  background: transparent;
  border: 1px solid rgba(197,160,40,0.5);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--black);
  padding: 24px 32px 32px;
  z-index: 999;
  border-bottom: 1px solid rgba(197,160,40,0.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrap { padding-top: var(--header-h); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  background: var(--black);
  color: var(--white);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197,160,40,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(197,160,40,0.04) 0%, transparent 60%);
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(197,160,40,0.4);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 720px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
}

/* Page Hero (shorter, for inner pages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 32px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197,160,40,0.06) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-weight: 300;
}
.page-hero .gold-bar {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,160,40,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 80px 0; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}
.section-header {
  margin-bottom: 56px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Dark section */
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark .section-desc { color: rgba(255,255,255,0.5); }

/* Light gray section */
.section-light { background: var(--gray-100); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 40px 32px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
}

@media (max-width: 700px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .properties-grid { grid-template-columns: 1fr; }
}

.property-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  position: relative;
}
.property-img {
  height: 240px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}
.property-img img {
  height: 100%;
  transition: transform 0.6s ease;
}
.property-card:hover .property-img img { transform: scale(1.04); }

/* Image placeholder */
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
}

.property-badge {
  position: absolute;
  top: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
}
html.lang-he .property-badge { right: 16px; }
html.lang-en .property-badge { left: 16px; }

.badge-yield { background: var(--gold); color: var(--black); }
.badge-dev { background: var(--gray-700); }
.badge-sold { background: #444; }

.property-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-code {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.property-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.property-location {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-location::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
}
.property-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.75;
  flex: 1;
}
.property-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.property-meta-item {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.property-meta-item strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  font-size: 0.82rem;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.filter-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 12px 20px;
  cursor: pointer;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.filter-tab:hover { color: var(--black); }
.filter-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-200);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.team-photo img { height: 100%; }
.team-photo .img-ph { aspect-ratio: 1; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ============================================================
   PRESS / ARTICLES
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .press-grid { grid-template-columns: 1fr; }
}

.press-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.press-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.press-pub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.press-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}
.press-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.press-excerpt {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.press-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  align-self: flex-start;
}
.press-link:hover { gap: 10px; }

/* Press Logo Strip */
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 16px 0;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity var(--transition);
}
.press-logos:hover { opacity: 0.7; }
.press-logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

/* ============================================================
   ABOUT / VALUES
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.value-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.value-text p {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 1rem;
  font-weight: 500;
}
.contact-value a { color: var(--black); transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }

.map-wrap {
  border: 1px solid var(--gray-200);
  overflow: hidden;
  height: 420px;
  background: var(--gray-100);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-line {
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   DIVIDER / GOLD LINE
   ============================================================ */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* Centered divider */
.gold-divider-center {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 32px;
}

/* ============================================================
   TEASER STRIP (homepage)
   ============================================================ */
.teaser-strip {
  background: var(--black);
  color: var(--white);
  padding: 64px 32px;
  text-align: center;
}
.teaser-strip .section-title { color: var(--white); margin-bottom: 12px; }
.teaser-strip .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto 32px; text-align: center; }

/* Two Markets section */
.two-markets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 768px) {
  .two-markets { grid-template-columns: 1fr; }
}
.market-panel {
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.market-panel-il {
  background: var(--black);
  color: var(--white);
}
.market-panel-uk {
  background: var(--gold);
  color: var(--black);
}
.market-panel::before {
  content: '';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 700;
  opacity: 0.06;
  top: -20px;
  line-height: 1;
  pointer-events: none;
}
.market-panel-il::before { content: 'IL'; color: var(--white); right: -10px; }
.market-panel-uk::before { content: 'UK'; color: var(--black); right: -10px; }
.market-flag {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.market-flag-text {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(197,160,40,0.15);
  border: 1px solid var(--gold);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.market-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.market-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.75;
  max-width: 360px;
}

/* ============================================================
   HOMEPAGE ABOUT TEASER
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}
@media (max-width: 768px) {
  .about-teaser { grid-template-columns: 1fr; }
}
.about-teaser-img {
  background: var(--gray-200);
  min-height: 360px;
}
.about-teaser-text {
  background: var(--black);
  color: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-teaser-text .section-desc {
  color: rgba(255,255,255,0.55);
  max-width: 100%;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE PADDING
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .hero-content { padding: 60px 20px; }
  .page-hero { padding: 56px 20px 40px; }
  .market-panel { padding: 48px 24px; }
  .about-teaser-text { padding: 48px 32px; }
  .footer-inner { padding: 0 20px; }
  .press-card { padding: 24px; }
}

/* ============================================================
   ACTIVE PAGE NAV
   ============================================================ */
.nav-links a.active { color: var(--gold) !important; }
