:root {
  --bg: #f3f0e7;
  --bg-card: #ffffff;
  --bg-mint: #b8efdb;
  --bg-mint-strong: #9de5d1;
  --bg-purple: #d5b8f0;
  --bg-purple-strong: #c19be8;
  --bg-yellow: #e8f060;

  --text: #0e0e10;
  --text-muted: #5a5a5a;
  --text-dim: #8a8a8a;
  --text-on-color: #0e0e10;

  --accent: #a855e0;
  --accent-hover: #b667e8;
  --accent-mint: #4dc9aa;

  --border: #0e0e10;
  --border-thin: rgba(14, 14, 16, 0.12);

  --radius: 18px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --max-width: 1200px;
  --narrow-width: 880px;

  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Unbounded', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--text); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--narrow-width); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 231, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s ease, transform .08s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-ghost:hover {
  background: var(--text);
  color: #ffffff;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform .2s ease;
  font-weight: 500;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* Hero */
.hero {
  padding: 12px 0 0;
}
.hero-block {
  background: var(--bg-mint);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero-content { min-width: 0; }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--text);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-mint-strong);
}

.bubble-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.bubble {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(26px, 3.6vw, 44px);
  padding: 18px 24px;
  background: #ffffff;
  border-radius: 28px;
  position: relative;
  max-width: 100%;
}
.bubble-purple {
  background: var(--bg-purple);
  transform: rotate(-1.5deg);
}
.bubble-mint {
  background: #ffffff;
}
.bubble-tail {
  position: relative;
}
.bubble-tail::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 32px;
  width: 22px;
  height: 22px;
  background: inherit;
  border-radius: 0 0 8px 0;
  transform: rotate(45deg);
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin: 24px 0 12px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-meta {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 2px solid var(--border);
  display: block;
}
.hero-photo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-photo-tag {
  position: absolute;
  background: var(--bg-purple);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 160px;
}
.hero-photo-tag.tag-1 {
  bottom: 14px;
  right: -22px;
  background: #ffffff;
  transform: rotate(-2deg);
}
.hero-photo-tag.tag-2 {
  top: 6%;
  left: -22px;
  background: var(--bg-purple);
  transform: rotate(-2deg);
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 80px 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  text-wrap: pretty;
  color: var(--text);
  hyphens: none;
}
.section-title.center { text-align: center; }
.section-title.small {
  font-size: clamp(24px, 3vw, 36px);
}

/* Prose */
.prose p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: var(--text);
}
.prose p:last-child { margin-bottom: 0; }
.prose strong {
  font-weight: 700;
}
.prose .accent-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 28px 0 0;
  padding: 24px 28px;
  background: var(--bg-mint);
  border-radius: 20px;
  display: inline-block;
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1;
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--text);
}
.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.note-center {
  text-align: center;
  margin: 48px auto 0;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  padding: 18px 28px;
  background: var(--bg-purple);
  border-radius: var(--radius-pill);
}
.note-wrap { text-align: center; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid var(--border);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 4 / 3;
}
.gallery figure:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 3 / 4;
}
.gallery figure:nth-child(3) {
  grid-column: span 12;
  aspect-ratio: 21 / 9;
}
.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: #ffffff;
  border: 2px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px 28px;
  margin: 0;
}
.testimonial:nth-child(1) { background: var(--bg-mint); }
.testimonial:nth-child(2) { background: #ffffff; }
.testimonial:nth-child(3) { background: var(--bg-purple); }
.testimonial p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}
.testimonial footer {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* About host */
.about-host {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.host-photo-wrap {
  position: relative;
  background: var(--bg-mint);
  border-radius: 50%;
  padding: 14px;
  border: 2px solid var(--border);
}
.host-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.about-host-text .section-title { margin: 0 0 8px; }
.about-host-text .role {
  display: inline-block;
  margin: 0 0 24px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.about-host-text p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}

/* CTA section */
.section-cta {
  padding: 80px 0 100px;
}
.cta-block {
  background: var(--bg-purple);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.cta-block .section-eyebrow { color: var(--text); }
.cta-block .section-title { margin-bottom: 16px; }
.cta-sub {
  font-size: 17px;
  color: var(--text);
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 520px;
}

/* Form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  max-width: 540px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-dim);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--text);
  background: #ffffff;
}
.consent {
  font-size: 12px;
  color: var(--text-muted);
  margin: 8px 0 0;
  text-align: center;
  line-height: 1.5;
}
.consent a {
  color: var(--text);
  text-decoration: underline;
}
.form-error {
  margin: 4px 0 0;
  padding: 12px 16px;
  background: #ffe4e4;
  border: 2px solid #f87171;
  border-radius: 12px;
  color: #b91c1c;
  font-size: 14px;
}
.form-success {
  text-align: center;
  padding: 32px 28px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 24px;
  max-width: 540px;
}
.form-success p {
  margin: 0 0 20px;
  font-size: 17px;
  color: var(--text);
  line-height: 1.55;
}

#submit-btn[aria-busy="true"] {
  opacity: 0.7;
  cursor: wait;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 36px;
  font-size: 14px;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 15px;
}
.footer-meta { color: rgba(255, 255, 255, 0.55); }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover { color: #ffffff; }

/* Mobile */
@media (max-width: 900px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-alt { margin: 0 16px; padding: 56px 0; }
  .section-title { margin-bottom: 28px; }

  .hero { padding: 8px 0 0; }
  .hero-block {
    display: flex;
    flex-direction: column-reverse;
    padding: 20px;
    gap: 22px;
    border-radius: 24px;
  }
  .hero-photo-wrap { aspect-ratio: 4 / 3; }
  .hero-eyebrow { margin-bottom: 18px; }
  .bubble {
    font-size: clamp(20px, 5.4vw, 28px);
    padding: 12px 18px;
    border-radius: 20px;
  }
  .hero-sub { font-size: 16px; margin: 18px 0 10px; }
  .hero-meta { font-size: 14px; margin-bottom: 22px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-photo-tag {
    font-size: 12px;
    padding: 8px 12px;
    max-width: 60%;
  }
  .hero-photo-tag.tag-1 {
    right: 12px;
    bottom: 12px;
    transform: rotate(-2deg);
  }
  .hero-photo-tag.tag-2 {
    left: 12px;
    top: 12px;
    transform: rotate(-2deg);
  }
  .hero-photo-badge {
    top: 14px;
    right: 14px;
    font-size: 11px;
    padding: 6px 12px;
    max-width: 65%;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .cards-3 { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 24px 22px; }

  .gallery { grid-template-columns: 1fr; }
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .testimonials { grid-template-columns: 1fr; }

  .about-host { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .host-photo-wrap { width: 240px; margin: 0 auto; }
  .role { margin-bottom: 16px; }

  .cta-block { padding: 40px 24px; border-radius: 28px; }
  .lead-form { padding: 22px; }

  .footer-inner { flex-direction: column; }
  .section-cta { padding: 56px 0; }
}
