/* =============================================
   IRROI Hotels & Resorts — Global Design System
   By the people. Of the forest. For the land.
   ============================================= */

/* ===== FONTS =====
   Cormorant — serif headings   (Google Fonts, non-blocking)
   Jost      — sans body & UI   (Google Fonts, non-blocking)
   Inconsolata — labels/metadata (Google Fonts, non-blocking)
*/

/* ===== TOKENS ===== */
:root {
  --sage:       #596b5b;
  --lal-mati:   #9e4a3a;
  --cream:      #e8d8c1;
  --taupe:      #6d5c5b;
  --near-black: #1e1e1e;
  --dark-cocoa: #2A1F1A;
  --bg:         #f6f4f1;
  --tan:        #a67c52;
  --wild-rice:  #d4a8a0;

  --font-serif: 'Cormorant', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --font-mono:  'Inconsolata', monospace;

  --nav-h: 72px;
  --max-w: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
  --section-gap: clamp(80px, 10vw, 140px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--near-black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.3px;
}
h1 { font-family: var(--font-serif); font-size: clamp(42px, 7vw, 90px); }
h2 { font-family: var(--font-serif); font-style: italic; font-size: clamp(30px, 4vw, 52px); }
h3 { font-family: 'Aeonik', "Helvetica Neue", sans-serif; font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-family: 'Aeonik', "Helvetica Neue", sans-serif; font-size: clamp(18px, 2vw, 26px); }

.label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--taupe);
}
.label--light { color: var(--cream); opacity: 0.75; }
.label--sage  { color: var(--sage); }

.italic-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.4;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-gap); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(89,107,91,0.12);
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.4s;
}
.nav.scrolled .nav__logo { color: var(--near-black); }

.nav__logo-img {
  height: clamp(44px, 7vw, 65px);
  width: auto;
  display: block;
  max-width: 100%;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.nav.scrolled .nav__logo-img {
  filter: brightness(0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 1;
  transition: opacity 0.2s, color 0.4s;
}
.nav.scrolled .nav__links a { color: var(--near-black); }
.nav__links a:hover { opacity: 1; }

.nav__cta {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--near-black);
  color: var(--cream);
  border: none;
  padding: 12px 24px;
  border-radius: 32px;
  transition: opacity 0.2s;
}
.nav__cta:hover { opacity: 0.85; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: background 0.4s;
}
.nav.scrolled .nav__hamburger span { background: var(--near-black); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--near-black);
}
.nav__mobile .nav__cta { font-size: 9px; }
.nav__mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  background: none;
  border: none;
  font-size: 28px;
  color: var(--near-black);
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vh, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  filter: brightness(0.6) saturate(1.1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,30,30,0.15) 0%,
    rgba(30,30,30,0.1) 40%,
    rgba(30,30,30,0.72) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-left: calc(var(--gutter) + 20px);
}
.hero__kicker {
  margin-bottom: 20px;
}
.hero__title {
  color: var(--cream);
  font-size: clamp(44px, 7vw, 96px);
  max-width: 14ch;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero__sub {
  color: var(--cream);
  opacity: 1;
  font-size: 15px;
  max-width: 60ch;
  margin-bottom: 40px;
  line-height: 1.75;
  text-align: justify;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 15px 28px;
  border: none;
  border-radius: 32px;
  transition: opacity 0.2s, background 0.2s;
}
.btn--primary {
  background: var(--cream);
  color: var(--near-black);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232,216,193,0.5);
}
.btn--outline-dark {
  background: transparent;
  color: var(--near-black);
  border: 1px solid rgba(30,30,30,0.25);
}
.btn--sage {
  background: var(--near-black);
  color: var(--cream);
}
.btn:hover { opacity: 0.82; }

/* ===== PROPERTY CARDS ===== */
.properties {
  background: var(--bg);
}
.properties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 56px;
}
.property-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: block;
}
.property-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.7s ease;
}
.property-card:hover .property-card__img { transform: scale(1.04); }
.property-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.88) 0%, rgba(30,30,30,0.25) 55%, transparent 100%);
}
.property-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  color: var(--cream);
}
.property-card__loc {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}
.property-card__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}
.property-card__desc {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.65;
  margin-bottom: 22px;
}
.property-card__link {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(232,216,193,0.4);
  padding-bottom: 3px;
}

