/* ===========================================
   DANIT PELEG — Clean Static Site
   Pure CSS, no frameworks
   =========================================== */

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

/* --- CSS Custom Properties --- */
:root {
  --bg: #f3f3f3;
  --text-dark: #010001;
  --text-gray: #888888;
  --text-light: #666666;
  --accent: #333333;
  --white: #ffffff;
  --black: #0a0a0a;
  --nav-height: 70px;
  --section-pad: 80px 20px;
  --max-w: 1400px;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-nav: 'Poppins', sans-serif;
  --font-mono: 'Montserrat', sans-serif;
  --transition: 0.3s ease;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.1; font-weight: 700; }
.label { font-family: var(--font-primary); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-gray); text-transform: uppercase; }
.section-num { font-family: var(--font-primary); font-size: 13px; letter-spacing: 0.05em; color: var(--text-gray); }

/* ===========================================
   NAVIGATION
   =========================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-nav.transparent { background: transparent; }
.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo a {
  font-family: var(--font-nav); font-size: 14px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white);
  transition: color var(--transition);
}
.site-nav.scrolled .nav-logo a { color: var(--text-dark); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: var(--font-nav); font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: color var(--transition), opacity var(--transition);
}
.nav-links a:hover { color: var(--white); }
.site-nav.scrolled .nav-links a { color: var(--text-dark); }
.site-nav.scrolled .nav-links a:hover { color: var(--text-gray); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.site-nav.scrolled .nav-hamburger span { background: var(--text-dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-nav); font-size: 24px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dark);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative; min-height: 100svh;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero-video-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55; position: absolute; inset: 0;
}
.hero-content {
  position: relative; z-index: 1; padding: 40px 40px 60px;
}
.hero-num { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.15em; margin-bottom: 20px; font-family: var(--font-nav); }
.hero-tagline { font-family: var(--font-nav); font-size: 13px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 16px; }
.hero-title {
  font-family: var(--font-primary); font-weight: 700; font-size: clamp(48px, 10vw, 160px);
  letter-spacing: -0.03em; line-height: 0.88; color: var(--white); text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 3vw, 36px);
  color: rgba(255,255,255,0.7); letter-spacing: -0.01em;
}
.hero-scroll-hint {
  position: absolute; bottom: 24px; right: 40px; z-index: 1;
  font-family: var(--font-nav); font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-primary); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  transition: all var(--transition);
}
.btn-dark { background: var(--text-dark); color: var(--white); }
.btn-dark:hover { background: var(--accent); }
.btn-light { background: var(--white); color: var(--text-dark); border: 1.5px solid var(--text-dark); }
.btn-light:hover { background: var(--text-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--text-dark); }
.btn-outline:hover { background: var(--text-dark); color: var(--white); }
.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-nav); font-size: 18px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dark);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--text-gray); }
.contact-link .arrow { font-size: 14px; transition: transform var(--transition); }
.contact-link:hover .arrow { transform: translate(2px, -2px); }

/* ===========================================
   SECTIONS — General Layout
   =========================================== */
.section-wrapper { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 40px;
}

/* ===========================================
   ABOUT INTRO
   =========================================== */
.about-intro { padding: 80px 40px; max-width: var(--max-w); margin: 0 auto; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-intro-text h2 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 500; letter-spacing: -0.03em; color: var(--text-dark); line-height: 1.2; margin-bottom: 40px;
}
.about-intro-cta { padding-top: 20px; }

/* ===========================================
   LATEST PROJECTS [002]
   =========================================== */
.latest-projects { background: var(--white); padding: 80px 0; }
.latest-projects .section-wrapper { position: relative; }
.projects-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.projects-info {}
.projects-num { font-size: 12px; letter-spacing: 0.15em; color: var(--text-gray); margin-bottom: 20px; font-family: var(--font-nav); }
.projects-year { font-size: 12px; letter-spacing: 0.1em; color: var(--text-gray); font-family: var(--font-nav); margin-top: 16px; }
.projects-title { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.projects-desc { font-size: 16px; line-height: 1.7; color: var(--text-light); }

/* Services bar */
.services-bar {
  background: var(--text-dark); color: var(--white);
  padding: 24px 40px; text-align: center;
  font-family: var(--font-nav); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ===========================================
   CAROUSEL
   =========================================== */
.carousel-container { position: relative; overflow: hidden; border-radius: 8px; }
.carousel-track {
  display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex-shrink: 0; width: 100%; scroll-snap-align: start;
  aspect-ratio: 4/3; overflow: hidden; position: relative; border-radius: 8px;
}
.carousel-slide img, .carousel-slide video {
  width: 100%; height: 100%; object-fit: cover; border-radius: 8px;
}
.carousel-btns {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 16px; pointer-events: none;
}
.carousel-btn {
  pointer-events: auto; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.3); border: none; color: white; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background var(--transition); backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(0,0,0,0.6); }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.2); border: none; transition: background var(--transition); }
