/* Guidera — design system */
:root {
  --forest: #0F4C3A;
  --terra: #C8553D;
  --cream: #FAF7F2;
  --sand: #EAE3D4;
  --ink: #1A1814;
  --ink-soft: rgba(26, 24, 20, 0.7);
  --ink-line: rgba(26, 24, 20, 0.10);
  --shadow-soft: 0 12px 32px rgba(26, 24, 20, 0.08), 0 2px 8px rgba(26, 24, 20, 0.04);
  --shadow-hover: 0 20px 48px rgba(26, 24, 20, 0.12), 0 8px 16px rgba(26, 24, 20, 0.06);
  --shadow-terra: 0 10px 24px rgba(200, 85, 61, 0.30);
  --shadow-terra-hover: 0 16px 32px rgba(200, 85, 61, 0.40);
  --display: "Instrument Serif", ui-serif, Georgia, serif;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

::selection { background: var(--forest); color: var(--cream); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--ink-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.logo-text { font-family: var(--display); font-size: 24px; }
.nav { display: none; gap: 32px; align-items: center; }
.nav a {
  font-size: 14px; color: rgba(26, 24, 20, 0.75);
  position: relative; transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 1px; width: 100%; background: currentColor;
  transform: scaleX(0); transform-origin: bottom right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1); transform-origin: bottom left;
}
.nav-cta { display: none; }
.menu-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(26, 24, 20, 0.05);
  display: flex; align-items: center; justify-content: center;
}
.menu-btn svg { width: 20px; height: 20px; }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--ink-line);
  background: var(--cream);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 4px;
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
}
.mobile-menu a {
  padding: 10px 12px; border-radius: 8px;
  color: rgba(26, 24, 20, 0.8); font-size: 16px;
  transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--sand); color: var(--ink);
}
.mobile-menu .cta-wrap { padding-top: 12px; }

@media (min-width: 768px) {
  .nav { display: flex; }
  .nav-cta { display: block; }
  .menu-btn { display: none; }
}

/* Buttons */
.btn-app {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-app:hover { transform: translateY(-4px); }
.btn-app svg { width: 28px; height: 28px; }
.btn-app .btn-stack { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.btn-app .btn-small { font-size: 11px; opacity: 0.9; }
.btn-app .btn-big { margin-top: 4px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.btn-terra { background: var(--terra); color: var(--cream); box-shadow: var(--shadow-terra); }
.btn-terra:hover { box-shadow: var(--shadow-terra-hover); }
.btn-ink { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-soft); padding: 10px 20px; }
.btn-ink:hover { box-shadow: var(--shadow-hover); }
.btn-ink .btn-big { font-size: 16px; }
.btn-ink svg { width: 24px; height: 24px; }

.story-link {
  position: relative; display: inline-block;
}
.story-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 1px; width: 100%; background: currentColor;
  transform: scaleX(0); transform-origin: bottom right;
  transition: transform 0.3s var(--ease);
}
.story-link:hover::after { transform: scaleX(1); transform-origin: bottom left; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.float { animation: float 6s ease-in-out infinite; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 1s var(--ease) forwards; }
.fade-up-delay { opacity: 0; animation: fade-up 1s var(--ease) 0.2s forwards; }

@media (prefers-reduced-motion: reduce) {
  .float, .fade-up, .fade-up-delay { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--forest); color: var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,85,61,0.18) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(250,247,242,0.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  text-align: center;
}
.hero-text { flex: 1; }
.hero-art { flex: 1; display: flex; justify-content: center; }
.hero-art img { max-width: 420px; width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45)); }
@media (min-width: 768px) {
  .hero-inner { flex-direction: row; gap: 64px; padding: 128px 24px; text-align: left; }
}

.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 9999px;
  border: 1px solid rgba(250, 247, 242, 0.2);
  background: rgba(250, 247, 242, 0.1);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.eyebrow-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
}

