/* Limona marketing site
   Light, warm, friendly. One shared sheet for every page. */

:root {
  color-scheme: light;

  /* Brand: forest green #205C48, lemon gold #E8B94F, warm ivory #FAF8F0 */
  --paper: #FAF8F0;
  --white: #FFFEFA;
  --mint: #EAF0E5;
  --mint-deep: #DCE1D5;
  --sun: #FDF7E9;
  --sun-deep: #F2DFAE;

  --ink: #213C33;
  --ink-soft: #3D5549;
  --muted: #59695F;

  --green: #205C48;
  --green-dark: #174233;
  --gold: #E8B94F;
  --gold-soft: #FBEDCB;

  --line: #DCE1D5;
  --line-warm: #E6E2D3;

  --shadow-soft: 0 1px 2px rgba(24, 60, 50, .05), 0 10px 30px rgba(24, 60, 50, .06);
  --shadow-lift: 0 22px 65px rgba(24, 60, 50, .11);

  --col: 1080px;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 9px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Figtree, "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 3.9rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.7rem); font-weight: 700; letter-spacing: -.016em; }
h3 { font-size: 1.24rem; font-weight: 700; letter-spacing: -.008em; line-height: 1.25; }

/* The second line of a headline, set in italic green. */
.say { display: block; font-style: italic; color: var(--green); }

/* Small tracked label above a headline. */
.eyebrow {
  display: block;
  font-family: Figtree, "Segoe UI", system-ui, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}

p { margin: 0; }

a { color: var(--green-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px;
}

.band { padding: 84px 0; }
.band-mint { background: var(--mint); }
.band-sun { background: var(--sun); }
.band-white { background: var(--white); }

.lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-top: 18px;
}

.stack { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-14 { gap: 14px; }
.gap-20 { gap: 20px; }
.gap-28 { gap: 28px; }
.gap-40 { gap: 40px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.btn-go {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 0 var(--green-dark), 0 10px 22px rgba(32, 90, 67, .24);
}
.btn-go:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }
.btn-go:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--green-dark); }