.carousel-dot.active { background: var(--text-dark); }

/* ===========================================
   PAST EXPERIENCE [003]
   =========================================== */
.past-experience { padding: 80px 0; }
.experience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.exp-card { background: var(--white); border-radius: 12px; overflow: hidden; }
.exp-card-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.exp-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-card:hover .exp-card-image img { transform: scale(1.03); }
.exp-card-body { padding: 32px; }
.exp-card-num { font-size: 11px; letter-spacing: 0.15em; color: var(--text-gray); margin-bottom: 12px; font-family: var(--font-nav); }
.exp-card-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.exp-card-text { font-size: 15px; line-height: 1.7; color: var(--text-light); }

/* ===========================================
   FIRST 3D COLLECTION [2015]
   =========================================== */
.first-collection { padding: 80px 0; background: var(--white); }
.collection-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.collection-text h2 { font-size: clamp(24px, 3vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px; }
.collection-text p { font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.collection-year { font-size: 12px; letter-spacing: 0.1em; color: var(--text-gray); font-family: var(--font-nav); margin-bottom: 16px; }

/* ===========================================
   TIMES SQUARE
   =========================================== */
.times-square { position: relative; min-height: 500px; overflow: hidden; }
.times-square-bg { position: absolute; inset: 0; }
.times-square-bg img { width: 100%; height: 100%; object-fit: cover; }
.times-square-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.times-square-content {
  position: relative; z-index: 1; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  max-width: var(--max-w); margin: 0 auto;
}
.times-square-video-wrapper { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.times-square-video-wrapper iframe { width: 100%; height: 100%; }
.yt-placeholder { position: relative; cursor: pointer; background: #000; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.yt-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.yt-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 42px; background: rgba(33,33,33,0.85); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; border: none;
  transition: background var(--transition);
}
.yt-play-btn:hover { background: #ff0000; }
.yt-play-btn svg { width: 100%; height: 100%; }
.times-square-text h2 { font-size: clamp(20px, 2.5vw, 36px); font-weight: 500; letter-spacing: -0.02em; color: var(--white); line-height: 1.4; margin-bottom: 32px; }
.times-square-text h3 { font-family: var(--font-primary); font-size: clamp(28px, 4vw, 60px); font-weight: 700; letter-spacing: -0.03em; color: var(--white); line-height: 1; margin-bottom: 40px; }

/* ===========================================
   NFTs
   =========================================== */
.nfts-section { padding: 80px 0; }
.nfts-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.nfts-text h1 { font-size: clamp(36px, 4vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 24px; }
.nfts-text p { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 16px; }
.nfts-details { padding: 24px; background: rgba(0,0,0,0.04); border-radius: 8px; margin: 24px 0; font-size: 14px; line-height: 1.8; color: var(--text-light); }
.nfts-image { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; }
.nfts-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================
   PUBLIC SPEAKING [004]
   =========================================== */
.public-speaking { padding: 80px 0; background: var(--white); }
.speaking-section-label {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(60px, 8vw, 120px); letter-spacing: -0.03em; line-height: 0.9;
  color: var(--text-dark); margin-bottom: 60px;
}
.speaking-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.speaking-card {}
.speaking-card a { display: block; border-radius: 8px; overflow: hidden; margin-bottom: 20px; transition: opacity var(--transition); }
.speaking-card a:hover { opacity: 0.85; }
.speaking-card-img { aspect-ratio: 16/9; overflow: hidden; border-radius: 8px; }
.speaking-card-img img { width: 100%; height: 100%; object-fit: cover; }
.speaking-card h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 12px; }
.speaking-card p { font-size: 15px; line-height: 1.7; color: var(--text-gray); }
.speaking-download { display: flex; justify-content: center; margin-top: 40px; }

/* ===========================================
   COURSE
   =========================================== */
.course-section { padding: 80px 0; }
.course-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.course-text h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; color: var(--text-gray); margin-bottom: 32px; }
.course-image { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; }
.course-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonials { padding: 60px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: 12px; padding: 28px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg); margin-bottom: 16px; }
.testimonial-name { font-weight: 600; font-size: 18px; letter-spacing: -0.02em; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--text-light); font-style: italic; }

/* ===========================================
   AS SEEN ON — Logo Ticker
   =========================================== */
.press-section { padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); overflow: hidden; }
.press-title { text-align: center; font-family: var(--font-nav); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-gray); margin-bottom: 32px; }
.ticker-wrapper { overflow: hidden; }
.ticker-track {
  display: flex; align-items: center; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { flex-shrink: 0; padding: 0 32px; }
.ticker-item a { display: flex; align-items: center; height: 50px; opacity: 0.5; transition: opacity var(--transition); }
.ticker-item a:hover { opacity: 1; }
.ticker-item img { height: 32px; width: auto; object-fit: contain; filter: grayscale(1); transition: filter var(--transition); }
.ticker-item a:hover img { filter: grayscale(0); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================
   RESEARCH PROJECTS [005]
   =========================================== */
.research-section { padding: 80px 0; background: var(--white); }
.research-title-large {
  font-size: clamp(60px, 8vw, 120px); font-weight: 500; letter-spacing: -0.03em; line-height: 0.9;
  color: var(--text-dark); margin-bottom: 60px; padding: 0 40px;
}
.research-items { display: flex; flex-direction: column; gap: 80px; }
.research-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 0 40px; }
.research-item.reverse { direction: rtl; }
.research-item.reverse > * { direction: ltr; }
.research-item-img { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.research-item-img img { width: 100%; height: 100%; object-fit: cover; }
.research-item-content h2 { font-size: clamp(28px, 3vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.research-item-content p { font-size: 16px; line-height: 1.7; color: var(--text-gray); margin-bottom: 24px; }

/* ===========================================
   CONTACT FOOTER
   =========================================== */
.contact-footer {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
}
.contact-footer-bg { position: absolute; inset: 0; z-index: 0; }
.contact-footer-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.contact-footer-overlay { position: absolute; inset: 0; background: rgba(243,243,243,0.7); z-index: 0; }
.contact-footer-content { position: relative; z-index: 1; padding: 80px 40px; flex: 1; }
.contact-footer-top { margin-bottom: 60px; }
.contact-behind { font-size: 54px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.contact-insta { font-size: 44px; letter-spacing: -0.03em; color: var(--text-dark); }
.contact-insta span.italic-serif { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.contact-us-heading { font-size: clamp(60px, 8vw, 120px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.9; margin-bottom: 60px; }
.contact-us-heading em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap {}
.contact-profile { display: flex; flex-direction: column; gap: 24px; }
.contact-profile-card { display: flex; gap: 20px; align-items: flex-start; background: var(--white); border-radius: 16px; padding: 24px; }
.contact-profile-img { width: 80px; height: 100px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.contact-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-profile-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.contact-profile-info p { font-size: 15px; color: var(--text-gray); line-height: 1.7; }
.contact-collab-text { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.5; color: var(--text-dark); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field {
  width: 100%; padding: 16px; border-radius: 8px;
  border: none; font-family: var(--font-primary); font-size: 16px; font-weight: 500;
  background: var(--white); color: var(--text-dark); outline: none;
  transition: box-shadow var(--transition);
}
.form-field:focus { box-shadow: 0 0 0 2px var(--text-dark); }
.form-field::placeholder { color: rgba(0,0,0,0.35); }
textarea.form-field { resize: vertical; min-height: 140px; }
.form-submit {
  width: 100%; padding: 18px; border-radius: 8px; border: none;
  background: #222; color: var(--white);
  font-family: var(--font-primary); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.form-submit:hover { background: var(--text-gray); }
.form-success { text-align: center; padding: 20px; color: #2d8a4e; font-weight: 500; display: none; }

/* ===========================================
   SCROLL TO TOP (Up, Up, and Away)
   =========================================== */
.scroll-top-footer {
  background: var(--bg); padding: 60px 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.scroll-top-link {
  display: inline-block;
  font-family: var(--font-nav); font-weight: 500;
  font-size: clamp(40px, 8vw, 120px); letter-spacing: -0.05em; line-height: 0.9;
  color: var(--text-dark); transition: color var(--transition);
}
.scroll-top-link .serif { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.scroll-top-link .light { font-weight: 300; }
.scroll-top-link:hover { color: var(--text-gray); }
.scroll-top-footer .footer-links { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 32px; }
.scroll-top-footer .footer-links a { font-family: var(--font-nav); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-gray); transition: color var(--transition); }
.scroll-top-footer .footer-links a:hover { color: var(--text-dark); }

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-hero { padding: 160px 40px 80px; background: var(--text-dark); color: var(--white); }
.about-hero h1 { font-size: clamp(60px, 10vw, 160px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.88; margin-bottom: 40px; }
.about-hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.about-hero-bio { max-width: 700px; }
.about-hero-bio p { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.about-main { padding: 80px 40px; max-width: var(--max-w); margin: 0 auto; }
.about-timeline { padding: 80px 0; }
.timeline-item { display: grid; grid-template-columns: 140px 1fr; gap: 40px; padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.1); }
.timeline-year { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; color: var(--text-gray); padding-top: 6px; }
.timeline-content h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.timeline-content p { font-size: 15px; line-height: 1.7; color: var(--text-light); }
.about-press { padding: 80px 40px; background: var(--white); }
.about-press h2 { font-size: clamp(32px, 4vw, 60px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 40px; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.press-photo { aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; }
.press-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.press-photo:hover img { transform: scale(1.03); }

/* ===========================================
   PROJECTS PAGE
   =========================================== */
.projects-hero { padding: 160px 40px 80px; background: var(--text-dark); }
.projects-hero h1 { font-size: clamp(60px, 10vw, 160px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.88; color: var(--white); }
.projects-hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.projects-grid-page { padding: 80px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.project-card { border-radius: 12px; overflow: hidden; background: var(--white); transition: transform var(--transition), box-shadow var(--transition); }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.project-card-img { aspect-ratio: 4/3; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-body { padding: 24px; }
.project-card-year { font-size: 11px; letter-spacing: 0.1em; color: var(--text-gray); margin-bottom: 8px; font-family: var(--font-nav); }
.project-card-title { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.project-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-page-hero { padding: 160px 40px 80px; background: var(--text-dark); position: relative; overflow: hidden; }
.contact-page-hero-bg { position: absolute; inset: 0; }
.contact-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.contact-page-hero-content { position: relative; z-index: 1; }
.contact-page-hero h1 { font-size: clamp(60px, 10vw, 140px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.88; color: var(--white); margin-bottom: 20px; }
.contact-page-hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.contact-page-hero p { font-size: 20px; color: rgba(255,255,255,0.6); }
.contact-page-body { padding: 80px 40px; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.calendly-section h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.calendly-section p { font-size: 16px; color: var(--text-gray); margin-bottom: 24px; }
.calendly-embed { border-radius: 12px; overflow: hidden; min-height: 600px; }
.calendly-embed iframe { width: 100%; min-height: 600px; border: none; border-radius: 12px; }
.contact-form-section h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-form-section p { font-size: 16px; color: var(--text-gray); margin-bottom: 24px; }
.contact-social-links { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08); }
.social-link { display: flex; align-items: center; gap: 8px; font-family: var(--font-nav); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-gray); transition: color var(--transition); }
.social-link:hover { color: var(--text-dark); }
.social-link svg { width: 18px; height: 18px; }

/* ===========================================
   RESPONSIVE — Tablet 810px
   =========================================== */
@media (max-width: 1199px) {
  .about-intro-grid, .projects-layout, .collection-layout, .times-square-content,
  .nfts-layout, .course-layout, .contact-grid, .experience-cards, .speaking-cards,
  .research-item, .research-item.reverse, .contact-page-body {
    grid-template-columns: 1fr;
  }
  .research-item.reverse { direction: ltr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .projects-grid-page { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .times-square-content { padding: 60px 24px; }
}

/* ===========================================
   RESPONSIVE — Mobile 390px
   =========================================== */
@media (max-width: 809px) {
  .hero-content { padding: 30px 20px 50px; }
  .about-intro { padding: 60px 20px; }
  .about-intro-grid { gap: 40px; }
  .section-wrapper { padding: 0 20px; }
  .services-bar { padding: 20px; font-size: 11px; }
  .latest-projects { padding: 60px 0; }
  .past-experience { padding: 60px 0; }
  .first-collection { padding: 60px 0; }
  .public-speaking { padding: 60px 0; }
  .course-section { padding: 60px 0; }
  .research-section { padding: 60px 0; }
  .research-title-large { padding: 0 20px; font-size: clamp(40px, 10vw, 80px); }
  .research-item { padding: 0 20px; gap: 32px; }
  .contact-footer-content { padding: 60px 20px; }
  .contact-behind { font-size: 36px; }
  .contact-insta { font-size: 30px; }
  .contact-us-heading { font-size: 64px; }
  .scroll-top-footer { padding: 40px 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .projects-grid-page { grid-template-columns: 1fr; gap: 16px; padding: 40px 20px; }
  .press-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 140px 20px 60px; }
  .about-main { padding: 60px 20px; }
  .about-press { padding: 60px 20px; }
  .projects-hero { padding: 140px 20px 60px; }
  .contact-page-hero { padding: 140px 20px 60px; }
  .contact-page-body { padding: 60px 20px; grid-template-columns: 1fr; gap: 60px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
}
