/* ============================================
   Velanor — shared landing page styles
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@1,400;1,500;1,600&display=swap');
:root {
  --paper: #f1eee6; --paper-2: #ebe7dd;
  --ink: #15140f; --ink-2: #5a544a; --ink-3: #726c5e;
  --line: rgba(21,20,15,0.08); --line-2: rgba(21,20,15,0.16);
  --sage: #3d4f3a; --sage-soft: #d5dccd; --highlight: #f7f4eb;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  /* Pastel mesh — same ambient atmosphere as the homepage */
  background:
    radial-gradient(ellipse 95% 85% at -5% -5%, rgba(176,210,178,0.70), transparent 70%),
    radial-gradient(ellipse 90% 80% at 0% 105%, rgba(244,226,176,0.62), transparent 68%),
    radial-gradient(ellipse 100% 110% at 108% 40%, rgba(182,206,232,0.58), transparent 70%),
    radial-gradient(ellipse 80% 70% at 70% 108%, rgba(236,206,178,0.45), transparent 68%),
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(248,246,240,0.55), transparent 75%),
    #f3f1ea;
  background-attachment: fixed;
  color: var(--ink);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
/* Emphasis italic — Inter (clean), matching the homepage. Replaces the old
   Cormorant flowery italic everywhere on landing pages. */
em, .lp-hero h1 em, h2 em, h3 em, .cta-block h3 em, .stat .num, blockquote em {
  font-family: "Inter", "Geist", -apple-system, sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 10px 16px;
  font-size: 14px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Header — glass, matching homepage */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,251,248,0.62);
  -webkit-backdrop-filter: blur(22px) saturate(120%); backdrop-filter: blur(22px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 14px 0;
}
header.site .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand {
  font-family: "Geist", sans-serif; font-weight: 600; font-size: 18px;
  letter-spacing: -0.02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.brand-mark { width: 24px; height: 22px; }
header nav { display: flex; gap: 24px; align-items: center; }
@media (max-width: 880px) { header nav { display: none; } }
header nav a { font-size: 13.5px; color: var(--ink-2); transition: color .2s ease; }
header nav a:hover { color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  font-family: "Geist", sans-serif; font-size: 13.5px; font-weight: 500;
  padding: 10px 18px; background: var(--ink); color: var(--paper);
  border: 0; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; line-height: 1;
  transition: background .2s ease, gap .24s cubic-bezier(.22,1,.36,1);
}
.nav-cta:hover { background: var(--sage); gap: 10px; }

/* Section base */
section { padding: 80px 0; position: relative; }
@media (max-width: 640px) { section { padding: 56px 0; } }

/* Breadcrumbs */
.breadcrumbs {
  font-family: "Geist Mono", monospace; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 22px; padding-top: 36px;
}
.breadcrumbs a { color: var(--ink-3); transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--ink-2); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

/* Landing hero */
.lp-hero { padding: 50px 0 60px; }
.lp-hero .tag {
  display: inline-block; font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); padding: 6px 12px; background: var(--sage-soft);
  border-radius: 999px; margin-bottom: 20px;
}
.lp-hero h1 {
  font-family: "Geist", sans-serif; font-weight: 400;
  font-size: clamp(32px, 5vw, 58px); line-height: 1.05;
  letter-spacing: -.028em; margin: 0 0 22px; max-width: 18ch;
}
.lp-hero h1 em {
  font-family: "Inter", "Geist", sans-serif;
  font-style: italic; color: var(--sage); letter-spacing: -.02em;
  font-weight: 500;
}
.lp-hero .sub {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  margin: 0 0 32px; max-width: 58ch;
}
.lp-hero .row-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.lp-hero .hero-meta {
  margin-top: 24px; font-family: "Geist Mono", monospace;
  font-size: 12px; letter-spacing: .06em; color: var(--ink-3);
}
.lp-hero .hero-meta .dot { color: var(--sage); margin: 0 8px; }

/* CTA buttons */
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Geist", sans-serif; font-size: 15px; font-weight: 500;
  padding: 16px 28px; background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink); border-radius: 999px;
  cursor: pointer; line-height: 1; text-decoration: none;
  transition: background .24s ease, color .24s ease, gap .28s cubic-bezier(.22,1,.36,1);
}
.cta:hover { background: transparent; color: var(--ink); gap: 18px; }
.cta .arrow { transition: transform .28s cubic-bezier(.22,1,.36,1); }
.cta:hover .arrow { transform: translateX(3px); }
.cta-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.cta-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Section heading */
.section-head { margin-bottom: 44px; max-width: 720px; }
.section-head h2 {
  font-family: "Geist", sans-serif; font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1;
  letter-spacing: -.028em; margin: 0 0 14px;
}
.section-head h2 em {
  font-family: "Inter", "Geist", sans-serif; font-style: italic;
  color: var(--sage); font-weight: 500; letter-spacing: -.015em;
}
.section-head p { font-size: 16.5px; color: var(--ink-2); margin: 0; line-height: 1.55; max-width: 60ch; }