.hero h1 {
  margin-top: 24px; font-size: 56px; line-height: 0.95; letter-spacing: -0.01em;
}
.hero h1 i { color: var(--sand); }
.hero p { margin-top: 24px; max-width: 560px; font-size: 18px; color: rgba(250, 247, 242, 0.85); }
.hero-ctas {
  margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.hero-secondary {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px;
  color: rgba(250, 247, 242, 0.85); transition: color 0.2s;
}
.hero-secondary:hover { color: var(--cream); }
.hero-secondary svg { width: 16px; height: 16px; transition: transform 0.2s; }
.hero-secondary:hover svg { transform: translateX(4px); }
.hero-rating {
  margin-top: 32px; display: flex; align-items: center; gap: 12px; justify-content: center;
  font-size: 14px; color: rgba(250, 247, 242, 0.7);
}
.hero-rating .stars { display: flex; gap: 2px; color: var(--terra); }
.hero-rating svg { width: 16px; height: 16px; fill: currentColor; }
@media (min-width: 768px) {
  .hero h1 { font-size: 88px; }
  .hero p { font-size: 20px; margin-left: 0; margin-right: 0; }
  .hero-ctas { flex-direction: row; justify-content: flex-start; }
  .hero-rating { justify-content: flex-start; }
  .hero p { margin-left: 0; }
}

/* Generic page hero */
.page-hero {
  background: var(--forest); color: var(--cream);
  padding: 96px 24px;
  text-align: center;
}
.page-hero .container-md { padding: 0; }
.page-hero h1 {
  margin-top: 16px; font-size: 56px; line-height: 0.95;
}
.page-hero h1 i { color: var(--sand); }
.page-hero p { margin: 24px auto 0; max-width: 640px; font-size: 18px; color: rgba(250, 247, 242, 0.8); }
@media (min-width: 768px) {
  .page-hero { padding: 128px 24px; }
  .page-hero h1 { font-size: 88px; }
}

/* Trust strip */
.trust {
  border-top: 1px solid rgba(26, 24, 20, 0.05);
  border-bottom: 1px solid rgba(26, 24, 20, 0.05);
  background: var(--cream);
  padding: 32px 24px;
  text-align: center;
}
.trust p {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* Sections */
.section { padding: 112px 24px; }
.section-sand { background: rgba(234, 227, 212, 0.6); }
.section-sand-solid { background: var(--sand); }
.section-forest { background: var(--forest); color: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: 40px; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }
.section-forest .section-head p { color: rgba(250, 247, 242, 0.75); }
@media (min-width: 768px) {
  .section-head h2 { font-size: 56px; }
}

/* Feature cards */
.feature-grid {
  margin-top: 64px;
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  height: 100%; padding: 32px; border-radius: 24px;
  background: white; box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card.f-forest .feature-icon { color: var(--forest); }
.feature-card.f-forest:hover .feature-icon { background: var(--forest); color: var(--cream); }
.feature-card.f-terra .feature-icon { color: var(--terra); }
.feature-card.f-terra:hover .feature-icon { background: var(--terra); color: var(--cream); }
.feature-card h3 { margin-top: 24px; font-size: 24px; }
.feature-card p { margin-top: 12px; color: var(--ink-soft); }

/* Steps */
.steps {
  margin-top: 64px;
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step-img {
  margin: 0 auto;
  height: 360px; max-width: 240px;
  display: flex; align-items: center; justify-content: center;
}
.step-img img { max-height: 100%; width: auto; filter: drop-shadow(0 20px 40px rgba(26,24,20,0.18)); }
.step-num { margin-top: 8px; font-family: var(--display); font-size: 30px; color: var(--terra); }
.step h3 { margin-top: 8px; font-size: 24px; }
.step p { margin-top: 12px; color: var(--ink-soft); }

/* Cities rail */
.cities-rail {
  overflow-x: auto; padding: 0 24px 16px;
  display: flex; gap: 12px;
  scrollbar-width: none;
}
.cities-rail::-webkit-scrollbar { display: none; }
.city-chip {
  flex-shrink: 0;
  padding: 12px 20px; border-radius: 9999px;
  border: 1px solid var(--ink-line); background: white;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-soft);
}
.cities-head {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; justify-content: space-between;
  margin: 0 auto 40px; max-width: 1200px; padding: 0 24px;
}
@media (min-width: 768px) {
  .cities-head { flex-direction: row; align-items: flex-end; }
}
.cities-head h2 { margin-top: 12px; font-size: 40px; }
@media (min-width: 768px) { .cities-head h2 { font-size: 56px; } }

/* Testimonials */
.testimonials {
  margin-top: 64px;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  height: 100%; padding: 32px; border-radius: 24px;
  background: rgba(250, 247, 242, 0.06);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
}
.testimonial .quote-icon { width: 28px; height: 28px; color: var(--terra); }
.testimonial blockquote {
  margin-top: 20px; flex: 1;
  font-size: 18px; line-height: 1.6;
  color: rgba(250, 247, 242, 0.95);
}
.testimonial figcaption {
  margin-top: 24px; display: flex; align-items: center; gap: 12px; font-size: 14px;
}
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--terra); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.testimonial .name { display: block; font-weight: 500; }
.testimonial .meta { display: block; color: rgba(250, 247, 242, 0.55); }

/* FAQ accordion */
.faq-list {
  margin-top: 48px;
  background: white; border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-list details { padding: 24px; border-top: 1px solid var(--ink-line); }
.faq-list details:first-child { border-top: none; }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 18px; font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus {
  color: var(--terra); font-size: 24px; line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary .plus { transform: rotate(45deg); }
.faq-list details p { margin-top: 12px; color: var(--ink-soft); }
.faq-cta { margin-top: 32px; text-align: center; font-size: 14px; font-weight: 500; }

/* FAQ groups (full faq page) */
.faq-groups { display: flex; flex-direction: column; gap: 56px; }
.faq-group h2 { font-size: 24px; color: var(--forest); }
@media (min-width: 768px) { .faq-group h2 { font-size: 30px; } }
.faq-group .faq-list { margin-top: 24px; }

/* Final CTA */
.cta-strip { padding: 96px 24px; text-align: center; }
.cta-strip h2 { font-size: 40px; }
.cta-strip p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }
.cta-strip .cta-buttons { margin-top: 36px; display: flex; justify-content: center; }
@media (min-width: 768px) { .cta-strip h2 { font-size: 56px; } }

/* Features deep-dive */
.deep-feature {
  display: grid; gap: 64px;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 768px) { .deep-feature { grid-template-columns: 1fr 1fr; } }
.deep-feature.reverse > div:first-child { order: 0; }
@media (min-width: 768px) {
  .deep-feature.reverse > div:first-child { order: 2; }
}
.deep-feature h2 { margin-top: 12px; font-size: 36px; }
@media (min-width: 768px) { .deep-feature h2 { font-size: 48px; } }
.deep-feature p { margin-top: 20px; font-size: 18px; color: var(--ink-soft); }
.deep-feature-img-wrap {
  display: flex; justify-content: center;
  background: rgba(234, 227, 212, 0.6);
  border-radius: 40px; padding: 32px;
}
.deep-feature-img-wrap img {
  max-height: 440px; width: auto;
  filter: drop-shadow(0 20px 40px rgba(26,24,20,0.18));
}
.deep-features { display: flex; flex-direction: column; gap: 128px; }

/* Compare table */
.compare {
  margin-top: 48px;
  background: white; border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(26, 24, 20, 0.05);
  font-size: 14px;
}
.compare-row:first-child {
  border-top: none;
  border-bottom: 1px solid var(--ink-line);
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.compare-row.head .col-us { color: var(--forest); text-align: center; }
.compare-row.head .col-them { text-align: center; }
.compare-row .col-us, .compare-row .col-them {
  display: flex; justify-content: center; color: var(--ink-soft);
}
.compare-row .col-us svg.check { color: var(--forest); }
.compare-row .col-them svg.check { color: rgba(26, 24, 20, 0.4); }
.compare-row svg { width: 20px; height: 20px; }
.compare-row .x { color: rgba(26, 24, 20, 0.3); }

/* How it works steps (full page) */
.how-steps { display: flex; flex-direction: column; gap: 96px; }
.how-step {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .how-step { grid-template-columns: 200px 1fr 320px; }
  .how-step.reverse > div:last-child { order: -1; }
}
.how-step .num { font-family: var(--display); font-size: 72px; color: var(--terra); }
.how-step h2 { font-size: 30px; }
@media (min-width: 768px) { .how-step h2 { font-size: 36px; } }
.how-step p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }
.how-step .img-wrap {
  display: flex; justify-content: center;
  background: rgba(234, 227, 212, 0.6);
  border-radius: 32px; padding: 24px;
}
.how-step .img-wrap img {
  max-height: 320px; width: auto;
  filter: drop-shadow(0 20px 40px rgba(26,24,20,0.18));
}

/* Cities (full page) */
.region-block + .region-block { margin-top: 64px; }
.region-block h2 { font-size: 30px; }
@media (min-width: 768px) { .region-block h2 { font-size: 36px; } }
.region-chips { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.region-chip {
  padding: 10px 20px; border-radius: 9999px;
  border: 1px solid var(--ink-line); background: white;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, border-color 0.2s;
}
.region-chip:hover { transform: translateY(-2px); border-color: rgba(15, 76, 58, 0.3); }
.cities-tail {
  margin-top: 80px; padding: 40px;
  background: rgba(234, 227, 212, 0.6); border-radius: 24px;
  text-align: center;
}
.cities-tail h3 { font-size: 24px; }
@media (min-width: 768px) { .cities-tail h3 { font-size: 30px; } }
.cities-tail p { margin-top: 12px; color: var(--ink-soft); }

/* About */
.about-hero {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .about-hero { grid-template-columns: 1fr 1fr; } }
.about-hero img { max-width: 340px; width: 100%; }
.about-hero h1 { font-size: 56px; line-height: 0.95; margin-top: 16px; }
.about-hero h1 i { color: var(--sand); }
.about-hero p { margin-top: 24px; font-size: 18px; color: rgba(250, 247, 242, 0.8); max-width: 560px; }
@media (min-width: 768px) { .about-hero h1 { font-size: 88px; } }
.about-body { display: flex; flex-direction: column; gap: 48px; }
.about-body h2 { font-size: 30px; }
@media (min-width: 768px) { .about-body h2 { font-size: 36px; } }
.about-body p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); line-height: 1.7; }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: 64px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer .logo-mark { background: var(--cream); color: var(--ink); }
.footer-tagline { margin-top: 16px; max-width: 360px; font-size: 14px; color: rgba(250, 247, 242, 0.65); }
.footer h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.footer ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(250, 247, 242, 0.75); }
.footer ul a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 12px; color: rgba(250, 247, 242, 0.45);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* 404 */
.notfound {
  display: flex; align-items: center; justify-content: center;
  padding: 96px 24px; text-align: center;
}
.notfound .big { font-family: var(--display); font-size: 112px; color: var(--forest); }
.notfound h1 { margin-top: 16px; font-size: 30px; }
.notfound p { margin-top: 12px; color: var(--ink-soft); }
.notfound a {
  display: inline-flex; margin-top: 32px; padding: 12px 24px;
  border-radius: 16px; background: var(--forest); color: var(--cream);
  font-size: 14px; font-weight: 500;
  transition: transform 0.2s;
}
.notfound a:hover { transform: translateY(-2px); }