/* ===== COMMITMENTS ===== */
.properties.section {
  padding-top: clamp(60px, 6vw, 90px);
  padding-bottom: clamp(60px, 6vw, 90px);
}
.commitments.section {
  padding-top: clamp(40px, 4vw, 60px);
}
.commitments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: center;
}
.commitment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.commitment img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.commitment:hover img {
  opacity: 1;
}
.commitment p {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ===== PILLARS ===== */
.pillars {
  background: var(--sage);
  color: var(--cream);
}
.pillars__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.pillars__header h2 { color: var(--cream); max-width: 16ch; }
.pillars__intro {
  max-width: 38ch;
  opacity: 0.75;
  font-size: 13px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,216,193,0.15);
}
.pillar {
  background: var(--sage);
  padding: 40px 32px;
  transition: background 0.3s;
}
.pillar:hover { background: rgba(89,107,91,0.7); }
.pillar__icon {
  display: block;
  margin-bottom: 24px;
  color: var(--cream);
}
.pillar__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.pillar__pct {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.pillar__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 14px;
  color: var(--cream);
}
.pillar__desc {
  font-size: 12px;
  line-height: 1.75;
  opacity: 0.72;
}

/* ===== STATS ===== */
.stats {
  background: var(--cream);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: var(--lal-mati);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.6;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--near-black);
  text-align: center;
  padding-block: clamp(80px, 12vw, 160px);
}
.philosophy__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 48px);
  color: var(--cream);
  max-width: 22ch;
  margin-inline: auto;
  line-height: 1.3;
}
.philosophy__attr {
  margin-top: 28px;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 16px;
  row-gap: 72px;
  margin-top: 56px;
}
.blog-preview__grid .blog-card { grid-column: span 2; }
.blog-preview__grid .blog-card:nth-child(4) { grid-column: span 4; }
.blog-preview__grid .blog-card:nth-child(5) { grid-column: span 2; }

/* Row 2 — card 4 is 4-cols wide; fix its image height to match row 1's 2-col image height.
   Formula: ((content-width − 5×gap) / 6 × 2 + 1×gap) × 2/3  = exact row-1 image height.
   Card 5 is 2-cols (same as row 1) so inherits aspect-ratio: 3/2 unchanged. */
.blog-preview__grid .blog-card:nth-child(4) .blog-card__img {
  aspect-ratio: unset;
  height: calc(((min(100vw, 1280px) - min(160px, 10vw) - 80px) / 3 + 16px) * 2 / 3);
}
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card__img img {
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}
.blog-card__body {
  padding: 20px 0 0;
}
.blog-card__pillar {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--near-black);
}
.blog-card__excerpt {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 14px;
}
.blog-card__meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-cocoa);
  color: #fff;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(232,216,193,0.12);
  margin-bottom: 36px;
}
.footer__logo {
  display: block;
  overflow: hidden;
  height: calc(clamp(65px, 10vw, 100px) * 0.32);
  margin-bottom: 12px;
  margin-left: -8px;
}
.footer__logo-img {
  height: clamp(65px, 10vw, 100px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-top: calc(clamp(65px, 10vw, 100px) * -0.37);
}
.footer__address {
  margin-bottom: 16px;
}
.footer__address-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}
.footer__addresses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 11px;
  opacity: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.footer__contact-item {
  font-size: 12px;
  opacity: 1;
  margin-bottom: 6px;
}
.footer__col-title {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 13px;
  opacity: 1;
  transition: opacity 0.2s;
}
.footer__links a:hover { opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 12px;
  opacity: 1;
  letter-spacing: 1px;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 10px;
  opacity: 1;
  letter-spacing: 2px;
  transition: opacity 0.2s;
}
.footer__legal a:hover { opacity: 0.7; }

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 56px;
}
.section-header--center { text-align: center; }
.section-header .label { margin-bottom: 14px; }
.section-header h2 { margin-top: 0; }

/* ===== PROPERTY PAGE STYLES ===== */
.property-hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.property-hero__bg { position: absolute; inset: 0; z-index: 0; }
.property-hero__bg img { filter: brightness(0.5) saturate(1.1); }
.property-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.4) 0%, transparent 60%);
  z-index: 1;
}
.property-hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--nav-h);
}
.property-hero__location {
  margin-bottom: 20px;
}
.property-hero__title {
  color: var(--cream);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.9;
  margin-bottom: 24px;
}
.property-hero__sub {
  color: var(--cream);
  opacity: 0.75;
  max-width: 42ch;
  font-size: 14px;
  margin-bottom: 36px;
}

