/* =====================================================================
   RARE TOURISM — DESIGN TOKENS
   A palette drawn from Goa itself: monsoon canopy, laterite earth,
   Indo-Portuguese azulejo blue, and turmeric gold — not generic
   "eco-green" template colours.
===================================================================== */
:root{
  --canopy:      #14332B;   /* deep forest green — primary dark */
  --canopy-soft: #1E4A3D;
  --monsoon:     #3F6B52;   /* mid green accent */
  --laterite:    #A8481F;   /* Goan red earth — used sparingly, one signature accent */
  --azulejo:     #2A5C6B;   /* Indo-Portuguese tile blue */
  --turmeric:    #D9A441;   /* warm gold highlight, rules & marks */
  --paper:       #EFEADA;   /* sandy paper background */
  --paper-deep:  #E3DAC0;
  --ink:         #1B2118;
  --ink-soft:    #4A5148;
  --line:        rgba(27,33,24,.12);

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body{
  font-family:var(--font-body);
  color:var(--ink-soft);
}

a:focus-visible, button:focus-visible, .btn:focus-visible{
  outline:3px solid var(--turmeric);
  outline-offset:3px;
}

/* =====================================================================
   HERO — editorial, left-aligned, coordinates as the eyebrow
   (markup updated to use .hero-content / .hero-coords, see HTML notes)
===================================================================== */
.hero{
  position:relative;
  height:82vh;
  min-height:620px;
  overflow:hidden;
}
.hero-image{ position:absolute; inset:0; }
.hero-image img{
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.06);
  filter:saturate(1.05);
}
.hero-overlay{
  background:linear-gradient(
    0deg,
    rgba(14,20,15,.92) 0%,
    rgba(14,20,15,.55) 42%,
    rgba(14,20,15,.15) 75%
  );
}
.hero-content{
  position:relative;
  z-index:5;
  height:100%;
  display:flex;
  align-items:flex-end;
  padding-bottom:5.5rem;
  color:#fff;
}
.hero-coords{
  font-family:var(--font-mono);
  font-size:.78rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--turmeric);
  display:inline-block;
  padding-bottom:14px;
  margin-bottom:20px;
  border-bottom:2px solid var(--turmeric);
}
.hero h1{
  font-family:var(--font-display);
  font-size:5rem;
  font-weight:600;
  letter-spacing:-1.5px;
  margin-bottom:18px;
  line-height:1.02;
}
.hero h1 sup{
  font-size:1.6rem;
  top:-2.2rem;
  color:var(--turmeric);
}
.hero-subtitle{
  font-family:var(--font-body);
  font-weight:300;
  font-size:1.35rem;
  max-width:620px;
  line-height:1.6;
  color:#f1efe6;
}
@media(max-width:991px){
  .hero{ height:72vh; min-height:520px; }
  .hero h1{ font-size:2.75rem; }
  .hero-subtitle{ font-size:1.05rem; }
  .hero-content{ padding-bottom:3rem; }
}

/* =====================================================================
   SECTION INTROS
===================================================================== */
.section-label{
  display:inline-block;
  font-family:var(--font-mono);
  letter-spacing:3px;
  font-size:.75rem;
  font-weight:600;
  color:var(--laterite);
  text-transform:uppercase;
}
.section-title{
  font-family:var(--font-display);
  font-size:2.7rem;
  font-weight:600;
  line-height:1.25;
  color:var(--ink);
}
.section-title span{ color:var(--monsoon); font-style:italic; }
.section-lead{
  font-size:1.2rem;
  font-weight:300;
  color:var(--ink-soft);
  line-height:1.8;
}
#rare-tourism p{
  font-size:1.06rem;
  line-height:1.9;
  color:var(--ink-soft);
  margin-bottom:24px;
}
.rare-quote{
  margin:60px auto;
  padding:32px 36px;
  background:var(--paper);
  border-left:5px solid var(--laterite);
  font-family:var(--font-display);
  font-size:1.9rem;
  font-weight:500;
  border-radius:4px;
  max-width:800px;
}
.rare-quote span{ color:var(--laterite); font-style:italic; }

/* =====================================================================
   TOURISM EVOLUTION / TIMELINE
   (numbers here are genuinely sequential — an evolution — so they stay)
===================================================================== */
.tourism-evolution{ background:var(--paper); }
.tourism-timeline{
  display:flex; justify-content:space-between; gap:20px;
  flex-wrap:wrap; margin-top:20px;
}
.timeline-item{
  background:#fff;
  padding:34px 24px;
  border-radius:6px;
  flex:1; min-width:210px;
  text-align:center;
  border-top:3px solid var(--line);
  transition:transform .3s ease, border-color .3s ease;
}
.timeline-item:hover{ transform:translateY(-8px); }
.timeline-item.active{
  border-top:3px solid var(--turmeric);
  background:var(--canopy);
  color:#fff;
}
.timeline-number{
  font-family:var(--font-mono);
  width:60px; height:60px;
  background:transparent;
  border:2px solid var(--monsoon);
  color:var(--monsoon);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; font-weight:600;
  margin:0 auto 18px;
}
.timeline-item.active .timeline-number{
  border-color:var(--turmeric); color:var(--turmeric);
}
.timeline-item h4{ font-weight:700; margin-bottom:12px; font-size:1.15rem; }
.timeline-item p{ font-size:.94rem; line-height:1.7; margin:0; }
.timeline-item.active p{ color:#e9e5d8; }
@media(max-width:992px){ .tourism-timeline{ flex-direction:column; } }

/* =====================================================================
   RARE TOURISM CARDS (the six pillars)
===================================================================== */
.rare-card{
  background:#fff;
  padding:34px;
  border-radius:6px;
  text-align:center;
  height:100%;
  border:1px solid var(--line);
  transition:transform .3s ease, box-shadow .3s ease;
}
.rare-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 32px rgba(20,51,43,.1);
}
.rare-card i{
  font-size:2.6rem;
  color:var(--azulejo);
  margin-bottom:18px;
  display:block;
}
.rare-card h4{ font-weight:700; margin-bottom:14px; font-size:1.25rem; color:var(--ink); }
.rare-card p{ margin:0; line-height:1.8; color:var(--ink-soft); }

