:root{
  --cream: #FFFAF3;
  --cream-deep: #FFF1DE;
  --ink: #2B2420;
  --ink-soft: #5C5248;
  --orange: #F2731D;
  --orange-deep: #D85E10;
  --gold: #F4A93E;
  --navy: #1F3B4D;
  --line: rgba(43,36,32,0.10);
  --muted: rgba(255,250,243,0.72);
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }

.hero{
  position: relative;
  width: 100%;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/Kartik Swami.webp');
  background-size: cover;
  background-position: center 42%;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-veil{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(31,59,77,0.82) 0%, rgba(31,59,77,0.48) 38%, rgba(31,59,77,0.48) 68%, rgba(31,59,77,0.82) 100%),
    linear-gradient(180deg, rgba(31,59,77,0.62) 0%, rgba(31,59,77,0.38) 42%, rgba(31,59,77,0.82) 100%);
}
.hero-grain{
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content{
  position: relative;
  text-align: center;
  max-width: 720px;
  padding: 96px 24px 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow{
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0;
  animation: riseIn .8s ease-out .15s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after{
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--orange);
  vertical-align: middle;
  margin: 0 10px 3px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 18px 0 0;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 30px rgba(0,0,0,0.45);
  opacity: 0;
  animation: riseIn .9s ease-out .3s forwards;
}
.hero-title em{
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero-ridge{
  width: 220px;
  height: 34px;
  margin-top: 26px;
  opacity: 0;
  animation: riseIn .9s ease-out .5s forwards;
}
.hero-ridge path{
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.4;
  opacity: 0.75;
}
.hero-ridge circle{
  fill: var(--gold);
  filter: drop-shadow(0 0 4px var(--gold));
}
.hero-breadcrumb{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0;
  animation: riseIn .9s ease-out .65s forwards;
}
.hero-breadcrumb a{ color: var(--gold); }
.hero-breadcrumb a:hover{ color: var(--cream); }
.hero-breadcrumb .sep{ color: var(--orange); opacity: 0.6; font-size: 11px; }
.hero-breadcrumb .current{ color: var(--cream); }

@keyframes riseIn{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes kenburns{
  from{ transform: scale(1); }
  to{ transform: scale(1.08); }
}

.section-label{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.story{
  width: min(1120px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.story h2{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 18px;
}
.story h2 em{
  font-style: italic;
  color: var(--orange-deep);
}
.story p{
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.story p a{
  color: var(--orange-deep);
  border-bottom: 1px solid rgba(216,94,16,0.35);
}
.story p a:hover{ border-bottom-color: var(--orange-deep); }
.story-photo{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(43,36,32,0.35);
}
.story-photo img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.facts{
  width: min(1120px, calc(100% - 48px));
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.facts article{
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
}
.facts span{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.facts strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 8px 0 4px;
}
.facts p{
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.itinerary{
  width: min(1120px, calc(100% - 48px));
  margin: 56px auto 0;
}
.itinerary-inner{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 40px;
}
.itinerary h2{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 22px;
}
.itinerary ol{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.itinerary li{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
}
.itinerary .day{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 4px;
}
.itinerary p{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}
.itinerary p a{
  color: var(--orange-deep);
  border-bottom: 1px solid rgba(216,94,16,0.35);
}

.visit{
  width: min(1120px, calc(100% - 48px));
  margin: 56px auto 88px;
}
.visit-inner{
  background: var(--navy);
  color: var(--cream);
  border-radius: 22px;
  padding: 42px 48px;
}
.visit .section-label{ color: var(--gold); }
.visit h2{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 18px;
}
.visit ul{
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.visit li{
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  line-height: 1.55;
}
.visit li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.visit-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-main,
.btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
}
.btn-main{
  background: var(--orange);
  color: #fff;
}
.btn-main:hover{ background: var(--orange-deep); }
.btn-ghost{
  border: 1px solid rgba(255,250,243,0.28);
  color: var(--cream);
}
.btn-ghost:hover{ background: rgba(255,250,243,0.08); }

@media (max-width: 900px){
  .story,
  .facts{ grid-template-columns: 1fr; }
  .story-photo img{ height: 320px; }
  .itinerary li{ grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 640px){
  .hero{ min-height: 48vh; }
  .hero-content{ padding: 72px 20px 56px; }
  .story,
  .facts,
  .itinerary,
  .visit{ width: calc(100% - 32px); }
  .visit-inner,
  .itinerary-inner{ padding: 32px 22px; }
}
@media (prefers-reduced-motion: reduce){
  .hero-bg{ animation: none; }
  .hero-eyebrow, .hero-title, .hero-ridge, .hero-breadcrumb{ animation: none; opacity: 1; }
}
