/* Himalayasay — calm & minimal */

:root {
  --bg: #faf9f6;
  --bg-soft: #f2efe9;
  --ink: #2b2a27;
  --ink-soft: #6b6963;
  --accent: #7d8b74;      /* muted sage */
  --accent-dark: #5f6d57;
  --line: #e4e0d8;
  --radius: 6px;
  --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Mulish", system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }

a { color: inherit; }

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

.small { font-size: 0.9rem; }
.muted { color: var(--ink-soft); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  color: var(--accent-dark) !important;
  border: 1px solid var(--accent);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--ink-soft);
  padding: 0.2rem;
}
.lang-toggle button.active { color: var(--ink); font-weight: 600; }

/* ---------- hero ---------- */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) 1.5rem clamp(3rem, 8vh, 6rem);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.lede {
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

/* ---------- sections ---------- */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6rem) 1.5rem;
}

.section-intro {
  max-width: 40rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text p { margin-bottom: 1rem; max-width: 42rem; }

.credentials {
  margin-top: 1.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.credentials h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.credentials ul { list-style: none; }
.credentials li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}
.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- placeholder styling for missing images ---------- */

figure.placeholder img { display: none; }
figure .placeholder-label { display: none; }
figure.placeholder .placeholder-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
  background:
    linear-gradient(135deg, var(--bg-soft) 0%, #e9e4da 100%);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
figure.placeholder .placeholder-label small { opacity: 0.7; }

/* ---------- sessions ---------- */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.offer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  align-self: start;
}
.offer:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(93, 103, 84, 0.08);
}
.offer-grid .offer:nth-child(1) { border-top: 3px solid var(--accent); }
.offer-grid .offer:nth-child(2) { border-top: 3px solid #b9a37e; }

.offer-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
  padding: 1.9rem 1.9rem 1.6rem;
}
.offer-grid .offer:nth-child(1) .offer-head { background: #f5f7f2; }
.offer-grid .offer:nth-child(2) .offer-head { background: #f8f4ec; }

.offer-head h3 {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 24rem;
  margin: 0;
}

.offer-head p { font-size: 0.95rem; color: var(--ink-soft); max-width: 34rem; }

.offer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0.25rem 0;
  font: inherit;
  font-size: 0.9rem;
  color: var(--accent-dark);
  cursor: pointer;
}
.offer-toggle:hover .offer-toggle-label { text-decoration: underline; }
.offer-toggle .chev {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 0.8rem;
}
.offer.open .offer-toggle .chev { transform: rotate(180deg); }

.offer-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.offer.open .offer-body { grid-template-rows: 1fr; }
.offer-body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.9rem;
}

.service-list {
  list-style: none;
  margin: 1.3rem 0 1rem;
}
.service-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.93rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.service-list li:last-child { border-bottom: none; }
.service-list .price {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.price-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.offer .card-link { display: inline-block; margin-bottom: 1.7rem; }


.card-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  background: var(--bg-soft);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}
.card-tag-corp { color: #7a6a4f; background: #f3ede2; }

.card-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent-dark);
}
.card-link:hover { text-decoration: underline; }

/* ---------- testimonials ---------- */

.testimonials {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonials blockquote {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  font-size: 0.95rem;
}
.testimonials blockquote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.testimonials cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- community ---------- */

.community { padding-top: 0; }
.community-inner {
  background: var(--accent);
  color: #fdfdfb;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.community-inner p {
  max-width: 42rem;
  margin: 0 auto 1rem;
  opacity: 0.95;
}
.community-inner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  margin-top: 0.75rem;
}
.community-inner .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}
.gallery-grid figure {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-grid figure:hover img { transform: scale(1.03); }

/* ---------- booking ---------- */

.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.booking-form-wrap, .booking-direct {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.booking-form label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; color: var(--ink-soft); }
.booking-form .full { grid-column: 1 / -1; }
.booking-form button { grid-column: 1 / -1; justify-self: start; }

.booking-form input,
.booking-form select,
.booking-form textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking-form-wrap .muted { margin-top: 1rem; }

.booking-direct { display: flex; flex-direction: column; gap: 1rem; }
.booking-direct .btn { align-self: flex-start; }

.direct-alt { border-top: 1px solid var(--line); padding-top: 1.25rem; margin-top: 0.5rem; }
.contact-line { display: block; font-size: 0.95rem; color: var(--accent-dark); text-decoration: none; margin-top: 0.4rem; }
.contact-line:hover { text-decoration: underline; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  margin-top: 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
}
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-legal { text-align: right; }

/* ---------- responsive ---------- */

@media (max-width: 800px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
}

@media (max-width: 520px) {
  .booking-form { grid-template-columns: 1fr; }
}