/* =====================================================================
   GOA SECTION
===================================================================== */
.rare-goa{ background:var(--paper); }
.rare-goa img, .our-story img{ transition:transform .5s ease; border-radius:6px; }
.rare-goa img:hover, .our-story img:hover{ transform:scale(1.015); }

/* =====================================================================
   EXPERIENCE CARDS
===================================================================== */
.experience-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  border:1px solid var(--line);
  transition:transform .3s ease;
  height:100%;
}
.experience-card:hover{ transform:translateY(-8px); }
.experience-card img{ width:100%; height:230px; object-fit:cover; }
.experience-content{ padding:24px; }
.experience-tag{
  display:inline-block;
  padding:5px 14px;
  background:transparent;
  border:1px solid var(--laterite);
  color:var(--laterite);
  border-radius:30px;
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.experience-content h4{ font-weight:700; margin-bottom:14px; color:var(--ink); }
.experience-content p{ margin:0; color:var(--ink-soft); line-height:1.8; }

/* =====================================================================
   VISION
===================================================================== */
.vision-section{ background:var(--canopy); color:#fff; }
.vision-box{ max-width:880px; margin:auto; text-align:center; }
.vision-section .section-title{ color:#fff; }
.vision-section .section-title span{ color:var(--turmeric); }
.vision-lead{ font-size:1.2rem; line-height:1.9; margin:32px 0; color:#f1efe6; }
.vision-section p{ font-size:1.03rem; line-height:2; color:#d9d5c6; margin-bottom:24px; }
.vision-section blockquote{
  margin-top:45px;
  font-family:var(--font-display);
  font-size:1.6rem;
  font-weight:400;
  font-style:italic;
  border-left:3px solid var(--turmeric);
  padding-left:28px;
  color:#fff;
}

/* =====================================================================
   MANIFESTO
===================================================================== */
.manifesto{ background:#fff; }
.manifesto-card{
  background:var(--paper);
  padding:38px;
  height:100%;
  border-radius:6px;
  position:relative;
  overflow:hidden;
  transition:transform .3s ease;
}
.manifesto-card:hover{ transform:translateY(-8px); }
.manifesto-card .number{
  position:absolute; top:18px; right:24px;
  font-family:var(--font-mono);
  font-size:2.2rem; font-weight:600;
  color:rgba(27,33,24,.1);
}
.manifesto-card h4{ font-weight:700; margin-bottom:18px; color:var(--ink); }
.manifesto-card p{ line-height:1.9; color:var(--ink-soft); margin:0; }

/* =====================================================================
   OUR STORY
===================================================================== */
.our-story{ background:var(--paper); }

/* =====================================================================
   RARE TOURISM INDEX — signature "field ledger" treatment
===================================================================== */
.rare-index{ background:#fff; }
.index-item{
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px dashed var(--line);
}
.index-item span{
  display:flex;
  justify-content:space-between;
  font-family:var(--font-mono);
  font-weight:600;
  font-size:.95rem;
  margin-bottom:10px;
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.5px;
}
.progress{
  height:6px;
  border-radius:0;
  background:var(--line);
}
.progress-bar{
  background:var(--monsoon) !important;
  font-size:0; /* numbers now live in .index-item span instead of inside the bar */
}
.index-summary{
  background:var(--canopy);
  color:#fff;
  padding:50px;
  border-radius:6px;
  text-align:center;
  border:1px solid var(--canopy-soft);
}
.index-summary h3{ font-family:var(--font-mono); letter-spacing:2px; font-size:1rem; text-transform:uppercase; color:var(--turmeric); }
.overall-score{
  font-family:var(--font-display);
  font-size:5.5rem;
  font-weight:600;
  color:#fff;
  margin:20px 0;
}
.index-summary p{ color:#d9d5c6; max-width:720px; margin:0 auto; line-height:1.9; }

/* =====================================================================
   FINAL CTA
===================================================================== */
.future-section{ background:linear-gradient(135deg,var(--canopy),var(--azulejo)); }
.future-title{ font-family:var(--font-display); font-size:2.9rem; font-weight:600; }
.future-title span{ color:var(--turmeric); font-style:italic; }
.future-lead{ font-size:1.25rem; line-height:1.9; max-width:880px; margin:32px auto; }
.future-section p{ line-height:2; font-size:1.03rem; max-width:880px; margin:0 auto 24px; color:#ece8da; }
.future-quote{
  margin-top:55px;
  padding:38px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:6px;
  background:rgba(0,0,0,.15);
}
.future-quote h3{ font-family:var(--font-display); font-weight:400; font-style:italic; line-height:1.7; margin:0; }

.future-section .btn-light{ background:var(--turmeric); border-color:var(--turmeric); color:var(--ink); font-weight:600; }
.future-section .btn-light:hover{ background:#c98f30; border-color:#c98f30; }