/* ==========================================================================
   Indavara Paradise - Lodge, Bar & Restaurant, Chikmagalur
   Palette taken from the property signage: terracotta red, gold, coffee brown.
   ========================================================================== */

:root {
  --espresso:   #22150E;
  --coffee:     #4A2E1E;
  --coffee-mid: #6B4630;
  --gold:       #C9922E;
  --gold-soft:  #E4C070;
  --red:        #B23421;
  --red-dark:   #8E2717;
  --leaf:       #2F5E3F;

  --cream:      #FBF6EE;
  --sand:       #F2E9DA;
  --line:       #E2D5C0;

  --ink:        #2A1D14;
  --ink-soft:   #6A5748;
  --white:      #FFFFFF;

  --wrap: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(34, 21, 14, .08);
  --shadow-md: 0 10px 34px rgba(34, 21, 14, .14);
  --shadow-lg: 0 24px 64px rgba(34, 21, 14, .22);

  --head: "Playfair Display", "Georgia", "Times New Roman", serif;
  --body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

/* Every icon is drawn on a 24x24 grid; unless a rule below says otherwise it
   renders at 1.15em so it sits correctly beside the text it labels. */
svg { width: 1.15em; height: 1.15em; flex: none; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--espresso);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--espresso); color: #EBDFD1; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .9rem;
}
.section--dark .eyebrow { color: var(--gold-soft); }

.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }
.section--dark .lede { color: #C9B7A5; }

.head-center { text-align: center; }
.head-center .lede { margin-inline: auto; }

/* ---------- buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .85em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-dark); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--espresso); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { border-color: currentColor; color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.section--dark .btn--ghost,
.hero .btn--ghost,
.cta .btn--ghost,
.page-head .btn--ghost { color: #EBDFD1; }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta .btn--ghost:hover,
.page-head .btn--ghost:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

/* ---------- top bar & header ------------------------------------------- */
.topbar {
  background: var(--espresso);
  color: #C4B2A0;
  font-size: .82rem;
  padding: 7px 0;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; justify-content: space-between; }
.topbar a { color: #E2D3C2; text-decoration: none; }
.topbar a:hover { color: var(--gold-soft); }
.topbar__items { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.topbar__items span { display: inline-flex; align-items: center; gap: .45em; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 246, 238, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { line-height: 1.1; }
.brand__name {
  font-family: var(--head); font-weight: 800; font-size: 1.28rem;
  color: var(--red); letter-spacing: -.015em; display: block;
}
.brand__sub {
  font-size: .62rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: .55em .9em; border-radius: 8px; text-decoration: none;
  font-size: .93rem; font-weight: 500; color: var(--coffee);
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--sand); color: var(--espresso); }
.nav a.is-active { color: var(--red); font-weight: 700; }
.nav .btn { margin-left: 10px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--white); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 19px; height: 2px; background: var(--coffee); border-radius: 2px;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 22px 20px; box-shadow: var(--shadow-md);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: .8em .6em; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin: 12px 0 0; justify-content: center; border-bottom: 0; }
}

/* ---------- hero -------------------------------------------------------
   The photographs are never cropped: the stage keeps each image's own
   aspect ratio and the artwork sits inside it whole.                      */
.hero { background: var(--espresso); color: #E9DDCF; overflow: hidden; position: relative; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 85% 10%, rgba(201,146,46,.18), transparent 60%);
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding-top: clamp(48px, 7vw, 86px); padding-bottom: clamp(48px, 7vw, 86px);
}
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero__text p { color: #C9B7A5; font-size: 1.08rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.4rem; }
.hero__tags span {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: .4em .9em; border: 1px solid rgba(228,192,112,.4); border-radius: 999px; color: var(--gold-soft);
}

.slideshow {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #120B07;
}
.slideshow img {
  width: 100%; height: auto;           /* full frame, no cropping */
  grid-area: 1 / 1;
  opacity: 0; transition: opacity 1s ease;
}
.slideshow { display: grid; }
.slideshow img.is-on { opacity: 1; }
.slideshow__dots {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  display: flex; justify-content: center; gap: 8px;
}
.slideshow__dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 0; background: rgba(255,255,255,.45); transition: background .2s, transform .2s;
}
.slideshow__dots button.is-on { background: var(--gold); transform: scale(1.35); }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
}

