:root {
  --bg: #faf6f1;
  --bg-warm: #f3ece3;
  --bg-deep: #2c2420;
  --fg: #3a302a;
  --fg-light: #7a6e65;
  --accent: #c4956a;
  --accent-soft: #dbb99a;
  --accent-deep: #a07248;
  --cream: #fdf9f4;
  --blush: #e8d5c4;
  --sage: #a8b5a0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2c2420 0%, #4a3830 40%, #6b4f3a 70%, #c4956a 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200, 160, 120, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 181, 160, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.hero-title .amp {
  display: inline-block;
  font-style: italic;
  color: var(--accent);
  margin: 0 0.05em;
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--accent-soft);
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent-soft));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== INTRO ===== */
.intro {
  padding: 8rem 2rem;
  background: var(--bg);
  position: relative;
}

.intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.intro-accent {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.intro-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 2rem;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--fg-light);
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.9;
}

.intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--accent-deep);
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-light);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
}

/* ===== EXPERIENCES ===== */
.experiences {
  padding: 7rem 2rem;
  background: var(--bg-warm);
}

.experiences-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.experience-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(196, 149, 106, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 36, 32, 0.06);
}

.card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.experience-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.experience-card p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.8;
}

/* ===== DETAILS ===== */
.details {
  padding: 7rem 2rem;
  background: var(--bg);
}

.details-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.details-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--fg);
  margin-top: 1rem;
}

.details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.details-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.6;
}

.detail-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.closing-accent {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.closing-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.5;
  color: var(--cream);
}

.closing-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-soft);
  margin-top: 2rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(196, 149, 106, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer-location {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 0.3rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--accent-soft);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .details-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero {
    min-height: 90vh;
  }

  .intro, .closing {
    padding: 5rem 1.5rem;
  }

  .experiences, .details {
    padding: 4rem 1.5rem;
  }

  .experience-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-label {
    font-size: 0.7rem;
  }
}