/* 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; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color-scheme: light; background: var(--paper); }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  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: #ffffff;
  border-bottom: 1px solid #EAEAEA;
}
.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 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;
  cursor: pointer;
}
.site-nav__logo span { color: var(--pink); margin-left: 4px; }
.site-nav__logo:hover { text-decoration: none; }
.site-nav__logo-img { height: 32px; width: auto; display: block; transition: filter 0.2s ease; }
.site-nav__logo:hover .site-nav__logo-img { filter: brightness(0); }
@media (max-width: 860px) { .site-nav__logo-img { height: 28px; } }
.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: 600; 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-social { display: inline-flex; align-items: center; }
.nav-social svg { width: 21px; height: 21px; fill: var(--pink); transition: fill 0.2s ease; }
.nav-social:hover svg { fill: var(--ink); }
.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: #ffffff;
    border-bottom: 1px solid #EAEAEA;
    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: 40px;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.88rem;
  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, .btn-email::before { content: ""; display: inline-block; width: 18px; height: 18px; margin-right: 8px; vertical-align: -3px; background-size: contain; background-repeat: no-repeat; }
.btn-email::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='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E"); }
.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); }
.mission-title { font-size: clamp(2.1rem, 4.5vw, 3rem); }
.about-seal { position: relative; display: inline-block; width: 190px; height: 190px; margin: 0 auto 28px; transition: transform 0.2s ease; }
.about-seal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.about-seal__hover { opacity: 0; transition: opacity 0.2s ease; }
.about-seal:hover .about-seal__hover { opacity: 1; }
.about-seal:hover { transform: scale(1.03); }
.about-rochlogo { width: 250px; height: auto; margin: 0 auto 22px; display: block; }
.about-nvidia-link { display: inline-block; }
.about-nvidia { width: 250px; height: auto; margin: 8px auto 0; display: block; }
.about-nvidia-cap { font-size: 0.92rem; color: var(--mute); margin: 16px 0 0; }

/* ===== 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: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__copy h1 { font-size: clamp(1.6rem, 2.6vw, 2.05rem); margin-bottom: 18px; }
.hero__copy .tagline { font-size: 1.05rem; color: var(--body); margin-bottom: 28px; max-width: 30em; }
.hero__art { display: flex; justify-content: center; }
.hero__art img { width: 100%; max-width: 420px; border-radius: 16px; }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__copy .tagline { margin-left: auto; margin-right: auto; }
  .hero__art img { max-width: 300px; }
  .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(24px, 3.3vw, 37px); }
.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; text-wrap: balance; }
.page-head h1.ph-oneline { font-size: clamp(1.7rem, 5vw, 3.2rem); }
.page-head p.ph-sub-wide { max-width: none; }
.pink-pop { color: var(--pink); display: inline-block; animation: pinkpop 0.9s ease 0.25s both; }
@keyframes pinkpop {
  0% { color: var(--ink); transform: scale(1); }
  45% { color: var(--pink); transform: scale(1.06); }
  70% { color: var(--pink); transform: scale(0.99); }
  100% { color: var(--pink); transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .pink-pop { animation: none; } }
@media (max-width: 480px) { h1 .pink-pop { display: inline; } }

/* ===== 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: 32px 28px;
  text-align: center;
}
.card h3 { margin-bottom: 8px; color: var(--pink); }
.card p { color: var(--mute); font-size: 0.95rem; margin: 0 auto; max-width: 30ch; text-wrap: balance; }
.step p, .tiers-note, .trust-line, .lead { text-wrap: balance; }
.card .q { color: var(--pink); }

/* Card pop: hover lift + travelling idle pop (cycles through the grid) */
.card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.grid > .card { animation: cardCycle 13.5s ease-in-out infinite; }
.grid > .card:nth-child(2) { animation-delay: 1.5s; }
.grid > .card:nth-child(3) { animation-delay: 3s; }
.grid > .card:nth-child(4) { animation-delay: 4.5s; }
.grid > .card:nth-child(5) { animation-delay: 6s; }
.grid > .card:nth-child(6) { animation-delay: 7.5s; }
.grid > .card:nth-child(7) { animation-delay: 9s; }
.grid > .card:nth-child(8) { animation-delay: 10.5s; }
.grid > .card:nth-child(9) { animation-delay: 12s; }
.card:hover { animation: none; transform: translateY(-6px) scale(1.03); box-shadow: 0 12px 28px rgba(232, 67, 147, 0.16); border-color: var(--pink); }
@keyframes cardCycle {
  0%, 5%, 100% { transform: none; box-shadow: 0 0 0 rgba(232, 67, 147, 0); }
  2.5% { transform: translateY(-5px) scale(1.025); box-shadow: 0 10px 24px rgba(232, 67, 147, 0.13); }
}
@media (prefers-reduced-motion: reduce) { .grid > .card, .card:hover { animation: none; } }
.caps { padding-top: clamp(28px, 4vw, 52px); }
.caps .card h3 { color: var(--pink); }
.caps .card p { color: var(--body); text-wrap: balance; }
.caps .grid-2 { max-width: 880px; }
.h-pink { color: var(--pink); }