/* ---------- highlight strip -------------------------------------------- */
.strip { background: var(--red); color: #fff; }
.strip .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 30px;
  padding-top: 26px; padding-bottom: 26px; text-align: center;
}
.strip b { display: block; font-family: var(--head); font-size: 1.5rem; }
.strip small { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.strip small { display: block; }
@media (max-width: 760px) {
  .strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }
  .strip small { min-height: 2.6em; }   /* keeps the two rows level when a label wraps */
}

/* ---------- generic two-column split ------------------------------------ */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 62px); align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split--text-right > .split__media { order: -1; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

.media-stack { display: grid; gap: 14px; }
.media-stack--pair { grid-template-columns: 1fr 1fr; }
.media-stack img { border-radius: 12px; box-shadow: var(--shadow-sm); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- feature / amenity grid --------------------------------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; align-items: stretch; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature svg { width: 28px; height: 28px; color: var(--red); margin-bottom: 12px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .3em; }
.feature p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

.amenity-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 12px 26px;
}
.amenity-list li {
  display: flex; align-items: flex-start; gap: .65em;
  padding: .55em 0; border-bottom: 1px dashed var(--line); font-size: .96rem;
}
.amenity-list svg { width: 19px; height: 19px; flex: none; color: var(--leaf); margin-top: .22em; }
.section--dark .amenity-list li { border-bottom-color: rgba(255,255,255,.14); }
.section--dark .amenity-list svg { color: var(--gold-soft); }

/* ---------- room cards ---------------------------------------------------- */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; align-items: stretch; }

.room-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.room-card__media { position: relative; background: var(--sand); }
.room-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; cursor: zoom-in; }
.room-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--espresso); color: var(--gold-soft);
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700;
  padding: .42em .85em; border-radius: 999px;
}
.room-card__count {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(34,21,14,.78); color: #fff; font-size: .75rem; font-weight: 600;
  padding: .35em .8em; border-radius: 999px; display: inline-flex; align-items: center; gap: .4em;
}
.room-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: .2em; }
.room-card__type {
  font-size: .8rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: .8em;
  min-height: 2.6em;
}
.room-card__body p { font-size: .94rem; color: var(--ink-soft); }
.room-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 16px; padding-top: 6px; }
.room-card__tags span {
  font-size: .78rem; background: var(--sand); border: 1px solid var(--line);
  padding: .3em .75em; border-radius: 999px; color: var(--coffee);
}
.room-card__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.room-card__thumbs button {
  padding: 0; border: 0; background: var(--sand); border-radius: 7px; overflow: hidden;
  cursor: zoom-in; position: relative; aspect-ratio: 4 / 3;
}
.room-card__thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.room-card__thumbs button:hover img { transform: scale(1.07); }
.room-card__thumbs .more {
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--coffee);
}

/* ---------- attraction cards ---------------------------------------------- */
.places-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; align-items: stretch; }
.place {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;          /* equal-height cards in a row */
}
.place:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.place img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; cursor: zoom-in;
}
.place__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.place__body p:last-child { margin-top: auto; padding-top: .9em; }
.place__body h3 { margin-bottom: .25em; }
.place__meta {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: .7em;
  min-height: 2.6em;            /* two lines reserved, so titles align across the row */
}
.place__body p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

.more-places { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px 26px; }
.more-places li { padding: .6em 0; border-bottom: 1px dashed var(--line); font-size: .95rem; display: flex; justify-content: space-between; gap: 14px; }
.more-places b { font-weight: 600; }
.more-places span { color: var(--ink-soft); font-size: .87rem; white-space: nowrap; }

/* ---------- gallery --------------------------------------------------------
   Masonry columns so each photograph keeps its own proportions.            */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 34px; }
.gallery-filters button {
  font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  padding: .55em 1.25em; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white); color: var(--coffee);
  transition: all .18s ease;
}
.gallery-filters button:hover { border-color: var(--gold); }
.gallery-filters button.is-on { background: var(--espresso); border-color: var(--espresso); color: var(--gold-soft); }

