:root {
  --cream: #F6F0E6;
  --cream-2: #EFE6D6;
  --ink: #3A2E27;
  --ink-soft: #6B5C4F;
  --terracotta: #C1713D;
  --terracotta-dark: #A65A2C;
  --rule: #E2D5C0;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 240, 230, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.logo span { color: var(--terracotta); }

.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.site-header nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-header nav a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
}

/* Hero */

.hero {
  padding: 96px 0 88px;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--cream-2) 0%, var(--cream) 65%);
}

.hero-inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--terracotta-dark);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 26px;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.cta-ghost {
  background: transparent;
  border: 1px solid var(--terracotta);
  color: var(--terracotta-dark);
}

.cta-ghost:hover {
  background: var(--terracotta);
  color: #fff;
}

/* Experiences */

.experiences { padding: 90px 0; }

.experiences h2 {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 56px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -20px rgba(58, 46, 39, 0.35);
}

.card-motif, .card-image {
  height: 160px;
  position: relative;
}

.card-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-image {
  display: block;
  max-width: 480px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin: 40px auto 0;
}

.card-motif::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 14px);
}

.motif-varanasi { background: linear-gradient(160deg, #E0A458 0%, #B5651D 55%, #7A4419 100%); }
.motif-jaipur  { background: linear-gradient(160deg, #E8A0A0 0%, #C1713D 55%, #8C4A2B 100%); }
.motif-kerala  { background: linear-gradient(160deg, #9DBE8A 0%, #5C8B5C 55%, #2F5233 100%); }

/* Experience detail page */

.detail-banner {
  height: min(50vh, 440px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-body {
  padding: 56px 0 96px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.back-link:hover { color: var(--terracotta-dark); }

.detail-body h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  max-width: 760px;
  margin-bottom: 28px;
}

.detail-body p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.gallery-section {
  margin-top: 56px;
  max-width: 900px;
}

.gallery-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  margin-bottom: 22px;
  color: var(--terracotta-dark);
}

.carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 40px -24px rgba(58, 46, 39, 0.4);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 15, 10, 0.45);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(20, 15, 10, 0.7);
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
}

.card h3 {
  font-size: 1.35rem;
  padding: 24px 24px 8px;
}

.card p {
  padding: 0 24px 26px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* Closing */

.closing {
  padding: 80px 0 96px;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.closing p {
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 26px 0;
  background: var(--cream-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.footer-inner a:hover { color: var(--terracotta-dark); }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; gap: 10px; padding: 14px 0; }
  .site-header nav { gap: 20px; }
  .hero { padding: 70px 0 60px; }
}