.btn-quiet {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-quiet:hover { color: var(--ink); border-color: var(--green); transform: translateY(-1px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 240, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.head-in {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 94px;
}

.mark {
  display: inline-flex;
  align-items: center;
  flex: none;
  text-decoration: none;
}
/* The wordmark file carries its own padding, so the visible logo is about
   two thirds of these heights. */
.mark img { height: 78px; width: auto; }

/* The slogan sits under the wordmark, quiet and small. */
.lockup { flex-direction: column; align-items: flex-start; gap: 4px; }
.lockup .slogan {
  font-family: Figtree, "Segoe UI", system-ui, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
  padding-left: 4px;
}
.mark-sm img { height: 58px; }
.mark:hover img { opacity: .82; }

.head-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.head-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: .98rem;
}
.head-nav a:hover { color: var(--green-dark); }
.head-nav .btn { font-size: .95rem; padding: 12px 20px; }
/* The nav link colour would otherwise beat the button's own white text. */
.head-nav a.btn-go, .head-nav a.btn-go:hover { color: #fff; }

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(900px 420px at 88% -6%, var(--sun) 0%, rgba(255, 244, 222, 0) 62%),
    radial-gradient(760px 480px at -8% 6%, var(--mint) 0%, rgba(232, 244, 239, 0) 66%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center;
}
/* The conversation sits on the left, the photo and the words on the right. */
.hero-grid > .chat { order: -1; }

/* The headline sits above both, so it reads before either of them. It runs
   on one line at full width, so "front desk" stays beside "Your website's". */
.hero-intro h1 {
  font-size: clamp(2.3rem, 6.4vw, 4.4rem);
  text-wrap: balance;
}
.hero-intro h1 .say { display: inline; }
.hero-intro .lede { margin-top: 18px; max-width: 54ch; }

/* The conversation and the front desk picture, side by side and the same
   height. The conversation sets that height; the picture matches it. */
.hero-pair {
  display: grid;
  /* The picture is first in the markup, so a phone shows the dog before the
     conversation. On a wide screen that puts it on the left; the columns are
     swapped to match, so both keep the width they had. */
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 38px;
}
.front-desk {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Contained rather than cropped, because the record card is the point. The
   picture's own background is the paper colour, so the spare space vanishes. */
.front-desk img { width: 100%; height: 100%; object-fit: contain; display: block; }

@media (max-width: 860px) {
  .hero-pair { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .front-desk img { max-width: 420px; margin: 0 auto; }
}

.hero-shot {
  /* Runs a little past the text column on the right, so it reads as artwork
     rather than a boxed picture. */
  margin: 14px -34px 0 -10px;
  border-radius: 20px;
  overflow: hidden;
}
/* The illustration's own background is the paper colour, so it floats;
   a photograph gets the frame instead. */
.hero-shot.crop {
  margin-top: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
/* The illustration is composed edge to edge, so it shows whole, not cropped. */
.hero-shot img { width: 100%; height: auto; }

/* A photograph instead: crop it to a band. */
.hero-shot.crop img {
  height: 240px;
  object-fit: cover;
  object-position: center 42%;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  padding: 7px 15px 7px 9px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.hero-note b { color: var(--ink); font-weight: 600; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 90, 67, .16);
}

.hero-after {
  margin-top: 22px;
  font-size: .95rem;
  color: var(--muted);
}

/* ---------- chat card ---------- */

.chat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 20px;
  background: var(--mint);
  border-bottom: 1px solid var(--mint-deep);
}
.chat-top .who { font-weight: 600; font-size: .97rem; }
.chat-top .sub { font-size: .84rem; color: var(--muted); }
.avatar { width: 36px; height: 36px; flex: none; }

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
}

/* The animated hero conversation keeps a steady height so the page never jumps. */
.chat-play .chat-body {
  height: 430px;
  overflow-y: auto;
  scrollbar-width: thin;
  transition: opacity .4s ease;
}
.chat-play .chat-body.clearing { opacity: 0; }
/* Start the conversation at the bottom of the window and let it grow upwards,
   the way a real chat does, so the box never looks half empty. */
.chat-play .chat-body > :first-child { margin-top: auto; }
.chat-play .chat-top .who,
.chat-play .chat-top .sub,
.chat-play .foot-text { transition: opacity .3s ease; }
.chat-play .fading { opacity: .25; }

/* No fill-mode on purpose: if the browser never runs the animation (a hidden
   tab, say), the message simply shows up rather than staying invisible. */
.msg-in { animation: msg-in .26s ease-out; }
@keyframes msg-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

.typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  background: var(--mint);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  padding: 15px 17px;
}
.typing i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8AA88F;
  display: block;
  animation: blip 1.1s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: .16s; }
.typing i:nth-child(3) { animation-delay: .32s; }
@keyframes blip {
  0%, 62%, 100% { transform: translateY(0); opacity: .45; }
  31% { transform: translateY(-4px); opacity: 1; }
}

.bubble {
  max-width: 84%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: .97rem;
  line-height: 1.5;
}
.from-shop {
  align-self: flex-start;
  background: var(--mint);
  border-bottom-left-radius: 6px;
  color: var(--ink);
}
.from-you {
  align-self: flex-end;
  background: var(--green);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chat-foot {
  border-top: 1px solid var(--line);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .92rem;
  background: #FCFBF7;
}

.booked-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--sun);
  border: 1px solid var(--sun-deep);
  border-radius: 12px;
  padding: 9px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: #7A5A12;
}

/* ---------- promise strip ---------- */

.promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.promise { display: flex; gap: 13px; align-items: flex-start; }
.promise b { display: block; font-weight: 600; margin-bottom: 2px; }
.promise span { color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.promise svg { flex: none; margin-top: 2px; }

/* ---------- headings for bands ---------- */

.band-head { max-width: 40rem; margin-bottom: 44px; }
.band-head .lede { margin-top: 14px; }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-soft);
}
.step-n {
  counter-increment: step;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sun);
  border: 1px solid var(--sun-deep);
  color: #7A5A12;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 16px;
}
.step-n::before { content: counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .99rem; }

/* ---------- split layouts ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.split-wide { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }

/* ---------- phone ---------- */