.masonry {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px; align-items: stretch;
}
.masonry figure { margin: 0; position: relative; }
.masonry img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 10px; cursor: zoom-in;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  background: var(--sand);
}
.masonry img:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.masonry figcaption {
  position: absolute; left: 10px; bottom: 10px; right: 10px;
  color: #fff; font-size: .8rem; text-shadow: 0 1px 6px rgba(0,0,0,.8);
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.masonry figure:hover figcaption { opacity: 1; }

/* ---------- lightbox -------------------------------------------------------
   Images are scaled to fit the viewport with object-fit:contain - the whole
   frame is always visible, nothing is cut off.                             */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16, 10, 6, .95);
  display: flex; align-items: center; justify-content: center;
  padding: 58px 16px 74px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__bar {
  position: absolute; left: 0; right: 0; bottom: 18px;
  text-align: center; color: #E7DACA; font-size: .88rem; padding: 0 70px;
}
.lightbox__bar b { color: var(--gold-soft); font-weight: 600; }
@media (max-width: 620px) {
  .lightbox { padding: 56px 8px 70px; }
  .lightbox__prev { left: 6px; } .lightbox__next { right: 6px; }
  .lightbox__btn { width: 42px; height: 42px; }
}

/* ---------- page banner ------------------------------------------------- */
.page-head { background: var(--espresso); color: #D8C8B6; padding: clamp(42px, 6vw, 72px) 0; text-align: center; position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 50% 0%, rgba(201,146,46,.2), transparent 65%); }
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head p { color: #BFAC99; max-width: 58ch; margin: 0 auto; }
.crumbs { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.crumbs a { text-decoration: none; opacity: .75; }
.crumbs a:hover { opacity: 1; }

/* ---------- contact ------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-list li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-list svg { width: 21px; height: 21px; color: var(--red); flex: none; margin-top: .25em; }
.contact-list b { display: block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--red); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink);
  padding: .72em .9em; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--cream); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,146,46,.18); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--ink-soft); margin: 14px 0 0; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* ---------- call to action band ------------------------------------------ */
.cta { background: linear-gradient(120deg, var(--coffee) 0%, var(--espresso) 65%); color: #EADFD2; text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #C6B4A2; max-width: 56ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 1.7rem; }

/* ---------- footer --------------------------------------------------------- */
.site-footer { background: var(--espresso); color: #A8917C; font-size: .93rem; padding: clamp(46px, 6vw, 72px) 0 0; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1em; font-family: var(--body); letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: #C6B09A; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: .3em 0; }
.footer-brand .brand__name { color: var(--gold-soft); }
.footer-brand .brand__sub { color: #8A7563; }
.footer-brand p { margin-top: 1em; max-width: 34ch; font-size: .9rem; }
.footer-bottom {
  margin-top: 46px; border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; font-size: .84rem;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
}

/* ---------- misc ----------------------------------------------------------- */
.tbd { color: var(--red); font-style: italic; }   /* placeholder text to replace */

.note-box {
  background: #FFF6E2; border: 1px solid var(--gold-soft); border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 18px 22px; font-size: .93rem;
}
.note-box p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--red); color: #fff;
  padding: .7em 1.2em; z-index: 300; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Signature flourishes - the details that make the site feel like this
   place and not a stock template.
   ========================================================================== */

/* Hand-drawn style rule with a coffee bean at the centre. */
.rule { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 0 0 1.6rem; }
.rule::before, .rule::after { content: ""; height: 1px; width: 54px; background: linear-gradient(90deg, transparent, var(--gold)); }
.rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule svg { width: 18px; height: 18px; color: var(--gold); }

/* Large ghosted numeral behind section headings. */
.numbered { position: relative; }
.numbered::before {
  content: attr(data-no);
  display: block;
  font-family: var(--head); font-size: clamp(2.1rem, 4vw, 2.9rem); font-weight: 700;
  line-height: 1; color: var(--gold); opacity: .55;
  margin-bottom: .45rem; letter-spacing: -.02em;
}
.section--dark .numbered::before { color: var(--gold-soft); opacity: .6; }

/* Torn-paper edge between the dark bands and the cream ones. */
.edge { height: 26px; background: var(--espresso); position: relative; }
.edge::after {
  content: ""; position: absolute; inset: 0;
  background: var(--cream);
  -webkit-mask: radial-gradient(22px 26px at 50% 0, transparent 99%, #000) 0 0 / 44px 26px repeat-x;
          mask: radial-gradient(22px 26px at 50% 0, transparent 99%, #000) 0 0 / 44px 26px repeat-x;
}
.edge--to-sand::after { background: var(--sand); }

/* Subtle paper grain on the cream sections. */
.section--sand, .cta { position: relative; }
.section--sand::before, .cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, rgba(74,46,30,.055) 1px, transparent 0);
  background-size: 22px 22px;
}
.section--sand > *, .cta > * { position: relative; z-index: 1; }

/* Editorial pull quote. */
.quote {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 26px; margin: 2rem 0;
  font-family: var(--head); font-size: clamp(1.2rem, 2.3vw, 1.6rem); line-height: 1.45;
  color: var(--coffee); font-style: italic;
}
.section--dark .quote { color: var(--gold-soft); border-left-color: var(--red); }

/* Overlapping picture pair, used in the "about" band. */
.stack-offset { position: relative; padding-bottom: 58px; padding-right: 48px; }
.stack-offset img:first-child { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.stack-offset img:last-child {
  position: absolute; right: 0; bottom: 0; width: 52%;
  border-radius: 12px; border: 6px solid var(--cream); box-shadow: var(--shadow-lg);
}
.section--sand .stack-offset img:last-child { border-color: var(--sand); }
@media (max-width: 560px) { .stack-offset { padding-right: 24px; padding-bottom: 40px; } }

/* Ribbon label used on the celebrations page. */
.ribbon {
  display: inline-block; background: var(--gold); color: var(--espresso);
  font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: .45em 1.1em; border-radius: 4px; transform: rotate(-1.2deg);
}

/* Step / timeline list for "how to book". */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.steps b {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--red); color: #fff; font-family: var(--head); font-size: 1.15rem;
}
.steps h4 { margin: .25em 0 .2em; font-size: 1.05rem; font-family: var(--head); color: var(--espresso); }
.steps p { margin: 0; font-size: .94rem; color: var(--ink-soft); }
.section--dark .steps h4 { color: #fff; }
.section--dark .steps p { color: #C0AE9C; }

/* Scroll reveal. The hidden state is applied only when main.js has added
   .js-reveal to <html>, so a JavaScript failure can never leave the page blank. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js-reveal .reveal { opacity: 0; transform: translateY(22px); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; }
}

/* Floating call / WhatsApp button for phones. */
.quick-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  display: none; gap: 10px;
}
.quick-call a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-md); text-decoration: none;
}
.quick-call a svg { width: 25px; height: 25px; }
.quick-call .call { background: var(--red); }
.quick-call .wa { background: #25925a; }
@media (max-width: 940px) { .quick-call { display: flex; } }

/* Room page: alternating wide layout. */
.room-row {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px); align-items: center;
  padding: clamp(30px, 5vw, 52px) 0; border-bottom: 1px solid var(--line);
}
.room-row:last-child { border-bottom: 0; }
@media (max-width: 860px) { .room-row { grid-template-columns: 1fr; } }
.room-row__no {
  font-family: var(--head); font-size: 3.2rem; line-height: 1; color: var(--gold);
  opacity: .85; margin-bottom: .1em;
}

/* Fine print / placeholder marker in a tidy chip. */
.chip-tbd {
  display: inline-block; background: #FFF0E6; border: 1px dashed var(--red);
  color: var(--red-dark); font-size: .82rem; font-weight: 600;
  padding: .12em .6em; border-radius: 6px; white-space: nowrap;
}

/* Icons inside the red highlight strip. */
.strip svg { width: 26px; height: 26px; margin: 0 auto 8px; opacity: .9; }

/* Small icon sitting inline with a line of text. */
.inline-icon { width: 16px; height: 16px; display: inline-block; vertical-align: -3px; color: var(--red); }

/* Icons used inside amenity / contact rows come through the same helpers. */
.amenity-list li > svg:first-child { flex: none; }
