/* Kali Concierge - shared site styles
   Roch family aesthetic (paper / ink / Satoshi) with Kali pink as the accent. */

:root {
  --ink: #0A0A0A;
  --ink-soft: #1F1E1C;
  --body: #2C2A26;
  --paper: #F4F2EC;
  --panel: #FBFAF6;
  --white: #ffffff;
  --line: #C9C6BF;
  --line-soft: #E4E1D9;
  --mute: #807D77;
  --pink: #e84393;
  --pink-deep: #d63384;
  --pink-tint: rgba(232, 67, 147, 0.08);
  --wa: #25D366;
  --wa-deep: #1da851;
  --dark: linear-gradient(180deg, #1A1A1A 0%, #0E0E0E 100%);
  --max: 1180px;
  --measure: 760px;
  --pad: clamp(20px, 5vw, 56px);
  --sans: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  text-wrap: pretty;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); text-wrap: balance; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.measure { max-width: var(--measure); }

/* Eyebrow / kicker */
.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 236, 0.9);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-nav__logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav__logo span { color: var(--pink); margin-left: 4px; }
.site-nav__logo:hover { text-decoration: none; }
.site-nav__menu { display: flex; align-items: center; gap: 28px; }
.site-nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-link { color: var(--body); font-size: 0.92rem; font-weight: 500; text-decoration: none; }
.nav-link:hover { color: var(--pink); text-decoration: none; }
.nav-link.is-active { color: var(--pink); }
.nav-cta {
  background: var(--pink);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--pink-deep); text-decoration: none; }
.nav-email { color: var(--ink); font-size: 0.88rem; font-weight: 600; padding: 9px 14px; border-radius: 6px; border: 1px solid var(--line); white-space: nowrap; }
.nav-email:hover { border-color: var(--ink); text-decoration: none; }
.site-nav__toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; }

@media (max-width: 860px) {
  .site-nav__toggle { display: block; }
  .site-nav__menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    padding: 12px var(--pad) 20px;
  }
  .site-nav__menu.is-open { display: flex; }
  .site-nav__links { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; padding: 8px 0; }
  .nav-cta { margin-top: 8px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { text-decoration: none; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); }
.btn-tg { background: #229ED9; color: #fff; }
.btn-tg:hover { background: #1c87b8; }
.btn-email { background: var(--pink); color: #fff; }
.btn-email:hover { background: var(--pink-deep); }
.btn-wa::before, .btn-tg::before { content: ""; display: inline-block; width: 18px; height: 18px; margin-right: 8px; vertical-align: -3px; background-size: contain; background-repeat: no-repeat; }
.btn-wa::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E"); }
.btn-tg::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/%3E%3C/svg%3E"); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f0eee8; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }
@media (max-width: 560px) {
  .btn-row { flex-direction: column; }
  .btn { width: 100%; }
}

/* ===== SECTIONS ===== */
section { padding: clamp(48px, 7vw, 88px) 0; }
.sec-white { background: var(--white); }
.sec-panel { background: var(--panel); }
.sec-paper { background: var(--paper); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-head p { color: var(--mute); font-size: 1.05rem; margin-top: 12px; }
.lead { font-size: 1.15rem; color: var(--body); }

/* ===== HERO ===== */
.hero { background: var(--white); border-bottom: 1px solid var(--line-soft); }
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__copy h1 { margin-bottom: 20px; }
.hero__copy .tagline { font-size: 1.15rem; color: var(--body); margin-bottom: 32px; max-width: 30em; }
.hero__art { display: flex; justify-content: center; }
.hero__art img { width: 300px; border-radius: 16px; }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__copy .tagline { margin-left: auto; margin-right: auto; }
  .hero__art img { width: 220px; }
  .btn-row { justify-content: center; }
}

/* Page header (interior pages) */
.page-head { background: var(--white); text-align: center; }
.page-head__inner { max-width: 880px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) var(--pad) clamp(36px, 5vw, 56px); }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; margin-bottom: 18px; }
.page-head p { color: var(--mute); font-size: 1.2rem; line-height: 1.5; margin: 0 auto; max-width: 640px; }

/* ===== GRIDS / CARDS ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-left: auto; margin-right: auto; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 28px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--mute); font-size: 0.95rem; margin: 0; text-wrap: balance; }
.step p, .tiers-note, .trust-line, .lead { text-wrap: balance; }
.card .q { color: var(--ink); }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat-number { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; color: var(--pink); display: block; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.stat-label { font-size: 0.85rem; color: var(--mute); }
.trust-line { text-align: center; max-width: 680px; margin: 40px auto 0; color: var(--body); font-size: 1.02rem; }

/* ===== STEPS ===== */
.steps { max-width: 720px; margin: 0 auto; counter-reset: step; }
.step { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.step:last-child { border-bottom: 0; }
.step-num { font-size: 1.5rem; font-weight: 700; color: var(--pink); min-width: 36px; }
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--mute); font-size: 0.97rem; }