/* Rooms on property page */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.room-card {
  background: white;
  overflow: hidden;
}
.room-card__img { aspect-ratio: 4/3; overflow: hidden; }
.room-card__body { padding: 28px; }
.room-card__type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.room-card__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}
.room-card__desc {
  font-size: 12px;
  color: var(--taupe);
  line-height: 1.75;
  margin-bottom: 20px;
}
.room-card__pricing {
  display: flex;
  gap: 20px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.room-card__rack {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--near-black);
}
.room-card__agent {
  font-size: 11px;
  color: var(--taupe);
}
.room-card__discount {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lal-mati);
  background: rgba(158,74,58,0.08);
  padding: 4px 10px;
}

/* Experiences */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.exp-card {
  padding: 36px;
  border: 1px solid rgba(89,107,91,0.2);
}
.exp-card__icon { font-size: 28px; margin-bottom: 20px; }
.exp-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 12px;
}
.exp-card__desc { font-size: 13px; color: var(--taupe); line-height: 1.75; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.team-card { background: white; overflow: hidden; }
.team-card__img { aspect-ratio: 3/4; overflow: hidden; }
.team-card__body { padding: 20px; }
.team-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 4px;
}
.team-card__role { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.team-card__village { font-size: 11px; color: var(--taupe); }

/* About page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__img { aspect-ratio: 4/5; overflow: hidden; }
.about-intro__label { margin-bottom: 20px; }
.about-intro__body { font-size: 14px; line-height: 1.85; color: var(--taupe); margin-bottom: 24px; }

/* Timeline */
.timeline { margin-top: 64px; }
.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-left: 1px solid rgba(89,107,91,0.2);
  padding-left: 40px;
  margin-left: 40px;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lal-mati);
}
.timeline__year {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--taupe);
  opacity: 0.5;
  margin-left: -80px;
  width: 80px;
}
.timeline__text { font-size: 14px; color: var(--near-black); line-height: 1.75; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--near-black);
  background: white;
  border: 1px solid rgba(109,92,91,0.2);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage);
}
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info__item { margin-bottom: 32px; }
.contact-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-info__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 8px;
}
.contact-info__body { font-size: 13px; color: var(--taupe); line-height: 1.75; }

/* Blog page */
.blog-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  color: var(--near-black);
  border-bottom: 1px solid rgba(109,92,91,0.1);
}
.blog-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  max-width: 14ch;
  margin-top: 12px;
}
.blog-filters { display: none; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 48px;
}
.blog-grid .blog-card__img { aspect-ratio: 3/4; }

/* Page hero (generic) */
.page-hero {
  background: var(--sage);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  color: var(--cream);
}
.page-hero h1 { color: var(--cream); }
.page-hero .label--light { margin-bottom: 16px; }
.page-hero__sub {
  margin-top: 20px;
  max-width: 48ch;
  opacity: 0.75;
  font-size: 14px;
}

/* Sustainability strip */
.sustainability-strip {
  background: var(--sage);
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.sust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.sust-item__icon { font-size: 18px; }
.sust-item__text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ===== DARK COCOA ACCENT ANIMATIONS ===== */

/* Nav links — sliding underline */
.nav__links a { position: relative; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark-cocoa);
  transition: width 0.35s ease;
}
.nav.scrolled .nav__links a::after { background: var(--dark-cocoa); }
.nav__links a:hover::after { width: 100%; }

/* Property cards — dark cocoa wash on hover */
.property-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-cocoa);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.property-card:hover::after { opacity: 0.15; }

/* Blog cards — dark cocoa tint on image hover */
.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-cocoa);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.blog-card:hover .blog-card__img::after { opacity: 0.12; }
.blog-card__img { position: relative; overflow: hidden; }

/* Exp cards — dark cocoa border slides in from bottom */
.exp-card {
  position: relative;
  overflow: hidden;
}
.exp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dark-cocoa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.exp-card:hover::after { transform: scaleX(1); }

/* Pillar hover — dark cocoa instead of sage */
.pillar:hover { background: rgba(42,31,26,0.75); }

/* Buttons — outline hover fills dark cocoa */
.btn--outline-dark:hover {
  background: var(--dark-cocoa);
  color: var(--cream);
  border-color: var(--dark-cocoa);
}

/* Breadcrumb + article inline link hover */
.breadcrumb a:hover { color: var(--dark-cocoa); }
.article-body a:hover { border-color: var(--dark-cocoa); }

/* Room cards — subtle left border on hover */
.room-card {
  border-left: 2px solid transparent;
  transition: border-color 0.35s ease;
}
.room-card:hover { border-left-color: var(--dark-cocoa); }

/* Footer links — darken to cocoa on hover */
.footer__links a:hover { opacity: 1; color: var(--wild-rice); }

