:root {
  --bg: #120907;
  --bg-soft: #1c100d;
  --surface: rgba(44, 27, 21, 0.72);
  --surface-strong: rgba(63, 39, 30, 0.86);
  --text: #f8ecdc;
  --muted: #d8bfaa;
  --accent: #ff9a49;
  --accent-strong: #ffd07f;
  --line: rgba(255, 211, 181, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 126, 56, 0.12), transparent 35%),
    linear-gradient(180deg, #1a0d0a 0%, #120907 42%, #0b0504 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.backdrop__ember {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: drift 15s ease-in-out infinite;
}

.backdrop__ember--one {
  width: 24rem;
  height: 24rem;
  top: -4rem;
  right: -6rem;
  background: rgba(255, 133, 61, 0.38);
}

.backdrop__ember--two {
  width: 18rem;
  height: 18rem;
  bottom: 14rem;
  left: -5rem;
  background: rgba(255, 193, 122, 0.14);
  animation-duration: 18s;
}

.backdrop__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 9, 8, 0.56);
}

.nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 4rem 0;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow,
.card__kicker,
.panel__eyebrow,
.visit-card__label {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  font-size: 0.78rem;
}

h1,
h2,
h3,
.quote__text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero__lede {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero__actions,
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  color: #22100a;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 38px rgba(255, 147, 73, 0.22);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero__visual {
  display: grid;
  place-items: center;
}

.portrait-card {
  width: min(31rem, 88vw);
}

.portrait-card__frame {
  position: relative;
  width: min(31rem, 80vw);
  aspect-ratio: 0.82;
  padding: 1.2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 208, 127, 0.12), transparent 35%),
    linear-gradient(145deg, #361b14, #1b0f0b);
  box-shadow: var(--shadow);
}

.portrait-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 32rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 219, 173, 0.18);
  display: block;
  overflow: hidden;
  background-image: url("raju-ghising-portrait.jpg?v=final5");
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.portrait-card__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.portrait-card__name,
.portrait-card__role {
  margin: 0;
}

.portrait-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text);
}

.portrait-card__role {
  font-size: 0.98rem;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.story__grid,
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.panel,
.visit-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(73, 43, 32, 0.42), rgba(26, 14, 11, 0.74));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.visit-card {
  padding: 1.6rem;
}

.experience__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.feature__number {
  font-weight: 800;
  color: var(--accent-strong);
}

.panel {
  padding: 1.8rem;
}

.panel__list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.quote-block {
  padding-top: 1rem;
}

.quote {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote__text {
  max-width: 18ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.site-footer {
  padding: 1rem 0 2.4rem;
}

.site-footer p {
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.5rem, 1.2rem, 0) scale(1.08);
  }
}

@media (max-width: 900px) {
  .hero,
  .experience__layout,
  .story__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero__visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .section {
    padding: 3rem 0;
  }

  .portrait-card__caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .cta .button {
    width: 100%;
  }
}