.phone {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  background: var(--white);
  border: 8px solid #2B3A33;
  border-radius: 34px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.phone-top {
  background: #2B3A33;
  color: #C9DED4;
  text-align: center;
  font-size: .76rem;
  padding: 0 0 9px;
  letter-spacing: .02em;
}
.phone-screen { padding: 16px 14px 20px; display: flex; flex-direction: column; gap: 11px; }
.sms {
  background: var(--mint);
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  padding: 12px 14px;
  font-size: .9rem;
  line-height: 1.5;
}
.sms-you {
  background: var(--green);
  color: #fff;
  align-self: flex-end;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 6px;
  font-weight: 600;
  padding: 10px 18px;
}
.sms-meta { font-size: .76rem; color: var(--muted); text-align: center; }

/* The text conversation plays itself out, so the screen keeps a steady height
   and fills from the bottom the way a real thread does. */
.phone-play .phone-screen {
  height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  justify-content: flex-end;
  transition: opacity .4s ease;
}
.phone-play .phone-screen.clearing { opacity: 0; }
.phone-play .sms.typing { padding: 15px 17px; }
.phone-note {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

.reply-btns { display: flex; gap: 9px; }
.reply-btn {
  flex: 1;
  text-align: center;
  padding: 9px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
}
.reply-btn.yes { border-color: var(--green); background: rgba(32, 90, 67, .1); color: var(--green-dark); }

/* ---------- check list ---------- */

.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.checks li b { color: var(--ink); font-weight: 600; }
.checks svg { flex: none; margin-top: 4px; }

/* ---------- works with ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
}
.tile b { display: block; font-weight: 600; margin-bottom: 4px; }
.tile span { color: var(--muted); font-size: .93rem; }
.tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tag-now { background: rgba(32, 90, 67, .13); color: var(--green-dark); }
.tag-next { background: var(--sun-deep); color: #7A5A12; }

/* ---------- price ---------- */

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  padding: 38px 38px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.price-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.price-num small { font-family: Figtree, sans-serif; font-size: 1rem; font-weight: 500; color: var(--muted); }

/* ---------- faq ---------- */

.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 48px; }
.faq h3 { margin-bottom: 7px; }
.faq p { color: var(--ink-soft); font-size: .99rem; }

/* ---------- closing call ---------- */

.wide-shot {
  margin: 0 0 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
/* Tall enough, and anchored near the top, so her head is never clipped. */
.wide-shot img { width: 100%; height: 420px; object-fit: cover; object-position: center 22%; }
/* On a phone the column is narrower than the picture is wide, so show all of it
   rather than cropping into the sides. */
@media (max-width: 900px) { .wide-shot img { height: auto; } }


.closer {
  background: linear-gradient(160deg, var(--mint) 0%, var(--sun) 100%);
  border-radius: 28px;
  padding: 58px 44px;
  text-align: center;
  border: 1px solid var(--mint-deep);
}
.closer .lede { margin: 16px auto 0; }
.closer .btn-row { justify-content: center; }

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

.site-foot {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 46px 0 54px;
  font-size: .94rem;
  color: var(--muted);
}
.foot-in { display: flex; flex-wrap: wrap; gap: 18px 34px; align-items: center; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.foot-nav a { color: var(--ink-soft); text-decoration: none; }
.foot-nav a:hover { color: var(--green-dark); }
.foot-legal { width: 100%; margin-top: 6px; }
.byline { color: var(--ink-soft); font-weight: 600; }

/* ---------- long-form pages ---------- */

.page-head { padding: 62px 0 40px; background: linear-gradient(180deg, var(--mint) 0%, var(--paper) 100%); }
.prose { max-width: 44rem; }
.prose h2 { font-size: 1.5rem; margin-top: 40px; }
.prose h3 { margin-top: 26px; }
.prose p, .prose li { color: var(--ink-soft); margin-top: 12px; }
.prose ul { padding-left: 20px; }
.prose li { margin-top: 8px; }
.prose strong { color: var(--ink); }

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

@media (max-width: 900px) {
  .hero-grid, .split, .split-wide { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-shot { margin-left: 0; margin-right: 0; }
  .mark img { height: 58px; }
  .mark-sm img { height: 46px; }
  .head-in { min-height: 78px; gap: 16px; }
  .hero-grid > .chat { order: 0; }
  .hero-shot.crop img { height: 200px; }
  .steps, .promises, .faq, .price-card { grid-template-columns: minmax(0, 1fr); }
  .promises { gap: 20px; padding: 26px 24px; }
  .price-card { gap: 26px; padding: 30px 26px; }
  .band { padding: 62px 0; }
  .hero { padding: 52px 0 64px; }
  .head-nav a.nav-link { display: none; }
  .closer { padding: 42px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
