/* ============================================================
   MASON GEORGE — masongeorge.shop
   Personal Brand Website — Shared Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ---- Variables ---- */
:root {
  --bg:           #080808;
  --surface:      #111111;
  --surface-2:    #1C1C1C;
  --gold:         #C9A052;
  --gold-light:   #E4C880;
  --gold-alpha:   rgba(201,160,82,0.13);
  --white:        #F5F3EE;
  --off-white:    #C0BDB8;
  --muted:        #6B6966;
  --border:       rgba(201,160,82,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:        1160px;
  --nav-h:        76px;
  --ease:         cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background:var(--bg);
  color:var(--white);
  font-family:var(--font-body);
  font-weight:300;
  line-height:1.75;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ---- Utility ---- */
.container { max-width:var(--max-w); margin:0 auto; padding:0 32px; }
.gold { color:var(--gold); }
.section { padding:100px 0; }

/* ---- Navigation ---- */
.nav {
  position:fixed; top:0; left:0; width:100%; z-index:100;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(8,8,8,0.94);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.nav__inner {
  max-width:var(--max-w); width:100%; margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav__logo {
  font-family:var(--font-display);
  font-size:1.3rem; font-weight:500;
  letter-spacing:0.05em; color:var(--white);
  transition:color 0.2s;
}
.nav__logo:hover { color:var(--gold); }
.nav__links { display:flex; gap:40px; align-items:center; }
.nav__links a {
  font-size:0.75rem; font-weight:400;
  letter-spacing:0.13em; text-transform:uppercase;
  color:var(--off-white); transition:color 0.2s;
  position:relative;
}
.nav__links a::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:1px; background:var(--gold);
  transition:width 0.3s var(--ease);
}
.nav__links a:hover { color:var(--gold); }
.nav__links a:hover::after { width:100%; }
.nav__cta {
  padding:9px 22px !important;
  border:1px solid var(--gold) !important;
  border-radius:2px;
  color:var(--gold) !important;
  transition:all 0.2s !important;
}
.nav__cta:hover { background:var(--gold) !important; color:var(--bg) !important; }
.nav__cta::after { display:none !important; }
.nav__toggle {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px;
}
.nav__toggle span { display:block; width:24px; height:1px; background:var(--white); transition:all 0.3s; }

/* Mobile Nav Drawer */
.nav__mobile {
  display:none; position:fixed; top:var(--nav-h); left:0; width:100%;
  background:var(--surface); border-bottom:1px solid var(--border);
  flex-direction:column; padding:24px 20px; gap:0; z-index:99;
}
.nav__mobile.open { display:flex; }
.nav__mobile a {
  font-size:0.85rem; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--off-white); padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color 0.2s;
}
.nav__mobile a:hover { color:var(--gold); }

/* ---- Buttons ---- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 32px; font-family:var(--font-body);
  font-size:0.78rem; font-weight:400;
  letter-spacing:0.11em; text-transform:uppercase;
  cursor:pointer; transition:all 0.25s var(--ease);
  border-radius:2px; border:none;
}
.btn--primary { background:var(--gold); color:var(--bg); border:1px solid var(--gold); }
.btn--primary:hover { background:var(--gold-light); border-color:var(--gold-light); }
.btn--outline { background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.18); }
.btn--outline:hover { border-color:var(--gold); color:var(--gold); }
.btn--gold-outline { background:transparent; color:var(--gold); border:1px solid var(--gold); }
.btn--gold-outline:hover { background:var(--gold); color:var(--bg); }

/* ---- Hero ---- */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding-top:var(--nav-h); position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 80% at 72% 50%, rgba(201,160,82,0.07) 0%, transparent 65%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:0.4; pointer-events:none;
}
.hero__inner {
  max-width:var(--max-w); width:100%; margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:1fr 400px; gap:80px; align-items:center;
  position:relative; z-index:1;
}
.hero__eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:28px;
  animation:fadeUp 0.8s var(--ease) both;
}
.hero__eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }
.hero__name {
  font-family:var(--font-display);
  font-size:clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight:300; line-height:0.92; letter-spacing:-0.01em;
  margin-bottom:28px;
  animation:fadeUp 0.85s 0.1s var(--ease) both;
}
.hero__name em { font-style:italic; color:var(--gold); }
.hero__tagline {
  font-size:1.05rem; color:var(--off-white); font-weight:300;
  max-width:440px; line-height:1.8; margin-bottom:44px;
  animation:fadeUp 0.85s 0.2s var(--ease) both;
}
.hero__actions {
  display:flex; gap:14px; flex-wrap:wrap;
  animation:fadeUp 0.85s 0.3s var(--ease) both;
}
.hero__photo {
  position:relative;
  animation:fadeIn 1s 0.35s var(--ease) both;
}
.hero__photo::before {
  content:''; position:absolute; inset:-3px;
  background:linear-gradient(145deg, var(--gold) 0%, rgba(201,160,82,0.1) 50%, transparent 70%);
  border-radius:4px; z-index:-1; opacity:0.5;
}
.hero__photo::after {
  content:''; position:absolute; bottom:-18px; right:-18px;
  width:55%; height:55%; border:1px solid var(--border);
  border-radius:3px; z-index:-2;
}
.hero__photo img {
  width:100%; aspect-ratio:3/4; object-fit:cover;
  border-radius:3px; filter:grayscale(8%);
}