/* ===== 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 { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; max-width: 1120px; margin: 0 auto; }
.step { position: relative; text-align: center; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 27px; left: 50%; width: calc(100% + 18px); height: 2px; background: linear-gradient(90deg, var(--pink), rgba(232, 67, 147, 0.25)); z-index: 0; }
.step-num { position: relative; z-index: 1; width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 2px solid var(--pink); color: var(--pink); font-size: 1.3rem; font-weight: 700; box-shadow: 0 2px 10px rgba(232, 67, 147, 0.12); }
.step h3 { margin: 0 0 9px; font-size: 1.05rem; min-height: 2.5em; display: flex; align-items: center; justify-content: center; text-align: center; }
.step p { margin: 0; color: var(--mute); font-size: 0.92rem; text-wrap: balance; }
/* Number pop-in pulse, staggered, fires when the row scrolls into view */
.js-anim .steps:not(.lit) .step-num { opacity: 0; transform: scale(0.4); }
@keyframes stepPop { 0% { opacity: 0; transform: scale(0.4); } 60% { opacity: 1; transform: scale(1.12); } 100% { opacity: 1; transform: scale(1); } }
.steps.lit .step:nth-child(1) .step-num { animation: stepPop 0.5s ease-out 0s both; }
.steps.lit .step:nth-child(2) .step-num { animation: stepPop 0.5s ease-out 0.15s both; }
.steps.lit .step:nth-child(3) .step-num { animation: stepPop 0.5s ease-out 0.3s both; }
.steps.lit .step:nth-child(4) .step-num { animation: stepPop 0.5s ease-out 0.45s both; }
.steps.lit .step:nth-child(5) .step-num { animation: stepPop 0.5s ease-out 0.6s both; }
@media (prefers-reduced-motion: reduce) { .js-anim .steps .step-num { opacity: 1; transform: none; } .steps.lit .step .step-num { animation: none; } }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 30px; max-width: 420px; }
  .step:not(:last-child)::after { display: none; }
}

/* ===== 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); }
/* ===== WHAT'S INCLUDED (themed IA bento) ===== */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1000px; margin: 0 auto; }
.inc-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: 18px; padding: 32px 32px 28px; text-align: left; display: flex; flex-direction: column; }
.inc-card.span2 { grid-column: 1 / -1; }
.inc-card__name { font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; margin: 0 0 7px; }
.inc-card__desc { color: var(--mute); font-size: 0.95rem; line-height: 1.5; margin: 0 0 22px; max-width: 48ch; text-wrap: balance; }
.inc-card__list { list-style: none; margin: auto 0 0; padding: 0; border-top: 1px solid var(--line-soft); }
.inc-card__list li { padding: 13px 0; font-size: 1rem; font-weight: 500; color: var(--body); border-bottom: 1px solid var(--line-soft); text-wrap: balance; }
.inc-card__list li:last-child { border-bottom: 0; padding-bottom: 0; }

/* Featured card: Guest Experience */
.inc-card--feature { background: var(--pink-tint); border-color: rgba(232, 67, 147, 0.22); }
.inc-card--feature .inc-card__name { font-size: 1.5rem; color: var(--pink-deep); }
.inc-card--feature .inc-card__desc { max-width: 62ch; font-size: 1rem; color: var(--body); }
.inc-card__list--row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(232, 67, 147, 0.2); }
.inc-card__list--row li { border-bottom: 0; border-left: 1px solid rgba(232, 67, 147, 0.2); padding: 18px 24px; font-weight: 600; color: var(--ink); line-height: 1.4; text-wrap: balance; }
.inc-card__list--row li:first-child { border-left: 0; padding-left: 0; }
.inc-card__list--row li:last-child { padding-bottom: 18px; }

