/* ─── Norou Finance SA — Main CSS ─────────────────────────────── */
:root {
  --gold: #C6A76A;
  --gold-light: #D4BA85;
  --gold-dark: #A88B4A;
  --deep-black: #0A0A0A;
  --dark-card: #111111;
  --dark-muted: #1A1A1A;
  --off-white: #F8F8F6;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--deep-black);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ─── Utilities ─── */
.bg-deep-black { background: var(--deep-black); }
.text-off-white { color: var(--off-white); }
.max-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px) { .max-container { padding: 0 2rem; } }
@media (min-width: 1024px) { .max-container { padding: 0 3rem; } }
.narrow { max-width: 900px; }
.hidden { display: none !important; }
.hidden-sm { display: none; }
@media (min-width: 640px) { .hidden-sm { display: inline-flex; } }
.mr-2 { margin-right: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; }

.gold-text { color: var(--gold); }
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-line-short { width: 6rem; height: 1px; background: rgba(198,167,106,.5); margin: 0 auto; }
.gold-line-vertical { width: 1px; height: 4rem; background: linear-gradient(to bottom, transparent, rgba(198,167,106,.3), transparent); }
.gold-divider { width: 4rem; height: 1px; background: rgba(198,167,106,.3); margin: 0 auto; }
.bounce { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #0A0A0A;
  border: none; padding: .75rem 1.75rem;
  font-family: var(--font-sans); font-size: .875rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .3s, transform .2s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(198,167,106,.35); padding: .75rem 1.75rem;
  font-family: var(--font-sans); font-size: .875rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; text-decoration: none;
}
.btn-outline:hover { border-color: rgba(198,167,106,.7); background: rgba(198,167,106,.08); }

/* ─── Animations ─── */
.animate-fade-in { animation: fadeIn 1s ease forwards; }
@keyframes fadeIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
.animate-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.animate-up.in-view { opacity: 1; transform: none; }

/* ─── Header ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .5s;
}
.header.scrolled {
  background: rgba(10,10,10,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198,167,106,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem;
}
.logo-link { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-img { height: 3rem; width: auto; object-fit: contain; }
.desktop-nav { display: none; gap: .25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  padding: .5rem .75rem; font-size: .875rem; letter-spacing: .05em;
  color: rgba(248,248,246,.7); text-decoration: none;
  transition: color .3s;
}
.desktop-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-menu-btn {
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--off-white);
  font-size: 1.25rem; cursor: pointer; padding: .5rem;
  transition: color .3s;
}
.mobile-menu-btn:hover { color: var(--gold); }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,.96); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: flex-end;
  transform: translateX(100%); transition: transform .35s ease;
}
.mobile-menu.open { transform: none; }
.mobile-menu-inner {
  width: 300px; height: 100%; padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-left: 1px solid rgba(198,167,106,.1);
}
.mobile-close {
  background: transparent; border: none; color: rgba(248,248,246,.5);
  font-size: 1.25rem; cursor: pointer; align-self: flex-end; margin-bottom: 1rem;
  transition: color .3s;
}
.mobile-close:hover { color: var(--gold); }
.mobile-nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  padding: .875rem 1rem; font-family: var(--font-serif);
  font-size: 1.1rem; letter-spacing: .05em; color: rgba(248,248,246,.8);
  text-decoration: none; border-bottom: 1px solid rgba(198,167,106,.05);
  transition: all .3s;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(198,167,106,.05); }
.mobile-nav .btn-gold { margin-top: 1.5rem; }

/* ─── Hero ─── */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2s ease; transform: scale(1.05);
  animation: none;
}
.hero-slide.active { opacity: 1; animation: slowZoom 10s ease-in-out forwards; }
@keyframes slowZoom { from{transform:scale(1.05)} to{transform:scale(1.15)} }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,10,10,.7);
}
.hero-overlay::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.4), transparent, var(--deep-black));
}
.particles-canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 0 1rem; max-width: 56rem; margin: 0 auto;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: var(--off-white); line-height: 1.15;
  margin: 3rem 0 2rem; letter-spacing: -.02em;
}
.hero-subtitle {
  font-size: 1.125rem; color: rgba(248,248,246,.6);
  max-width: 36rem; margin: 0 auto 3rem; line-height: 1.7; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  cursor: pointer; color: rgba(198,167,106,.4); font-size: .625rem;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ─── Sections ─── */
.section-dark { padding: 6rem 0; background: var(--deep-black); position: relative; }
.section-darker { padding: 6rem 0; background: var(--dark-muted); position: relative; }
.section-darkest { padding: 6rem 0; background: #0C0B09; position: relative; }
.section-warm { padding: 6rem 0; background: #0E0D0B; position: relative; }

/* Section separators */
.section-darker::before,.section-darkest::before,.section-warm::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(to right, transparent, rgba(198,167,106,.15), transparent);
}

/* ─── Section Header ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: block; font-size: .75rem; letter-spacing: .3em;
  color: rgba(198,167,106,.6); text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--off-white); margin-bottom: 1.5rem; line-height: 1.2;
}
.section-desc { color: rgba(248,248,246,.5); max-width: 40rem; margin: 0 auto; line-height: 1.7; }
.subsection-title {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--off-white); margin-bottom: 1.5rem;
}

/* ─── Stats ─── */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  position: relative; padding: 2rem;
  background: var(--dark-card); border: 1px solid rgba(198,167,106,.1);
  transition: border-color .5s;
}
.stat-card:hover { border-color: rgba(198,167,106,.25); }
.stat-card::before,.stat-card::after { content:''; position:absolute; top:0; left:0; background:rgba(198,167,106,.3); }
.stat-card::before { width:2rem; height:1px; }
.stat-card::after { width:1px; height:2rem; }
.stat-icon { font-size: 1.25rem; color: rgba(198,167,106,.6); margin-bottom: 1rem; }
.stat-number {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--off-white); margin-bottom: .5rem;
}
.stat-label { font-size: .875rem; color: rgba(248,248,246,.5); }

