/* =============================================
   Lorenzo von Matterhorn — Official Stylesheet
   ============================================= */

:root {
  --gold: #9a7d3a;
  --gold-light: #c9a84c;
  --gold-pale: #f0e8d0;
  --dark: #111110;
  --dark-mid: #1e1d1b;
  --dark-surface: #2a2926;
  --cream: #faf7f2;
  --cream-mid: #f0ebe0;
  --text: #1a1918;
  --text-mid: #5a5650;
  --text-light: #8a8480;
  --border: rgba(154, 125, 58, 0.2);
  --border-dark: rgba(201, 168, 76, 0.15);

  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--gold-pale);
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 25vw, 260px);
  color: rgba(154, 125, 58, 0.06);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.crest {
  font-size: 20px;
  letter-spacing: 12px;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeDown 1s ease both;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeDown 1s 0.1s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--gold-pale);
  margin-bottom: 28px;
  animation: fadeDown 1s 0.2s ease both;
}

.hero h1 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  font-size: 0.75em;
  letter-spacing: 0.08em;
}

.tagline {
  font-size: 16px;
  color: rgba(240, 232, 208, 0.6);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeDown 1s 0.3s ease both;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  animation: expand 1s 0.5s ease both;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeDown 1s 0.6s ease both;
}

.hero-nav a {
  color: rgba(201, 168, 76, 0.7);
  text-decoration: none;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 0.5px solid rgba(154, 125, 58, 0.2);
  margin: -0.5px;
  transition: all 0.2s;
}

.hero-nav a:hover {
  color: var(--gold-pale);
  background: rgba(154, 125, 58, 0.15);
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 80px 40px; }
.section--dark {
  background: var(--dark-mid);
  color: var(--gold-pale);
}
.section--gallery { background: var(--cream-mid); }

.container {
  max-width: 1040px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.section-title.light {
  color: var(--gold-pale);
  border-bottom-color: var(--border-dark);
}

/* =============================================
   BIOGRAPHY
   ============================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}

.portrait-caption {
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-ui);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.bio-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 18px;
}

.drop-cap::first-letter {
  font-size: 64px;
  float: left;
  line-height: 0.78;
  margin: 8px 10px 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--border);
}

.stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--cream);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.img{
  height:200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* =============================================
   ACHIEVEMENTS
   ============================================= */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.achievement-card {
  background: var(--dark-surface);
  padding: 32px 28px;
  transition: background 0.2s;
}

.achievement-card:hover {
  background: #322f2b;
}

.ach-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.ach-year {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.achievement-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.achievement-card p {
  font-size: 14px;
  color: rgba(240, 232, 208, 0.55);
  font-family: var(--font-ui);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
   PRESS
   ============================================= */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.press-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.press-item:last-child { border-bottom: none; }
.press-item:hover { background: rgba(154, 125, 58, 0.03); }

.pub-placeholder {
  height: 100%;
  min-height: 100px;
  border-right: 1px solid var(--border);
  border-radius: 0;
  font-size: 11px;
}

.press-item blockquote {
  padding: 28px 32px;
  font-style: italic;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.press-item blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-item {
  height: 200px;
  font-size: 12px;
}

.gi-tall {
  grid-row: span 2;
  height: 100%;
  min-height: 408px;
}

.gi-wide {
  grid-column: span 2;
}

/* =============================================
   FOUNDATION
   ============================================= */
.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

.foundation-text p {
  color: rgba(240, 232, 208, 0.65);
  margin-bottom: 18px;
  font-size: 18px;
}

.foundation-text em { color: var(--gold-light); }

.foundation-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border-dark);
}

.f-stat {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}
.f-stat:last-child { border-right: none; }

.f-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.f-stat em {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-top: 4px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.contact-block {
  background: var(--cream);
  padding: 36px 32px;
  border: none;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-block p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.contact-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-style: italic;
  font-family: var(--font-ui);
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(154, 125, 58, 0.5);
  text-align: center;
  padding: 48px 40px;
  border-top: 1px solid rgba(154, 125, 58, 0.2);
}

.footer-crest {
  font-size: 16px;
  letter-spacing: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
  margin-bottom: 10px;
}

.footer-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-disclaimer {
  font-size: 12px;
  font-style: italic;
  color: rgba(154, 125, 58, 0.35);
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--font-body);
}

.img-placeholder em {
  font-style: italic;
  font-size: 11px;
  color: var(--text-light);
  opacity: 0.7;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.5;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes expand {
  from { width: 0; opacity: 0; }
  to   { width: 80px; opacity: 1; }
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 60px; }
  .section { padding: 60px 24px; }

  .bio-grid,
  .foundation-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .achievements-grid { grid-template-columns: 1fr; }

  .press-item { grid-template-columns: 1fr; }
  .pub-placeholder { min-height: 60px; border-right: none; border-bottom: 1px solid var(--border); }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-tall { grid-row: span 1; min-height: 200px; }
  .gi-wide { grid-column: span 1; }

  .foundation-stats { flex-direction: column; }
  .f-stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .f-stat:last-child { border-bottom: none; }

  .hero-nav a { padding: 10px 12px; font-size: 10px; letter-spacing: 2px; }
  .img {
    height:200px;
    text-align:center;

  }
}
