/* ============================================================
   GEORGES PRODUCTION — Shared Styles
   ============================================================ */

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

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

:root {
  --black:  #1C1C1A;
  --white:  #FAF8F5;
  --gold:   #C8A96E;
  --gold2:  #a07c42;
  --mid:    #6B6860;
  --border: rgba(28,28,26,0.12);
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

a { color: inherit; }

/* ── NAV (shared across all pages) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-logo {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active { border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--black); color: var(--white); border: none;
  padding: 11px 24px; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--black); transition: all 0.3s; }
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 28px 32px; flex-direction: column; gap: 24px; z-index: 998;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }

/* ── PAGE HERO (used on Portfolio/About/Contact top banners) ── */
.page-hero {
  background: var(--black);
  padding: 180px 64px 80px;
  position: relative; overflow: hidden;
}
.page-hero-mono {
  position: absolute; right: -20px; bottom: -70px;
  font-family: var(--serif); font-size: 280px; font-weight: 700;
  color: rgba(255,255,255,0.035); line-height: 1;
  pointer-events: none; user-select: none;
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 68px);
  color: var(--white); font-weight: 400; line-height: 1.05; max-width: 700px;
}
.page-hero p {
  font-size: 15px; color: rgba(250,248,245,0.55); max-width: 480px;
  margin-top: 22px; line-height: 1.8;
}

.eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1; color: var(--black); font-weight: 400;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--black); border: none;
  padding: 14px 34px; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.82; }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(250,248,245,0.3);
  padding: 14px 34px; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark {
  background: transparent; color: var(--black);
  border: 1px solid rgba(28,28,26,0.3);
  padding: 14px 34px; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold2); }

/* ── FOOTER (shared) ── */
footer {
  background: var(--black); padding: 44px 80px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.foot-logo {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
  text-decoration: none;
}
.foot-logo span { color: var(--gold); }
.foot-copy { font-size: 12px; color: rgba(250,248,245,0.38); }
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,248,245,0.48); text-decoration: none; transition: color 0.2s;
}
.foot-links a:hover { color: var(--gold); }

/* ── SCROLL REVEAL (fade/slide up) ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE SHARED ── */
@media (max-width: 900px) {
  nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .page-hero { padding: 140px 28px 56px; }
  footer { padding: 36px 28px; flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}