/* Article / content prose */
.lp-content h2 {
  font-family: "Geist", sans-serif; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px); margin: 48px 0 14px;
  letter-spacing: -.018em; line-height: 1.25;
}
.lp-content h3 {
  font-family: "Geist", sans-serif; font-weight: 500;
  font-size: 18px; margin: 28px 0 10px; line-height: 1.3;
}
.lp-content p, .lp-content li {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-2);
}
.lp-content p { margin: 0 0 18px; max-width: 64ch; }
.lp-content ul, .lp-content ol { margin: 0 0 24px 0; padding-left: 22px; max-width: 64ch; }
.lp-content li { margin-bottom: 8px; }
.lp-content strong { color: var(--ink); font-weight: 500; }
.lp-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.lp-content blockquote {
  margin: 28px 0; padding: 20px 26px;
  border-left: 3px solid var(--sage);
  background: rgba(253,252,249,0.6); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); color: var(--ink);
  font-family: "Inter", "Geist", sans-serif; font-style: italic;
  font-size: 19px; line-height: 1.5; max-width: 64ch;
}

/* Cards grid — frosted glass on the mesh, matching homepage */
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 760px) { .cards-3 { grid-template-columns: 1fr; } }
.cards-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 640px) { .cards-2 { grid-template-columns: 1fr; } }
.card {
  background: rgba(253,252,249,0.72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 16px;
  box-shadow: 0 8px 32px -16px rgba(21,20,15,0.15);
  padding: 32px 30px;
  transition: transform .38s cubic-bezier(.16,1,.3,1), box-shadow .38s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px -18px rgba(21,20,15,0.22); }
.card .num {
  font-family: "Geist Mono", monospace; font-size: 11px;
  letter-spacing: .14em; color: var(--ink-3); margin-bottom: 12px;
}
.card h3 {
  font-family: "Geist", sans-serif; font-weight: 500;
  font-size: 19px; margin: 0 0 10px; letter-spacing: -.01em;
  line-height: 1.25;
}
.card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.card .price {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line-2);
  font-family: "Geist Mono", monospace; font-size: 13px;
  color: var(--ink); font-weight: 500;
}

/* Big number stats */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 32px 0 16px;
}
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 16px; } }
.stat { padding: 24px 20px; background: rgba(253,252,249,0.66); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.5); border-radius: 14px; }
.stat .num {
  font-family: "Inter", "Geist", sans-serif; font-style: italic;
  font-size: 42px; line-height: 1; color: var(--sage); margin-bottom: 6px;
}
.stat .label {
  font-family: "Geist Mono", monospace; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2);
}

/* FAQ */
.faq { margin-top: 16px; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.5); border-radius: 14px;
  margin-bottom: 10px; background: rgba(253,252,249,0.62);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background .24s ease;
}
.faq-item:hover { background: rgba(253,252,249,0.8); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Geist", sans-serif; font-weight: 500; font-size: 15.5px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: "Geist", sans-serif; font-size: 22px;
  color: var(--ink-3); transition: transform .24s ease;
  font-weight: 300; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 20px; margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.62; }