/* ─── Services ─── */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 2rem; background: var(--dark-card);
  border: 1px solid rgba(198,167,106,.08);
  transition: border-color .4s, transform .3s;
}
.service-card:hover { border-color: rgba(198,167,106,.25); transform: translateY(-4px); }
.service-icon { font-size: 1.25rem; color: rgba(198,167,106,.6); margin-bottom: 1.5rem; transition: color .4s; }
.service-card:hover .service-icon { color: var(--gold); }
.service-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--off-white); margin-bottom: .75rem;
  transition: color .4s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p { font-size: .875rem; color: rgba(248,248,246,.45); line-height: 1.7; }

/* ─── Vision ─── */
.vision-section { overflow: hidden; }
.vision-text {
  text-align: center; font-size: 1.125rem; color: rgba(248,248,246,.5);
  line-height: 1.8; font-weight: 300; margin-bottom: 3rem;
}
.ceo-quote {
  position: relative; padding: 2.5rem 3rem;
  border-left: 2px solid rgba(198,167,106,.3);
  background: rgba(17,17,17,.5);
}
.quote-icon { position: absolute; top: -.5rem; left: -1.25rem; font-size: 2rem; color: rgba(198,167,106,.2); }
.ceo-quote blockquote {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: rgba(248,248,246,.8); font-style: italic;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.ceo-info { display: flex; align-items: center; gap: 1rem; }
.ceo-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(198,167,106,.1); border: 1px solid rgba(198,167,106,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); color: var(--gold); font-size: .875rem; flex-shrink: 0;
}
.ceo-name { color: var(--off-white); font-size: .875rem; font-weight: 500; }
.ceo-role { color: rgba(248,248,246,.4); font-size: .75rem; letter-spacing: .05em; }

/* ─── Sectors ─── */
.sectors-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .sectors-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .sectors-grid { grid-template-columns: repeat(3,1fr); } }
.sector-card {
  display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem;
  background: rgba(10,10,10,.5); border: 1px solid rgba(198,167,106,.08);
  transition: border-color .4s;
}
.sector-card:hover { border-color: rgba(198,167,106,.2); }
.sector-icon-wrap {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(198,167,106,.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .4s;
}
.sector-card:hover .sector-icon-wrap { border-color: rgba(198,167,106,.3); }
.sector-icon-wrap i { font-size: 1rem; color: rgba(198,167,106,.5); transition: color .4s; }
.sector-card:hover .sector-icon-wrap i { color: var(--gold); }
.sector-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--off-white); margin-bottom: .5rem; transition: color .4s;
}
.sector-card:hover h3 { color: var(--gold); }
.sector-card p { font-size: .8125rem; color: rgba(248,248,246,.4); line-height: 1.6; }