/* ---- Awards Strip ---- */
.awards {
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:36px 0;
}
.awards__inner {
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap; gap:48px;
}
.awards__label {
  font-size:0.66rem; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--muted); white-space:nowrap;
}
.awards__items { display:flex; align-items:center; gap:56px; flex-wrap:wrap; justify-content:center; }
.award-badge { display:flex; flex-direction:column; align-items:center; gap:5px; text-align:center; }
.award-badge__source { font-family:var(--font-display); font-size:1.15rem; font-weight:500; color:var(--gold); }
.award-badge__title { font-size:0.68rem; letter-spacing:0.13em; text-transform:uppercase; color:var(--off-white); }
.award-badge__years { font-size:0.63rem; color:var(--muted); letter-spacing:0.08em; }
.awards__divider { width:1px; height:44px; background:var(--border); }

/* ---- About Preview ---- */
.about-preview__inner {
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center;
}
.section__eyebrow { display:inline-block; font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.about-preview__heading { font-family:var(--font-display); font-size:clamp(2.4rem,4vw,3.8rem); font-weight:300; line-height:1.1; margin-bottom:28px; }
.about-preview__text { font-size:1.02rem; color:var(--off-white); line-height:1.85; margin-bottom:36px; }
.about-preview__stats { display:flex; gap:40px; margin-bottom:40px; flex-wrap:wrap; }
.stat-item__number { font-family:var(--font-display); font-size:3rem; font-weight:300; color:var(--gold); line-height:1; }
.stat-item__label { font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-top:4px; }
.about-preview__img { position:relative; }
.about-preview__img img { width:100%; border-radius:3px; aspect-ratio:4/5; object-fit:cover; filter:grayscale(12%); }
.about-preview__img::after { content:''; position:absolute; bottom:-20px; right:-20px; width:55%; height:55%; border:1px solid var(--border); border-radius:3px; z-index:-1; }

/* ---- Ventures ---- */
.ventures { background:var(--surface); }
.section__header { text-align:center; margin-bottom:60px; }
.section__heading { font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem); font-weight:300; line-height:1.15; }
.ventures__grid {
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
}
.venture-card {
  background:var(--surface-2); padding:48px 36px;
  border:1px solid transparent;
  transition:all 0.3s var(--ease); position:relative; overflow:hidden;
}
.venture-card::before {
  content:''; position:absolute; top:0; left:0;
  width:2px; height:0; background:var(--gold);
  transition:height 0.4s var(--ease);
}
.venture-card:hover { border-color:var(--border); }
.venture-card:hover::before { height:100%; }
.venture-card__number { font-family:var(--font-display); font-size:2.8rem; font-weight:300; color:rgba(201,160,82,0.18); margin-bottom:20px; line-height:1; }
.venture-card__title { font-family:var(--font-display); font-size:1.45rem; font-weight:500; margin-bottom:14px; line-height:1.3; }
.venture-card__text { font-size:0.9rem; color:var(--off-white); line-height:1.8; }

/* ---- Philosophy ---- */
.philosophy { text-align:center; padding:120px 0; position:relative; }
.philosophy::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201,160,82,0.04) 0%, transparent 70%);
  pointer-events:none;
}
.philosophy__quote { max-width:840px; margin:0 auto; padding:0 32px; position:relative; z-index:1; }
.philosophy__mark { font-family:var(--font-display); font-size:7rem; line-height:0.4; color:var(--gold); opacity:0.25; margin-bottom:28px; display:block; }
.philosophy__text { font-family:var(--font-display); font-size:clamp(1.65rem,3vw,2.5rem); font-weight:300; font-style:italic; line-height:1.5; color:var(--white); margin-bottom:32px; }
.philosophy__attr { font-size:0.72rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); }