/* CTA block */
.cta-block {
  margin: 60px 0; padding: 48px 40px; background: var(--ink); color: var(--paper);
  border-radius: 14px; text-align: center;
}
.cta-block h3 {
  font-family: "Geist", sans-serif; font-weight: 400;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.2;
  margin: 0 0 12px; color: var(--paper); letter-spacing: -.02em;
}
.cta-block h3 em {
  font-family: "Inter", "Geist", sans-serif; font-style: italic;
  color: #c8d4be; font-weight: 500;
}
.cta-block p { color: rgba(241,238,230,.72); margin: 0 0 24px; font-size: 15.5px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-block .cta { background: #c8d4be; color: var(--ink); border-color: #c8d4be; }
.cta-block .cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
/* Ghost button inside a dark CTA block = outline style (transparent bg, sage
   text/border). Without this, .cta-block .cta forces a sage bg under sage
   inline text → invisible button. */
.cta-block .cta-ghost {
  background: transparent;
  color: #c8d4be;
  border-color: rgba(241,238,230,0.35);
}
.cta-block .cta-ghost:hover {
  background: rgba(241,238,230,0.1);
  color: var(--paper);
  border-color: rgba(241,238,230,0.55);
}

/* Related links grid */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 24px 0;
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  padding: 22px 22px; border: 1px solid var(--line);
  border-radius: 14px; background: rgba(253,252,249,0.66); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background .2s ease, border-color .2s ease, transform .24s cubic-bezier(.22,1,.36,1);
}
.related-card:hover { background: rgba(253,252,249,0.85); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); }
.related-card .label {
  font-family: "Geist Mono", monospace; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px;
}
.related-card h4 {
  font-family: "Geist", sans-serif; font-weight: 500;
  font-size: 15.5px; margin: 0 0 6px; color: var(--ink); letter-spacing: -.01em;
}
.related-card p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* Footer */
footer.site {
  background: var(--ink); color: rgba(241,238,230,0.7);
  padding: 64px 0 40px; font-size: 14px; margin-top: 40px;
}
footer.site .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { footer.site .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { footer.site .footer-grid { grid-template-columns: 1fr; } }
footer.site h4 {
  font-family: "Geist Mono", monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(241,238,230,0.45); margin: 0 0 14px; font-weight: 500;
}
footer.site a { color: rgba(241,238,230,0.85); display: block; padding: 4px 0; transition: color .2s ease; }
footer.site a:hover { color: var(--paper); }
footer.site .brand-block .footer-tag {
  font-family: "Inter", "Geist", sans-serif; font-style: italic;
  font-size: 17px; color: rgba(241,238,230,0.7); margin: 8px 0 16px; line-height: 1.4;
}
footer.site .nap {
  padding-top: 28px; border-top: 1px solid rgba(241,238,230,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: "Geist Mono", monospace; font-size: 11.5px;
  letter-spacing: .04em; color: rgba(241,238,230,0.5);
}
footer.site .nap a { display: inline; padding: 0; color: rgba(241,238,230,0.65); }

/* Mobile booking bar */
.mobile-book-bar { display: none; }
@media (max-width: 720px) {
  .mobile-book-bar {
    display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px;
    z-index: 900; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 14px 12px 18px;
    background: var(--ink); color: var(--paper); border-radius: 999px;
    box-shadow: 0 12px 36px -10px rgba(21,20,15,.45), 0 2px 8px -2px rgba(21,20,15,.3);
  }
  .mobile-book-bar .price {
    font-family: "Geist Mono", monospace; font-size: 11px;
    letter-spacing: .06em; text-transform: uppercase;
    color: rgba(241,238,230,.65); line-height: 1.2; padding-left: 4px;
  }
  .mobile-book-bar .price b {
    display: block; font-family: "Geist", sans-serif;
    font-size: 13.5px; font-weight: 500; color: var(--paper);
    text-transform: none; letter-spacing: 0; margin-top: 2px;
  }
  .mobile-book-bar .book-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px; background: #c8d4be; color: var(--ink);
    border: 0; border-radius: 999px; font-family: "Geist", sans-serif;
    font-size: 13.5px; font-weight: 500; cursor: pointer; line-height: 1;
    white-space: nowrap;
  }
}

/* Article */
article.lp-article { max-width: 740px; margin: 0 auto; }
article.lp-article .meta {
  font-family: "Geist Mono", monospace; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
article.lp-article h1 {
  font-family: "Geist", sans-serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1;
  letter-spacing: -.025em; margin: 0 0 18px;
}
article.lp-article h1 em {
  font-family: "Inter", "Geist", sans-serif; font-style: italic;
  color: var(--sage); font-weight: 500;
}
article.lp-article .lead {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  margin: 0 0 36px; max-width: 60ch;
}

/* Table */
.lp-content table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 14.5px; border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden;
}
.lp-content th, .lp-content td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line);
}
.lp-content th {
  background: var(--highlight); font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
}
.lp-content tr:last-child td { border-bottom: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Case study figures — full-width screenshot + caption */
.case-figure { margin: 32px 0; }
.case-figure img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px -40px rgba(21,20,15,.25);
}
.case-figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
}
.case-figure figcaption em {
  font-family: "Inter", "Geist", sans-serif; font-style: italic; color: var(--sage);
}
.lp-content blockquote { font-size: 20px; }