/* ─── Partners ─── */
.partners-section { overflow: hidden; }
.partners-slider-wrap { position: relative; overflow: hidden; }
.partners-fade-left,.partners-fade-right {
  position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 10; pointer-events: none;
}
.partners-fade-left { left: 0; background: linear-gradient(to right, var(--deep-black), transparent); }
.partners-fade-right { right: 0; background: linear-gradient(to left, var(--deep-black), transparent); }
.partners-track {
  display: flex; gap: 3rem; align-items: center;
  animation: scrollTrack 30s linear infinite; width: max-content;
}
@keyframes scrollTrack { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.partner-item {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0; cursor: default;
}
.partner-logo {
  width: 3rem; height: 3rem; border: 1px solid rgba(198,167,106,.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); color: rgba(198,167,106,.3); font-size: .875rem;
  transition: border-color .5s, color .5s;
}
.partner-item:hover .partner-logo { border-color: rgba(198,167,106,.25); color: rgba(198,167,106,.6); }
.partner-item > div:last-child span {
  display: block; font-size: .875rem; color: rgba(248,248,246,.25);
  transition: color .5s; letter-spacing: .05em;
}
.partner-item > div:last-child small { display: block; font-size: .625rem; color: rgba(248,248,246,.15); letter-spacing: .1em; }
.partner-item:hover > div:last-child span { color: rgba(248,248,246,.5); }

/* ─── About ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.timeline-item::before {
  content:''; position:absolute; left:2.75rem; top:1.5rem; bottom:0;
  width:1px; background:rgba(198,167,106,.15);
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
  flex-shrink: 0; width: 3.5rem; height: 3.5rem;
  border: 1px solid rgba(198,167,106,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); color: var(--gold);
  font-size: .875rem; z-index: 1;
  background: var(--dark-card);
}
.timeline-content h4 { font-family: var(--font-serif); color: var(--off-white); margin-bottom: .25rem; }
.timeline-content p { font-size: .875rem; color: rgba(248,248,246,.4); }
.values-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
.value-card {
  padding: 1.5rem; background: var(--dark-card);
  border: 1px solid rgba(198,167,106,.08); transition: border-color .3s;
}
.value-card:hover { border-color: rgba(198,167,106,.2); }
.value-icon { font-size: 1.1rem; color: rgba(198,167,106,.6); margin-bottom: .75rem; }
.value-card h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--off-white); margin-bottom: .5rem; }
.value-card p { font-size: .8125rem; color: rgba(248,248,246,.4); line-height: 1.6; }

/* ─── Microfinance ─── */
.microfinance-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .microfinance-grid { grid-template-columns: repeat(3,1fr); } }
.micro-card {
  padding: 2rem; background: #141210; border: 1px solid rgba(198,167,106,.1);
  text-align: center; transition: border-color .4s; height: 100%;
}
.micro-card:hover { border-color: rgba(198,167,106,.2); }
.micro-icon-wrap {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  border: 1px solid rgba(198,167,106,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; transition: border-color .4s;
}
.micro-card:hover .micro-icon-wrap { border-color: rgba(198,167,106,.4); }
.micro-icon-wrap i { font-size: 1.25rem; color: rgba(198,167,106,.6); transition: color .4s; }
.micro-card:hover .micro-icon-wrap i { color: var(--gold); }
.micro-card h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--off-white); margin-bottom: .75rem; }
.micro-card p { font-size: .875rem; color: rgba(248,248,246,.45); line-height: 1.7; }

/* ─── Islamic Finance ─── */
.islamic-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .islamic-grid { grid-template-columns: repeat(3,1fr); } }
.islamic-card {
  padding: 2rem; background: rgba(20,18,16,.8);
  border: 1px solid rgba(198,167,106,.08); transition: border-color .4s; height: 100%;
}
.islamic-card:hover { border-color: rgba(198,167,106,.18); }
.islamic-icon { font-size: 1.1rem; color: rgba(198,167,106,.5); margin-bottom: 1rem; }
.islamic-card:hover .islamic-icon { color: var(--gold); }
.islamic-card h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--off-white); margin-bottom: .75rem; }
.islamic-card p { font-size: .875rem; color: rgba(248,248,246,.4); line-height: 1.7; }
.islamic-note { font-size: .75rem; color: rgba(198,167,106,.3); letter-spacing: .05em; max-width: 40rem; margin: 3rem auto 0; text-align: center; line-height: 1.7; }

/* ─── Investors ─── */
.investors-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 5rem;
}
@media (min-width: 640px) { .investors-grid { grid-template-columns: repeat(3,1fr); } }
.investor-card {
  padding: 2rem; background: var(--dark-card);
  border: 1px solid rgba(198,167,106,.1); transition: border-color .4s; height: 100%;
}
.investor-card:hover { border-color: rgba(198,167,106,.2); }
.inv-icon { font-size: 1.1rem; color: rgba(198,167,106,.5); margin-bottom: 1.5rem; transition: color .4s; }
.investor-card:hover .inv-icon { color: var(--gold); }
.investor-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--off-white); margin-bottom: .75rem; }
.investor-card p { font-size: .875rem; color: rgba(248,248,246,.45); line-height: 1.7; }
.docs-section { margin-top: 1rem; }
.docs-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .docs-grid { grid-template-columns: repeat(3,1fr); } }
.doc-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: var(--dark-card); border: 1px solid rgba(198,167,106,.1);
  cursor: pointer; transition: border-color .4s;
}
.doc-card:hover { border-color: rgba(198,167,106,.2); }
.doc-icon { font-size: 1.1rem; color: rgba(198,167,106,.5); flex-shrink: 0; transition: color .4s; }
.doc-card:hover .doc-icon { color: var(--gold); }
.doc-card > div { flex: 1; min-width: 0; }
.doc-card h4 { font-size: .875rem; color: var(--off-white); margin-bottom: .25rem; }
.doc-card p { font-size: .75rem; color: rgba(248,248,246,.35); }
.doc-dl { font-size: .875rem; color: rgba(198,167,106,.3); flex-shrink: 0; transition: color .4s; }
.doc-card:hover .doc-dl { color: var(--gold); }