/* ===== NATURE SVG DECORATIONS ===== */
.deco {
  display: block;
  pointer-events: none;
  user-select: none;
  color: var(--sage);
  opacity: 0.22;
  flex-shrink: 0;
}
.deco--water { width: 72px; height: 72px; }
.deco--leaf  {
  width: 18px;
  height: 30px;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: leaf-sway 5s ease-in-out infinite;
}
.deco--leaf-lg {
  width: 26px;
  height: 44px;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: leaf-sway 6s ease-in-out infinite;
  animation-delay: 0.8s;
}
.deco--earth { width: 160px; height: 24px; }

/* Absolute placement within a relative parent */
.deco-pos {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.deco-pos--br { bottom: 28px; right: 36px; }
.deco-pos--bl { bottom: 28px; left: 36px; }
.deco-pos--tr { top: 32px; right: 40px; }
.deco-pos--tl { top: 32px; left: 40px; }

/* Centred inline divider between sections */
.deco-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
  color: var(--sage);
  opacity: 0.2;
  overflow: hidden;
}

@keyframes leaf-sway {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview__grid { grid-template-columns: repeat(4, 1fr); column-gap: 12px; row-gap: 20px; }
  .blog-preview__grid .blog-card { grid-column: span 2; }
  .blog-preview__grid .blog-card:nth-child(4) { grid-column: span 3; }
  .blog-preview__grid .blog-card:nth-child(5) { grid-column: span 1; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .commitments__grid { gap: 32px; }
  .about-intro { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__content { padding-left: var(--gutter); }
  .hero__sub { text-align: left; font-size: 14px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Property hero */
  .property-hero { height: 75vh; }
  .hero__actions .btn, .property-hero .btn { width: auto; }

  /* Grids */
  .pillars__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .properties__grid { grid-template-columns: 1fr; }
  .commitments__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .footer__top > *:first-child,
  .footer__top > *:nth-child(2) { grid-column: 1 / -1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .blog-preview__grid .blog-card,
  .blog-preview__grid .blog-card:nth-child(4),
  .blog-preview__grid .blog-card:nth-child(5) { grid-column: span 1; }
  .blog-preview__grid .blog-card:nth-child(4) .blog-card__img,
  .blog-preview__grid .blog-card:nth-child(5) .blog-card__img { height: auto; aspect-ratio: 3/2; }
  .blog-grid { grid-template-columns: 1fr; gap: 48px; }
  .experiences-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars__header { flex-direction: column; gap: 16px; margin-bottom: 40px; }
  .sustainability-strip { gap: 20px; padding: 20px var(--gutter); }

  /* Timeline */
  .timeline__item {
    grid-template-columns: 1fr;
    margin-left: 16px;
    padding-left: 20px;
    gap: 4px;
  }
  .timeline__year { margin-left: 0; width: auto; margin-bottom: 4px; }

  /* Section padding */
  .section { padding-block: clamp(48px, 8vw, 80px); }
  .properties.section { padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); }
  .commitments.section { padding-top: clamp(24px, 3vw, 40px); }
  .pillars__header h2 { max-width: 100%; }

  /* Footer */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__legal { flex-wrap: wrap; gap: 16px; }
  .footer__copy { letter-spacing: 0; }
  .footer__top { gap: 36px; }

  /* Commitment badges */
  .commitment img { width: 90px; height: 90px; }
}

@media (max-width: 480px) {
  .commitments__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats__grid { gap: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .sustainability-strip { flex-direction: column; gap: 14px; align-items: flex-start; }
  .hero__actions { gap: 10px; }
  .pillar { padding: 28px 20px; }
  .exp-card { padding: 24px 20px; }
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .commitment img { width: 72px; height: 72px; }
  .property-card__body { padding: 24px 20px; }
}

/* ===== BLOG POST ARTICLE ===== */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--taupe); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lal-mati); }
.breadcrumb__sep { opacity: 0.35; }

.article-hero {
  position: relative;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.article-hero img { width:100%; height:100%; object-fit:cover; object-position:center; filter: brightness(0.72); }
.article-hero__caption {
  position: absolute;
  bottom: 20px;
  right: var(--gutter);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,216,193,0.65);
}

.article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.article-header {
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px);
  border-bottom: 1px solid rgba(89,107,91,0.15);
  margin-bottom: clamp(32px, 4vw, 52px);
}
.article-header__pillar {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lal-mati);
  margin-bottom: 18px;
}
.article-header h1 {
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--near-black);
}
.article-header__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.7;
  margin-bottom: 24px;
}
.article-header__excerpt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--taupe);
  line-height: 1.6;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  margin-top: 52px;
  margin-bottom: 18px;
  color: var(--near-black);
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--near-black);
}
.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--near-black);
  opacity: 0.82;
  margin-bottom: 22px;
}
.article-body ul, .article-body ol {
  margin: 4px 0 22px 22px;
  list-style: disc;
}
.article-body li {
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.82;
  margin-bottom: 6px;
}
.article-body a {
  color: var(--lal-mati);
  border-bottom: 1px solid rgba(158,74,58,0.3);
  transition: border-color 0.2s;
}
.article-body a:hover { border-color: var(--lal-mati); }
.article-body strong { font-weight: 400; color: var(--near-black); opacity: 1; }

