:root {
  --ivory: #f4eee2;
  --ivory-deep: #eadfc8;
  --charcoal: #241f18;
  --charcoal-soft: #4a4033;
  --brown: #6b5f4d;
  --maroon: #7a2e2e;
  --gold: #b8935a;
  --border: rgba(36, 31, 24, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: #241f18;
  font-family: 'EB Garamond', serif;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #1f1a14; }

a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--gold); }

img { display: block; max-width: 100%; }

/* Eyebrow labels */
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow--maroon { color: var(--maroon); }
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.2;
  margin: 0;
  color: var(--charcoal);
}
.section-title--light { color: var(--ivory); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { color: var(--ivory); background: #34291c; }
.btn--outline { border: 1px solid var(--charcoal); color: var(--charcoal); }
.btn--outline:hover { color: var(--charcoal); background: rgba(36,31,24,0.06); }
.btn--gold { background: var(--gold); color: var(--charcoal); padding: 14px 32px; }
.btn--gold:hover { color: var(--charcoal); background: #c7a06b; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(244, 238, 226, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.nav-links a { color: inherit; }

/* HERO */
.hero {
  position: relative;
  padding: 120px 48px 100px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 147, 90, 0.14), transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner .eyebrow { margin-bottom: 28px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 88px;
  line-height: 1.02;
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.hero-lede {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  max-width: 640px;
  margin: 0 auto 44px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ABOUT */
.about {
  padding: 100px 48px;
  background: var(--charcoal);
  color: var(--ivory);
}
.about-inner { max-width: 780px; margin: 0 auto; }
.about-inner .section-title { margin-bottom: 28px; }
.about-text {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(244, 238, 226, 0.82);
  margin: 0 0 22px;
}
.about-text--last { margin-bottom: 0; }

/* WORKS */
.works {
  padding: 110px 48px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.works-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.work-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(36, 31, 24, 0.14);
}

.work-cover {
  height: 260px;
  background: #e7ded0;
  overflow: hidden;
}
.work-cover img { width: 100%; height: 100%; object-fit: cover; }
.work-cover--triple { display: grid; grid-template-columns: repeat(3, 1fr); }
.work-cover--double { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
.work-cover--double img { height: 260px; }

.work-body { padding: 32px 30px; }
.work-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
}
.work-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 27px;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.work-title--devanagari { font-family: 'Noto Serif Devanagari', 'Cormorant Garamond', serif; }
.work-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 16px;
}
.work-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin: 0 0 18px;
}
.work-link {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--maroon);
}

/* WORDS */
.words {
  padding: 110px 48px;
  background: var(--ivory-deep);
}
.words-inner { max-width: 1000px; margin: 0 auto; }
.words-header { text-align: center; margin-bottom: 64px; }

.words-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.quote-devanagari {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 21px;
  line-height: 1.9;
  margin: 0 0 14px;
  color: var(--charcoal);
}
.quote-translation {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--brown);
  margin: 0 0 10px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.7;
  margin: 0 0 14px;
  color: var(--charcoal);
}
.quote-source {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
}

/* CONTACT / FOOTER */
.contact {
  padding: 100px 48px 60px;
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
}
.contact .section-title { margin: 0 0 20px; }
.contact-lede {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: rgba(244, 238, 226, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244, 238, 226, 0.6);
  padding-top: 36px;
  border-top: 1px solid rgba(244, 238, 226, 0.15);
}
.footer-links a { color: rgba(244, 238, 226, 0.6); }
.footer-links a:hover { color: var(--gold); }
.copyright {
  margin-top: 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(244, 238, 226, 0.4);
}

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none !important; }
  .works-grid, .words-grid { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 56px; }
  .hero-lede { font-size: 20px; }
}
