/* ======================================================
   Niharika Bhawan, Katra — Stylesheet
   Design language: "Foothills sanctuary" — deep pine greens
   from the Trikuta hills, warm sandstone, temple gold and a
   single vermilion accent. Serif display (Fraunces) paired
   with a clean grotesk (Work Sans).
   ====================================================== */

:root {
  /* Color tokens */
  --pine-950: #16281f;
  --pine-800: #1f3a2c;
  --pine-700: #274838;
  --pine-600: #325a45;
  --sandstone-50: #faf6ec;
  --sandstone-100: #f1e9d8;
  --sandstone-200: #e8dcc3;
  --sandstone-300: #dbc9a3;
  --gold-500: #c99a3d;
  --gold-600: #b98a2e;
  --gold-700: #8f6b1f;
  --vermilion-600: #9c3b2e;
  --vermilion-700: #7e2f24;
  --ink-900: #241f19;
  --ink-700: #4a4238;
  --paper-0: #fdfbf6;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sandstone-100);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pine-950);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; max-width: 62ch; }
p.wide { max-width: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.section--pine {
  background: var(--pine-950);
  color: var(--sandstone-100);
}
.section--pine h1, .section--pine h2, .section--pine h3 { color: var(--paper-0); }
.section--pine p { color: var(--sandstone-200); }

.section--paper { background: var(--paper-0); }

.eyebrow-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-600);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  display: block;
}

.section--pine .eyebrow-line { color: var(--gold-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--gold {
  background: var(--gold-600);
  color: var(--pine-950);
}
.btn--gold:hover { background: var(--gold-700); color: var(--paper-0); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--outline:hover { background: rgba(255,255,255,0.08); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--pine-950);
  color: var(--pine-950);
}
.btn--outline-dark:hover { background: var(--pine-950); color: var(--paper-0); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pine-950);
  border-bottom: 1px solid rgba(201,154,61,0.25);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  color: var(--paper-0);
  font-family: var(--font-display);
}
.brand .brand-name { font-size: 1.3rem; font-weight: 600; letter-spacing: 0.01em; }
.brand .brand-sub { font-size: 0.68rem; color: var(--gold-500); font-family: var(--font-body); letter-spacing: 0.06em; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--sandstone-200);
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--paper-0);
  border-color: var(--gold-600);
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.nav-call .phone-link {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--sandstone-200);
  color: var(--paper-0);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
  cursor: pointer;
}

@media (min-width: 860px) {
  .nav-call .phone-link { display: inline-flex; align-items: center; gap: 0.4rem; }
}

@media (max-width: 859px) {
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--pine-950);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,154,61,0.25);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 0.9rem var(--gutter); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper-0);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,40,31,0.25) 0%, rgba(22,40,31,0.55) 55%, rgba(22,40,31,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.5rem, 6vw, 4rem);
  width: 100%;
}
.hero-inner h1 { color: var(--paper-0); max-width: 16ch; }
.hero-inner p { color: var(--sandstone-100); max-width: 46ch; font-size: 1.08rem; }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper-0);
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,40,31,0.35) 0%, rgba(22,40,31,0.85) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 2.5rem;
  width: 100%;
}
.page-hero-inner h1 { color: var(--paper-0); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--sandstone-50);
  border-top: 1px solid var(--sandstone-300);
  border-bottom: 1px solid var(--sandstone-300);
}
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.8rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.trust-item {
  padding: 0.4rem 1.5rem;
  border-left: 1px solid var(--sandstone-300);
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item .t-label { font-family: var(--font-display); font-style: italic; color: var(--vermilion-600); font-size: 0.95rem; display: block; }
.trust-item .t-value { font-weight: 600; color: var(--pine-950); }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.two-col.reverse .col-media { order: 2; }
@media (max-width: 780px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-media { order: 0; }
}
.col-media img { border-radius: var(--radius-sm); }
.col-media.stack { position: relative; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--pine-800);
  border-left: 3px solid var(--gold-600);
  padding-left: 1.1rem;
  margin: 1.4rem 0;
}

