/* ═══════════════════════════════════════════
   HOM CONSTRUCTION — SHARED STYLES
   ═══════════════════════════════════════════ */

:root {
  --dark:      #0f0f0c;
  --dark-2:    #181814;
  --gold:      #c9a84c;
  --gold-lt:   #dfc06a;
  --stone:     #5c5a52;
  --off-white: #f7f5f0;
  --white:     #ffffff;
  --border:    rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
}
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { line-height: 1.75; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-center .section-eyebrow { display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 80px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(15,15,12,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

/* Real SVG logo in nav */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  overflow: visible;
}
.nav-logo-img img {
  width: 100px;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.nav-logo-img:hover img { opacity: 0.85; }
.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(20px, 3vw, 44px);
}
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: 0.78rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ── FOOTER CTA BAND ── */
.footer-cta {
  background: var(--gold);
  padding: 80px clamp(24px, 8vw, 120px);
  text-align: center;
}
.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.footer-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}
.footer-cta .btn-gold {
  background: var(--dark);
  border-color: var(--dark);
}
.footer-cta .btn-gold:hover {
  background: #333;
  border-color: #333;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 72px clamp(24px, 8vw, 120px) 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ── PAGE HERO (non-index pages) ── */
.page-hero {
  background: var(--dark);
  padding: 140px clamp(24px, 8vw, 120px) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center/cover;
  opacity: 0.12;
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.08;
  margin-top: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-top: 22px;
  max-width: 520px;
  line-height: 1.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(15,15,12,0.98);
    padding: 40px 30px;
    gap: 28px;
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