/* ===== PRICE ===== */
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; max-width: 420px; margin: 0 auto; text-align: center; }
.price-big { font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 14px; letter-spacing: -0.02em; }
.price-card p { color: var(--mute); }
.price-includes { max-width: 560px; margin: 32px auto 0; list-style: none; padding: 0; }
.price-includes li { padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line-soft); position: relative; color: var(--body); }
.price-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 700; }

/* ===== PRICING TIERS ===== */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.tier { background: var(--white); border: 1px solid var(--line-soft); border-radius: 12px; padding: 30px 18px; text-align: center; }
.tier__name { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.tier__rooms { color: var(--mute); font-size: 0.85rem; margin: 4px 0 18px; }
.tier__price { font-weight: 700; color: var(--pink); font-size: 1.7rem; line-height: 1; letter-spacing: -0.02em; }
.tier__unit { display: block; color: var(--mute); font-size: 0.78rem; font-weight: 400; margin-top: 6px; }
.tiers-note { text-align: center; color: var(--mute); font-size: 0.95rem; max-width: 620px; margin: 28px auto 0; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .tiers { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); padding: 24px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { margin-bottom: 8px; color: var(--ink); }
.faq-item p { margin: 0; color: var(--mute); }

/* ===== VALUE / anchor ===== */
.value-anchor { text-align: center; max-width: 700px; margin: 40px auto 0; font-size: 1.08rem; color: var(--ink); font-style: italic; }

/* ===== DEMO ===== */
.demo-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 24px; max-width: 920px; margin: 0 auto; align-items: start; }
@media (max-width: 768px) { .demo-grid { grid-template-columns: 1fr; } }
.demo-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 8px; }
.demo-wrapper { background: #e5ddd5; border-radius: 14px; overflow: hidden; height: 480px; }
.demo-wrapper .demo-label { padding: 14px 20px 0; }
.demo { padding: 10px 18px 18px; height: 444px; overflow-y: auto; font-size: 0.88rem; }
.demo .msg { padding: 8px 12px; border-radius: 8px; margin-bottom: 8px; max-width: 86%; line-height: 1.4; }
.demo .guest { background: #fff; margin-left: auto; }
.demo .concierge { background: #dcf8c6; }
.demo .name { font-size: 0.7rem; color: var(--pink-deep); margin-bottom: 2px; font-weight: 700; }
.email-demo { background: #fff; border: 1px solid var(--line-soft); border-radius: 14px; padding: 22px; height: 480px; overflow-y: auto; font-size: 0.85rem; }
.email-header { border-bottom: 1px solid var(--line-soft); padding-bottom: 12px; margin-bottom: 14px; }
.email-from { font-size: 0.74rem; color: var(--mute); margin-bottom: 4px; }
.email-subject { font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.email-body p { margin: 0; line-height: 1.5; }
.email-greeting { color: var(--body); margin-bottom: 14px !important; }
.email-day { color: var(--pink-deep); font-weight: 700; font-size: 0.9rem; margin-top: 14px !important; margin-bottom: 4px !important; }
.email-item { color: var(--body); padding-left: 12px; font-size: 0.8rem; margin-bottom: 2px; }
.email-vet { margin-top: 14px !important; padding-top: 12px; border-top: 1px solid var(--line-soft); color: var(--pink-deep); font-size: 0.8rem; }
.email-demo a { color: inherit; text-decoration: underline; text-decoration-color: #ddd; text-underline-offset: 2px; }
.email-vet a { color: var(--pink-deep); text-decoration-color: var(--pink); }

/* ===== DARK CTA ===== */
.cta-band { background: #2d2d2d; color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #bdbdbd; max-width: 540px; margin: 0 auto 30px; }

/* ===== EMERGENCY USP BAND ===== */
.emergency-band { background: var(--pink-tint); }
.emergency-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; }
.emergency-note { margin-top: 20px; font-size: 0.85rem; color: var(--mute); }

/* ===== FOOTER ===== */
footer { padding: 48px var(--pad) 36px; background: #111; color: #8c8c8c; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 2fr auto auto; gap: 56px; max-width: var(--max); margin: 0 auto; }
footer h4 { color: #ccc; font-size: 0.85rem; margin-bottom: 12px; font-weight: 600; }
footer p { color: #8c8c8c; }
footer a { color: var(--pink); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 3px 0; }
.footer-bottom { max-width: var(--max); margin: 28px auto 0; padding-top: 22px; border-top: 1px solid #2a2a2a; font-size: 0.75rem; color: #777; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.lang-bar { font-size: 0.7rem; color: #888; letter-spacing: 1px; }
.lang-bar a { color: #888; }
.lang-bar a:hover { color: var(--pink); }
.lang-bar .lang-current { color: var(--pink); font-weight: 700; }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
}