/* Wide compact card: Insights */
.inc-card--wide { flex-direction: row; align-items: center; justify-content: space-between; gap: 36px; }
.inc-card--wide .inc-card__head { flex: 1; }
.inc-card--wide .inc-card__desc { margin-bottom: 0; }
.inc-card__solo { flex-shrink: 0; font-size: 1.05rem; font-weight: 600; color: #1e7a45; background: rgba(46, 158, 91, 0.12); border: 1px solid rgba(46, 158, 91, 0.35); border-radius: 12px; padding: 16px 24px; }

@media (max-width: 760px) {
  .included-grid { grid-template-columns: 1fr; }
  .inc-card.span2 { grid-column: auto; }
  .inc-card--feature .inc-card__name { font-size: 1.35rem; }
  .inc-card__list--row { grid-template-columns: 1fr; }
  .inc-card__list--row li { border-left: 0; border-bottom: 1px solid rgba(232, 67, 147, 0.2); padding: 13px 0; }
  .inc-card__list--row li:last-child { border-bottom: 0; padding-bottom: 0; }
  .inc-card--wide { flex-direction: column; align-items: flex-start; gap: 20px; }
  .inc-card__solo { width: 100%; }
}

/* ===== LIVE ON DAY ONE (outcome blocks) ===== */
.dayone-feature { max-width: 1000px; margin: 0 auto 18px; background: rgba(46, 158, 91, 0.12); border: 1px solid rgba(46, 158, 91, 0.35); border-radius: 20px; padding: clamp(30px, 4vw, 52px); text-align: left; }
.dayone-feature .kicker { color: #1e7a45; margin-bottom: 14px; }
.dayone-feature h3 { font-size: clamp(1.55rem, 3vw, 2.2rem); color: #1e7a45; letter-spacing: -0.02em; margin: 0 0 12px; }
.dayone-feature p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--body); line-height: 1.5; max-width: 44ch; margin: 0; text-wrap: balance; }
.dayone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.dayone-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: 16px; padding: 28px 26px; text-align: left; }
.dayone-card h4 { font-size: 1.15rem; font-weight: 700; color: #1e7a45; letter-spacing: -0.01em; margin: 0 0 8px; text-wrap: balance; }
.dayone-card p { font-size: 0.95rem; color: var(--mute); line-height: 1.5; margin: 0; text-wrap: balance; }
@media (max-width: 760px) { .dayone-grid { grid-template-columns: 1fr; } }

/* ===== 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-group { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin: 40px 0 6px; }
.faq-group:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); position: relative; transition: color 0.15s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink); }
.faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--pink); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0; padding: 0 40px 24px 0; color: var(--mute); line-height: 1.6; text-wrap: pretty; }

/* ===== 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; text-wrap: balance; }

/* ===== 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); }

/* ===== BORDER USP BAND (green, thinner) ===== */
.border-band { background: rgba(46, 158, 91, 0.08); padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); }
.border-band .kicker { color: #2E9E5B; }
.border-band h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.02em; }

/* ===== CONTACT FORM (ported from Let Dogs In, rebranded) ===== */
.form-bridge { text-align: center; font-weight: 700; font-size: 1.25rem; color: var(--ink); max-width: 560px; margin: 0 auto 28px; text-wrap: balance; }
.formcard { max-width: 760px; margin: 0 auto; text-align: left; }
#kc-contact label:not(.consent):not(.check-label) { display: block; font-size: 0.83rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field-optional { font-weight: 400; color: var(--mute); font-size: 0.78rem; margin-left: 4px; }
#kc-contact input, #kc-contact select, #kc-contact textarea { width: 100%; background: #f5f2ec; border: 1.5px solid var(--line-soft); border-radius: 8px; padding: 13px 15px; font-family: var(--sans); font-size: 0.98rem; color: var(--ink); -webkit-appearance: none; appearance: none; box-sizing: border-box; transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
#kc-contact input:focus, #kc-contact select:focus, #kc-contact textarea:focus { outline: none; border-color: var(--pink); background: #f7f3ef; box-shadow: 0 0 0 3px var(--pink-tint); }
#kc-contact input::placeholder, #kc-contact textarea::placeholder { color: #a8a49f; }
#kc-contact textarea { min-height: 110px; resize: vertical; }
#kc-contact input[type=checkbox] { width: 16px; height: 16px; min-width: 16px; flex: 0 0 16px; padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; -webkit-appearance: auto; appearance: auto; accent-color: var(--pink); }
#kc-contact select { padding-right: 38px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23807D77' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.fgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; align-items: start; }
.fgrid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; align-items: start; }
.frow { margin-bottom: 14px; }
.role-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.role-checks { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 2px; }
.check-label { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--body); font-weight: 500; cursor: pointer; }
.check-label input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--pink); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--body); margin-bottom: 14px; }
.consent input { margin-top: 4px; flex-shrink: 0; accent-color: var(--pink); }
.consent a { color: var(--pink-deep); }
.consent-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 36px; margin: 12px 0 4px; }
.consent-row .consent { margin-bottom: 0; flex: 0 1 auto; }
.kc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.formcard .btn { display: block; width: max-content; max-width: 100%; margin: 18px auto 0; padding: 15px 56px; font-weight: 700; }
.formmsg { margin-top: 16px; padding: 16px 18px; border-radius: 8px; font-size: 0.95rem; line-height: 1.55; text-wrap: balance; display: none; }
.formmsg.ok { display: block; background: #edf7ed; color: #1a5a1a; }
.formmsg.ok strong { color: #14491a; }
.formmsg.err { display: block; background: var(--pink-tint); color: var(--pink-deep); }
@media (max-width: 600px) { .fgrid2, .fgrid3 { grid-template-columns: 1fr; } }

/* ===== 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 auto; gap: 44px; max-width: 900px; 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: 900px; 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; }
}