/* ---- Page Header ---- */
.page-header {
  padding:160px 0 80px; text-align:center;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 100% at 50% 100%, rgba(201,160,82,0.05) 0%, transparent 60%);
}
.page-header__eyebrow { font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; display:block; }
.page-header__title { font-family:var(--font-display); font-size:clamp(3rem,6vw,5.5rem); font-weight:300; line-height:1; position:relative; }

/* ---- Bio Page ---- */
.bio__inner {
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:360px 1fr; gap:80px; align-items:start;
}
.bio__photo-wrap { position:sticky; top:100px; }
.bio__photo-wrap img { width:100%; border-radius:3px; }
.bio__photo-caption { font-size:0.72rem; color:var(--muted); letter-spacing:0.1em; text-transform:uppercase; margin-top:14px; text-align:center; }
.bio__content h2 { font-family:var(--font-display); font-size:2rem; font-weight:300; color:var(--gold); margin-bottom:24px; margin-top:48px; }
.bio__content h2:first-child { margin-top:0; }
.bio__content p { font-size:1.02rem; color:var(--off-white); line-height:1.9; margin-bottom:22px; }
.bio__content p:last-child { margin-bottom:0; }
.bio__content strong { color:var(--white); font-weight:500; }

/* ---- Press Page ---- */
.press__grid {
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
}
.press-card {
  background:var(--surface); border:1px solid var(--border);
  padding:52px 44px; border-radius:3px;
  transition:all 0.3s var(--ease);
}
.press-card:hover { border-color:var(--gold); transform:translateY(-4px); }
.press-card__source { font-family:var(--font-display); font-size:2rem; font-weight:500; color:var(--gold); margin-bottom:10px; }
.press-card__title { font-size:1.1rem; font-weight:400; margin-bottom:16px; line-height:1.4; }
.press-card__years { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
.year-tag { padding:5px 14px; border:1px solid var(--border); border-radius:2px; font-size:0.7rem; letter-spacing:0.1em; color:var(--off-white); }
.press-card__desc { font-size:0.92rem; color:var(--off-white); line-height:1.8; }
.press-note { max-width:var(--max-w); margin:60px auto 0; padding:0 32px; text-align:center; }
.press-note p { font-size:0.9rem; color:var(--muted); font-style:italic; }

/* ---- Ventures Page ---- */
.ventures-full__grid {
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
}
.venture-full-card {
  background:var(--surface); border:1px solid var(--border);
  padding:52px 44px; border-radius:3px;
  transition:all 0.3s var(--ease); position:relative; overflow:hidden;
}
.venture-full-card::before {
  content:''; position:absolute; top:0; left:0;
  width:0; height:2px; background:var(--gold);
  transition:width 0.4s var(--ease);
}
.venture-full-card:hover { transform:translateY(-3px); }
.venture-full-card:hover::before { width:100%; }
.venture-full-card__number { font-family:var(--font-display); font-size:3.5rem; font-weight:300; color:var(--gold-alpha); line-height:1; margin-bottom:20px; }
.venture-full-card__title { font-family:var(--font-display); font-size:1.7rem; font-weight:500; margin-bottom:16px; }
.venture-full-card__text { font-size:0.95rem; color:var(--off-white); line-height:1.85; }

/* ---- Contact Page ---- */
.contact__inner { max-width:660px; margin:0 auto; padding:0 32px; }
.contact__intro { text-align:center; margin-bottom:56px; }
.contact__intro p { font-size:1.05rem; color:var(--off-white); line-height:1.8; }
.contact__email-display { display:inline-flex; align-items:center; gap:8px; color:var(--gold); font-size:0.9rem; margin-top:14px; letter-spacing:0.05em; transition:opacity 0.2s; }
.contact__email-display:hover { opacity:0.75; }
.form-group { margin-bottom:22px; }
.form-group label { display:block; font-size:0.7rem; letter-spacing:0.13em; text-transform:uppercase; color:var(--muted); margin-bottom:10px; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:14px 18px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:2px; color:var(--white);
  font-family:var(--font-body); font-size:0.95rem; font-weight:300;
  transition:border-color 0.2s; outline:none; appearance:none;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { min-height:140px; resize:vertical; }
.form__submit {
  width:100%; padding:16px;
  background:var(--gold); color:var(--bg);
  border:none; border-radius:2px;
  font-family:var(--font-body); font-size:0.8rem;
  font-weight:500; letter-spacing:0.13em; text-transform:uppercase;
  cursor:pointer; transition:background 0.2s;
  margin-top:8px;
}
.form__submit:hover { background:var(--gold-light); }
.contact__social { display:flex; justify-content:center; gap:40px; margin-top:60px; padding-top:52px; border-top:1px solid var(--border); }
.social-link { display:flex; flex-direction:column; align-items:center; gap:10px; font-size:0.68rem; letter-spacing:0.13em; text-transform:uppercase; color:var(--muted); transition:color 0.2s; }
.social-link:hover { color:var(--gold); }
.social-icon { width:22px; height:22px; }

/* ---- Footer ---- */
.footer { background:var(--surface); border-top:1px solid var(--border); padding:52px 0 32px; }
.footer__inner { max-width:var(--max-w); margin:0 auto; padding:0 32px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom:32px; }
.footer__logo { font-family:var(--font-display); font-size:1.2rem; font-weight:400; letter-spacing:0.05em; }
.footer__links { display:flex; gap:32px; flex-wrap:wrap; }
.footer__links a { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); transition:color 0.2s; }
.footer__links a:hover { color:var(--gold); }
.footer__copy { max-width:var(--max-w); margin:0 auto; padding:24px 32px 0; border-top:1px solid rgba(255,255,255,0.05); font-size:0.72rem; color:var(--muted); }

/* ---- Featured In Ticker ---- */
.featured-in {
  padding:36px 0;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.featured-in__label {
  text-align:center;
  font-size:0.66rem; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--muted);
  margin-bottom:20px;
  display:block;
}
.ticker-wrap {
  overflow:hidden;
  width:100%;
  position:relative;
  height:36px;
  display:flex;
  align-items:center;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content:'';
  position:absolute; top:0; bottom:0; width:80px; z-index:2;
  pointer-events:none;
}
.ticker-wrap::before {
  left:0;
  background:linear-gradient(to right, var(--surface), transparent);
}
.ticker-wrap::after {
  right:0;
  background:linear-gradient(to left, var(--surface), transparent);
}
.ticker {
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:0;
  animation:ticker-scroll 22s linear infinite;
  will-change:transform;
  white-space:nowrap;
}
.ticker:hover { animation-play-state:paused; }
.ticker__text {
  font-family:var(--font-display);
  font-size:1.05rem;
  font-weight:400;
  letter-spacing:0.08em;
  color:var(--white);
  padding:0 28px;
  white-space:nowrap;
  flex-shrink:0;
}
.ticker__dot {
  color:var(--gold);
  font-size:1.4rem;
  line-height:1;
  flex-shrink:0;
  padding:0 4px;
}

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

/* ---- Press Card Logo ---- */
.press-card__logo {
  width:100%;
  height:120px;
  object-fit:contain;
  display:block;
  margin-bottom:24px;
  padding:16px 0;
}
.press-card__logo--invert { filter:invert(1) brightness(0.85); }

/* ---- Gold Divider ---- */
.gold-line { width:48px; height:1px; background:var(--gold); margin:32px 0; }
.gold-line--center { margin:32px auto; }

/* ---- Reveal Animations ---- */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
.reveal {
  opacity:0; transform:translateY(18px);
  transition:opacity 0.7s var(--ease), transform 0.7s var(--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; }

/* ---- Responsive ---- */
@media (max-width:960px) {
  .hero__inner { grid-template-columns:1fr; gap:56px; padding:80px 32px; }
  .hero__photo { order:-1; max-width:300px; margin:0 auto; }
  .about-preview__inner { grid-template-columns:1fr; gap:56px; }
  .ventures__grid { grid-template-columns:1fr 1fr; }
  .bio__inner { grid-template-columns:1fr; }
  .bio__photo-wrap { position:static; max-width:300px; }
  .press__grid { grid-template-columns:1fr; }
  .ventures-full__grid { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  :root { --nav-h:64px; }
  .container, .nav__inner { padding:0 20px; }
  .ventures__grid { grid-template-columns:1fr; }
  .ventures__grid .venture-card, .ventures-full__grid .venture-full-card { padding:36px 24px; }
  .awards__items { gap:24px; }
  .awards__divider { display:none; }
  .nav__links { display:none; }
  .nav__toggle { display:flex; }
  .footer__inner { flex-direction:column; }
  .footer__links { justify-content:center; }
  .press-card { padding:36px 28px; }
  .philosophy__text { font-size:1.5rem; }
  .hero__name { font-size:3.5rem; }
}