.pull-quote {
  margin: 44px 0;
  padding: 28px 36px;
  border-left: 3px solid var(--lal-mati);
  background: var(--cream);
}
.pull-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.5;
  color: var(--near-black);
  margin-bottom: 0;
  opacity: 1;
}

.article-cta-block {
  background: var(--sage);
  padding: 40px 44px;
  margin: 52px 0;
  color: var(--cream);
}
.article-cta-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 10px;
}
.article-cta-block p {
  font-size: 14px;
  opacity: 0.82;
  margin-bottom: 24px;
  color: var(--cream);
  line-height: 1.75;
}
/* Links on sage-green backgrounds — use cream for legibility */
.article-cta-block a:not(.btn),
.page-hero a:not(.btn),
.pillars a:not(.btn),
.sustainability-strip a:not(.btn) {
  color: var(--cream);
  border-bottom: 1px solid rgba(232,216,193,0.5);
  transition: border-color 0.2s;
}
.article-cta-block a:not(.btn):hover,
.page-hero a:not(.btn):hover,
.pillars a:not(.btn):hover,
.sustainability-strip a:not(.btn):hover {
  border-color: var(--cream);
  opacity: 1;
}

.article-faq {
  margin-top: 52px;
  border-top: 1px solid rgba(89,107,91,0.15);
  padding-top: 44px;
  padding-bottom: clamp(48px, 8vw, 80px);
}
.article-faq > h2 { margin-top: 0; margin-bottom: 32px; }
.faq-item {
  border-bottom: 1px solid rgba(89,107,91,0.1);
  padding: 18px 0;
}
.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--near-black);
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 0;
  line-height: 1.8;
}

.related-posts {
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .article-hero { height: 50vh; }
  .pull-quote { padding: 20px 22px; margin: 32px 0; }
  .article-cta-block { padding: 28px 22px; margin: 36px 0; }
  .article-header__meta { gap: 14px; }
  .related-posts__grid { grid-template-columns: 1fr; }
}


/* ===== KAZIRANGA — selective overrides ===== */
body.theme-kaz .philosophy { background: #2A1F1A; }

/* ===== GUWAHATI PAGE ===== */
.gwh-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.gwh-room-card {
  background: white;
  padding: 36px;
}
.gwh-room-card__type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.gwh-room-card__name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 10px;
}
.gwh-room-card__beds {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--taupe);
  margin-bottom: 16px;
}
.gwh-room-card__desc {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.75;
}
.gwh-fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 32px;
  margin-top: 48px;
}
.gwh-fac-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gwh-fac-item__icon {
  flex-shrink: 0;
  color: var(--sage);
  margin-top: 1px;
}
.gwh-fac-item__name {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--near-black);
  line-height: 1.5;
}
.gwh-fac-item__note {
  font-size: 11px;
  color: var(--taupe);
  margin-top: 3px;
}
.gwh-distances {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.gwh-distance-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(89,107,91,0.15);
}
.gwh-distance-row:first-child { border-top: 1px solid rgba(89,107,91,0.15); }
.gwh-distance-row__place { font-size: 13px; color: var(--near-black); }
.gwh-distance-row__km {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--taupe);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .gwh-rooms-grid { grid-template-columns: 1fr; }
  .gwh-fac-grid { grid-template-columns: repeat(2, 1fr); }
  .deco-pos { display: none; } /* hide corner deco on mobile — keeps layout clean */
}
@media (max-width: 480px) {
  .gwh-fac-grid { grid-template-columns: 1fr; }
  .gwh-room-card { padding: 24px 20px; }
  .deco-divider { display: none; } /* hide wave/ripple dividers on small screens */
}

/* ===== FLOATING BOOK CTA ===== */
.float-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--dark-cocoa);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(42,31,26,0.28);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease;
  pointer-events: none;
}
.float-book--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-book:hover {
  background: var(--lal-mati);
  color: var(--cream);
}
@media (max-width: 768px) {
  .float-book {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
    border-radius: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Suppress inline SVG SMIL animations (ripple, wave, leaf decorators) */
  svg animate {
    display: none;
  }
}
