:root{
    --cream: #FFFAF3;
    --cream-deep: #FFF1DE;
    --ink: #2B2420;
    --ink-soft: #5C5248;
    --orange: #F2731D;
    --orange-deep: #D85E10;
    --sky: #6FB7E0;
    --sky-pale: #DFF0FA;
    --navy: #1F3B4D;
    --gold: #F4A93E;
    --line: rgba(43,36,32,0.10);

    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  }

  *{ 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; }
  button{ font-family:inherit; }

  /* ============ HERO ============ */
  .hero{
    position:relative;
    width:100%;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    isolation:isolate;
    font-family:var(--font-body);
  }
 
  /* ---- background: swap the url() below for your own photo ---- */
  .hero-bg{
    position:absolute;
    inset:0;
    z-index:-2;
    /* background:
      radial-gradient(120% 90% at 50% 100%, rgba(242,115,29,0.18), transparent 60%),
      linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 55%, #0e1b23 100%); */
    background-image:
      /* radial-gradient(120% 90% at 50% 100%, rgba(242,115,29,0.18), transparent 60%),
      linear-gradient(155deg, rgba(31,59,77,0.25), rgba(14,27,35,0.6)), */
      url('../images/Chopta-Resort-Himalayan-View.jpg');           /* <-- put your dining-table photo here */
    background-size:cover;
    background-position:center;
    animation:kenburns 18s ease-in-out infinite alternate;
  }
 
  /* darkening pass so centered text stays legible over any photo */
  .hero-veil{
    position:absolute;
    inset:0;
    z-index:-1;
    background:
      linear-gradient(90deg, rgba(35, 29, 14, 0.75) 0%, rgba(35, 29, 14, 0.32) 22%, rgba(35, 27, 14, 0.32) 78%, rgba(35, 22, 14, 0.75) 100%),
      linear-gradient(180deg, rgba(35, 30, 14, 0.55) 0%, rgba(149, 98, 48, 0.45) 35%, rgba(35, 26, 14, 0.12) 60%, rgba(35, 27, 14, 0.7) 100%);
  }
 
  /* faint grain so the warm gradient doesn't look flat/AI-smooth */
  .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.4rem);
    line-height:1.05;
    color:var(--cream);
    margin-top:18px;
    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);
  }
 
  /* ---- signature: a quiet ridgeline, with one small window-light ---- */
  .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));
    animation:flicker 3.6s ease-in-out infinite;
  }
 
  .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);
    text-decoration:none;
    transition:color .2s ease, opacity .2s ease;
  }
  .hero-breadcrumb a:hover{ color:var(--cream); }
  .hero-breadcrumb a:focus-visible{ outline:1px solid var(--gold); outline-offset:3px; border-radius:2px; }
 
  .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); }
  }
 
  @keyframes flicker{
    0%, 100%{ opacity:1; }
    45%{ opacity:0.55; }
    55%{ opacity:0.9; }
  }
 
  @media (prefers-reduced-motion: reduce){
    .hero-bg{ animation:none; }
    .hero-eyebrow, .hero-title, .hero-ridge, .hero-breadcrumb{ animation:none; opacity:1; }
    .hero-ridge circle{ animation:none; }
  }
 
  @media (max-width:640px){
    .hero{ min-height:52vh; }
    .hero-content{ padding:72px 20px 56px; }
    .hero-eyebrow::before, .hero-eyebrow::after{ width:14px; margin:0 6px 3px; }
  }

  section.rooms{ width:90%;  margin:0 auto; padding:60px 0; }
  .section-head{
    display:flex; align-items:flex-end; justify-content:center; text-align:center;
    margin-bottom:36px; gap:24px; flex-wrap:wrap;
  }
  .section-head .label{
    font-family:var(--font-display); font-style:italic; font-weight:500;
    font-size:16px; color:var(--orange-deep); margin:0 0 8px;
  }
  .section-head h2{
    font-family:var(--font-display); font-weight:600; font-size:36px;
    color:var(--ink); margin:0; letter-spacing:-0.01em;
  }
  .row{ display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; }
  .room-card{
    background:var(--cream-deep); border:1px solid var(--line); border-radius:6px;
    overflow:hidden; display:flex; flex-direction:column;
    transition:transform 0.18s ease, box-shadow 0.18s ease;
  }
  .room-card:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(43,36,32,0.10); }
  .visual{ 
    position:relative;
     height:275px;
     overflow:hidden;

    }
    .card-1{ background-image:url('../images/deluxe-room-page-3.jpg'); background-size:cover; background-position:center; }
    .card-2{ background-image:url('../images/deluxe-room-page-3.jpg'); background-size:cover; background-position:center; }
    .card-3{ background-image:url('../images/deluxe-room-page-3.jpg'); background-size:cover; background-position:center; }

  .visual img{ display:block; width:100%; height:100%; object-fit:cover; }
  .price-stamp{
    position:absolute; left:14px; bottom:-22px; width:72px; height:72px; border-radius:50%;
    background:var(--cream); border:1px solid var(--line); display:flex; flex-direction:column;
    align-items:center; justify-content:center; transform:rotate(-8deg); text-align:center;
    box-shadow:0 4px 12px rgba(43,36,32,0.16); z-index:2;
  }
  .price-stamp .from{ font-size:8px; letter-spacing:0.03em; color:var(--ink-soft); margin-bottom:1px; }
  .price-stamp .amount{ font-family:var(--font-display); font-weight:600; font-size:13px; color:var(--orange-deep); line-height:1; }
  .price-stamp .unit{ font-size:7.5px; color:var(--ink-soft); margin-top:1px; }
  .tag{
    position:absolute; top:12px; left:12px; background:rgba(31,59,77,0.55); backdrop-filter:blur(3px);
    color:var(--cream); font-size:11px; font-weight:500; letter-spacing:0.02em; padding:5px 10px; border-radius:20px;
  }
  .body{ padding:36px 20px 22px; display:flex; flex-direction:column; flex:1; }
  .body h3{ font-family:var(--font-display); font-weight:600; font-size:22px; color:var(--ink); margin:0 0 8px; }
  .body .desc{ font-size:13.5px; line-height:1.55; color:var(--ink-soft); margin:0 0 16px; flex:1; }
  .specs{ display:flex; gap:14px; padding-top:12px; border-top:1px solid var(--line); margin-bottom:16px; }
  .specs span{ display:flex; align-items:center; gap:5px; font-size:12px; color:var(--ink-soft); }
  .specs svg{ width:13px; height:13px; color:var(--navy); }
  .actions{ display:flex; align-items:center; gap:10px; }
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    font-family:var(--font-body); font-weight:600; font-size:13px; color:var(--cream);
    background:var(--orange); border:none; padding:11px 18px; border-radius:4px; cursor:pointer;
    transition:background 0.15s ease; width:66%; text-decoration:none;
  }
  .btn:hover{ background:var(--orange-deep); }