/* ---------- Journey / steps (path motif) ---------- */
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.journey::before {
  content: "";
  position: absolute;
  top: 22px; left: 8%; right: 8%;
  height: 0;
  border-top: 2px dashed rgba(201,154,61,0.55);
  z-index: 0;
}
@media (max-width: 780px) {
  .journey { grid-template-columns: 1fr; gap: 2.2rem; }
  .journey::before { display: none; }
}
.journey-step { position: relative; z-index: 1; }
.journey-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-600);
  color: var(--pine-950);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem;
  margin-bottom: 1rem;
}
.journey-step h3 { margin-bottom: 0.3rem; }

/* ---------- Room cards ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.room-card {
  border-top: 3px solid var(--gold-600);
  background: var(--paper-0);
}
.room-card .room-photo { aspect-ratio: 4/3; overflow: hidden; }
.room-card .room-photo img { width: 100%; height: 100%; object-fit: cover; }
.room-card .room-body { padding: 1.3rem 1.4rem 1.6rem; }
.room-card .room-tag {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--vermilion-600);
  font-weight: 600;
  text-transform: uppercase;
}
.room-card h3 { margin: 0.3rem 0 0.5rem; }
.room-card ul { margin: 0.8rem 0 0; padding: 0; list-style: none; font-size: 0.9rem; color: var(--ink-700); }
.room-card ul li { padding: 0.25rem 0; border-top: 1px dotted var(--sandstone-300); }
.room-card ul li:first-child { border-top: none; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 2rem;
}
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-sm); }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 170px; }
}

/* ---------- Quote / testimonial strip ---------- */
.quote-strip {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper-0);
  margin: 0 0 1rem;
}
.quote-strip cite { color: var(--gold-500); font-style: normal; font-size: 0.9rem; }
.quote-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.4rem; }
.quote-nav button {
  background: none;
  border: 1px solid var(--gold-600);
  color: var(--gold-500);
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 1rem;
}
.quote-nav button:hover { background: var(--gold-600); color: var(--pine-950); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold-600);
  color: var(--pine-950);
}
.cta-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.4rem var(--gutter);
}
.cta-banner h2 { color: var(--pine-950); margin: 0; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-banner .cta-phone { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 2.8rem; margin-top: 2.5rem; }
.post {
  border-top: 1px solid var(--sandstone-300);
  padding-top: 2.2rem;
}
.post-meta { color: var(--vermilion-600); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.post h2 { margin-bottom: 0.6rem; }
.post .post-body p { max-width: 72ch; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--sandstone-300);
  color: var(--ink-700);
  border-radius: 999px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px dotted var(--sandstone-300);
}
.info-list li:first-child { border-top: none; }
.info-list .ico { color: var(--gold-600); font-family: var(--font-display); font-size: 1.2rem; width: 1.5rem; flex: none; }

.map-frame { border: 1px solid var(--sandstone-300); border-radius: var(--radius-sm); overflow: hidden; margin-top: 2rem; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

form.enquiry {
  background: var(--paper-0);
  border: 1px solid var(--sandstone-300);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
form.enquiry .field { margin-bottom: 1.1rem; }
form.enquiry label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--pine-800); }
form.enquiry input, form.enquiry select, form.enquiry textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--sandstone-300);
  background: var(--sandstone-50);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-900);
  border-radius: var(--radius-sm);
}
form.enquiry input:focus, form.enquiry select:focus, form.enquiry textarea:focus {
  outline: 2px solid var(--gold-600);
  outline-offset: 1px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-700); margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-950);
  color: var(--sandstone-200);
  padding: 3.5rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--gold-500); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.03em; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--paper-0); }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--paper-0); margin-bottom: 0.6rem; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2.8rem auto 0;
  padding: 1.4rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: var(--sandstone-300);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.narrow { max-width: 640px; }
.mt-0 { margin-top: 0; }