/* ─── News ─── */
.news-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 3rem; }
.news-tag {
  padding: .375rem 1rem; border: 1px solid rgba(198,167,106,.15);
  font-size: .75rem; letter-spacing: .08em; color: rgba(248,248,246,.4);
  cursor: pointer; transition: all .3s; border-radius: 0;
}
.news-tag:hover, .news-tag.active { border-color: rgba(198,167,106,.3); color: var(--gold); }
.news-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3,1fr); } }
.news-card {
  display: flex; flex-direction: column;
  background: rgba(10,10,10,.5); border: 1px solid rgba(198,167,106,.08);
  transition: border-color .5s; overflow: hidden;
}
.news-card:hover { border-color: rgba(198,167,106,.2); }
.news-img-wrap { height: 12rem; overflow: hidden; }
.news-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .6; transition: opacity .7s, transform .7s;
}
.news-card:hover .news-img-wrap img { opacity: .8; transform: scale(1.05); }
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.news-badge {
  font-size: .625rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .6rem; background: rgba(198,167,106,.12);
  color: var(--gold); border: 1px solid rgba(198,167,106,.2);
}
.news-date { font-size: .75rem; color: rgba(248,248,246,.35); }
.news-card h3 {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--off-white); margin-bottom: .75rem; line-height: 1.5;
  transition: color .3s;
}
.news-card:hover h3 { color: var(--gold-light); }
.news-card p { font-size: .8125rem; color: rgba(248,248,246,.45); line-height: 1.7; flex: 1; }
.news-read {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(198,167,106,.6); text-decoration: none; transition: color .3s;
}
.news-read:hover { color: var(--gold); }

/* ─── Contact ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon-wrap {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(198,167,106,.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap i { font-size: .875rem; color: rgba(198,167,106,.5); }
.contact-item h3 { font-size: .875rem; color: var(--off-white); font-weight: 500; margin-bottom: .25rem; }
.contact-item p { font-size: .875rem; color: rgba(248,248,246,.4); line-height: 1.6; }
.social-links { display: flex; gap: .75rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border: 1px solid rgba(198,167,106,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(198,167,106,.4); text-decoration: none; transition: all .3s;
}
.social-btn:hover { border-color: rgba(198,167,106,.3); background: rgba(198,167,106,.05); color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(248,248,246,.4); }
.form-group input, .form-group textarea {
  background: rgba(10,10,10,.8); border: 1px solid rgba(198,167,106,.1);
  color: var(--off-white); padding: .75rem 1rem; font-family: var(--font-sans);
  font-size: .875rem; outline: none; transition: border-color .3s; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(198,167,106,.3); }
.contact-success { margin-top: .5rem; padding: .75rem; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: #4ade80; font-size: .875rem; text-align: center; }

/* ─── CTA Section ─── */
.cta-section { position: relative; padding: 8rem 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(198,167,106,.08) 0%, rgba(10,10,10,0) 50%, rgba(198,167,106,.06) 100%);
}
.cta-section::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(to right, transparent, rgba(198,167,106,.2), transparent);
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--off-white); margin-bottom: 1.5rem; line-height: 1.2;
}
.cta-desc { font-size: 1rem; color: rgba(248,248,246,.5); max-width: 32rem; margin: 0 auto 3rem; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-btn { padding: 1rem 2.5rem; }

/* ─── Footer ─── */
.site-footer { background: var(--deep-black); padding-top: 0; }
.footer-gold-line { height: 1px; background: linear-gradient(to right, transparent, rgba(198,167,106,.3), transparent); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding: 4rem 1.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand {}
.footer-logo { height: 2.5rem; width: auto; object-fit: contain; margin-bottom: 1.5rem; }
.footer-brand p { font-size: .875rem; color: rgba(248,248,246,.3); line-height: 1.7; max-width: 18rem; }
.footer-col h4 { font-size: .75rem; letter-spacing: .2em; color: rgba(198,167,106,.5); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(248,248,246,.35); text-decoration: none; transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li span { font-size: .875rem; color: rgba(248,248,246,.35); }
.footer-col p { font-size: .875rem; color: rgba(248,248,246,.35); margin-bottom: .5rem; }
.footer-bottom {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(198,167,106,.08);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: .75rem; color: rgba(248,248,246,.25); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .75rem; color: rgba(248,248,246,.25); text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: rgba(198,167,106,.6); }