/* ===== View room button — ridge rises on hover ===== */
.btn-outline{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13px;
  letter-spacing:0.01em;
  color:var(--ink);
  background:transparent;
  border:1px solid var(--line);
  padding:11px 30px 11px 16px;   /* right padding leaves room for the arrow */
  border-radius:4px;
  cursor:pointer;
  flex:1;
  transition:color .35s ease, border-color .35s ease, letter-spacing .35s ease;
  height:44px;
}


/* arrow that slides in from the left as the ridge lands */
.btn-outline::after{
  content:'\203A';               
  position:absolute;
  right:14px;
  top:50%;
  font-size:18px;
  line-height:0;
  color:var(--gold);
  transform:translate(-8px,-50%);
  opacity:0;
  transition:transform .35s cubic-bezier(.22,.85,.26,1) .08s, opacity .3s ease .08s;
}

.btn-outline:hover{
  color:var(--orange-deep);
  border-color:var(--navy);
  letter-spacing:0.04em;
}

.btn-outline:hover::after{ transform:translate(0,-50%); opacity:1; }

.btn-outline:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}
.btn-outline:active{ transform:translateY(1px); }

@media (prefers-reduced-motion: reduce){
  .btn-outline, .btn-outline::before, .btn-outline::after{ transition:none; }
  .btn-outline:hover::before{ transform:translateY(0); }
}
 


  /* ============ FAQ ============ */
  section.faq{
    background:var(--cream-deep);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:88px 0;
  }
  .faq-wrap{
    width:90%;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
  }
 
  .faq-intro .label{
    font-family:var(--font-display); font-style:italic; font-weight:500;
    font-size:16px; color:var(--orange-deep); margin:0 0 10px;
  }
  .faq-intro h2{
    font-family:var(--font-display); font-weight:600; font-size:38px;
    line-height:1.08; color:var(--ink); margin:0 0 18px; letter-spacing:-0.01em;
  }
  .faq-intro p{
    font-size:14.5px; line-height:1.65; color:var(--ink-soft);
    max-width:38ch; margin:0 0 32px;
  }
 
  .faq-ridge{ width:180px; height:30px; margin-bottom:32px; opacity:0.85; }
  .faq-ridge path{ fill:none; stroke:var(--orange); stroke-width:1.4; opacity:0.75; }
  .faq-ridge circle{ fill:var(--gold); }
 
  .faq-contact{
    border:1px solid var(--line);
    border-radius:6px;
    background:var(--cream);
    padding:22px 22px;
  }
  .faq-contact p.kicker{
    font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--navy); font-weight:600; margin:0 0 8px;
  }
  .faq-contact p.msg{
    font-size:13.5px; line-height:1.55; color:var(--ink-soft); margin:0 0 16px;
  }
  .faq-contact a.contact-link{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--font-display); font-style:italic; font-weight:500;
    font-size:15px; color:var(--orange-deep);
    border-bottom:1px solid var(--orange-deep); padding-bottom:2px;
  }
  .faq-contact a.contact-link svg{ width:14px; height:14px; }
 
  .faq-list{ display:flex; flex-direction:column; }
 
  .faq-item{
    border-bottom:1px solid var(--line);
  }
  .faq-item:first-child{ border-top:1px solid var(--line); }
 
  .faq-item summary{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:24px 4px;
    cursor:pointer;
    font-family:var(--font-display);
    font-weight:500;
    font-size:19px;
    color:var(--ink);
    transition:color 0.15s ease;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary:hover{ color:var(--orange-deep); }
  .faq-item summary:focus-visible{ outline:2px solid var(--orange); outline-offset:4px; border-radius:2px; }
 
  .faq-toggle{
    flex-shrink:0;
    width:28px; height:28px;
    border-radius:50%;
    border:1px solid var(--line);
    position:relative;
    transition:border-color 0.2s ease, background 0.2s ease, transform 0.25s ease;
  }
  .faq-toggle::before, .faq-toggle::after{
    content:'';
    position:absolute;
    top:50%; left:50%;
    background:var(--ink);
    transition:background 0.2s ease, transform 0.25s ease;
  }
  .faq-toggle::before{ width:10px; height:1.4px; transform:translate(-50%,-50%); }
  .faq-toggle::after{ width:1.4px; height:10px; transform:translate(-50%,-50%); }
 
  .faq-item[open] summary{ color:var(--orange-deep); }
  .faq-item[open] .faq-toggle{ background:var(--orange); border-color:var(--orange); }
  .faq-item[open] .faq-toggle::before,
  .faq-item[open] .faq-toggle::after{ background:var(--cream); }
  .faq-item[open] .faq-toggle::after{ transform:translate(-50%,-50%) rotate(90deg) scaleY(0); }
 
  .faq-answer{
    padding:0 4px 26px;
    max-width:56ch;
  }
  .faq-answer p{
    margin:0;
    font-size:14.5px;
    line-height:1.7;
    color:var(--ink-soft);
  }
 
  @media (max-width:860px){
    .faq-wrap{ grid-template-columns:1fr; gap:36px; }
    .faq-intro p{ max-width:none; }
    section.faq{ padding:64px 0; }
  }
  @media (max-width:520px){
    .faq-item summary{ font-size:17px; padding:20px 2px; }
    .faq-intro h2{ font-size:30px; }
  }