:root {
  --blush: #f7e8e2;
  --peach: #f3cfc4;
  --coral: #e8957a;
  --coral-deep: #c96f55;
  --mint: #c8e6d9;
  --mint-deep: #6fad97;
  --lavender: #e8d5f2;
  --cream: #fff8f3;
  --ink: #3d2f2a;
  --ink-soft: #6b564e;
  --line: rgba(61, 47, 42, 0.08);
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(201, 111, 85, 0.12);
  --shadow-soft: 0 6px 18px rgba(61, 47, 42, 0.06);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 213, 242, 0.55), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(200, 230, 217, 0.5), transparent 38%),
    linear-gradient(180deg, var(--cream) 0%, #fff5ef 48%, var(--blush) 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 243, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
}

.brand__mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, var(--peach), var(--mint));
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--card);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
}

.nav-menu a[aria-current="page"],
.nav-menu a:hover {
  color: var(--coral-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--coral), #f0a58d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 149, 122, 0.35);
}

.btn--primary:hover {
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn--mint {
  background: linear-gradient(135deg, var(--mint), #b7dfcf);
  color: var(--ink);
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(247, 232, 226, 0.85));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  font-size: 1.05rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-grid a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-hero {
  padding: 3.25rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.lede {
  font-size: 1.08rem;
  max-width: 58ch;
}

.section {
  padding: 2.75rem 0;
}

.section__head {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(201, 111, 85, 0.16);
}

.card__media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card__body h3 {
  font-size: 1.2rem;
}

.pill {
  display: inline-block;
  background: var(--lavender);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.pill--mint {
  background: var(--mint);
}

.pill--peach {
  background: var(--peach);
}

.soft-panel {
  background: rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) + 0.35rem);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.home-brand {
  padding: 2.5rem 0 1rem;
}

.home-brand__frame {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  min-height: min(72vh, 640px);
}

.home-brand__copy {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(247, 232, 226, 0.85));
  border-radius: calc(var(--radius) + 0.5rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise 0.8s ease both;
}

.home-brand__name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.home-brand__line {
  font-size: 1.15rem;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.home-brand__visual {
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  animation: float-in 1s ease 0.15s both;
}

.home-brand__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.proof-item {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--coral-deep);
}

.story-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.story-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--mint);
}

.quote--lav {
  border-left-color: var(--lavender);
}

.quote--peach {
  border-left-color: var(--peach);
}

.quote footer {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  background: linear-gradient(165deg, #fff, var(--lavender));
  transform: translateY(-8px);
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0.4rem 0 0.8rem;
}

.price-card ul {
  margin: 0 0 1.4rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.faq details {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  margin-bottom: 0.7rem;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 2rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose th {
  background: var(--blush);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(61, 47, 42, 0.12);
  border-radius: 0.9rem;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field__error {
  color: #b4453a;
  font-size: 0.88rem;
  min-height: 1.1em;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 700;
}

.form-status--success {
  color: #2f7a5d;
}

.form-status--error {
  color: #b4453a;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.modules {
  display: grid;
  gap: 0.85rem;
}

.module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.module__n {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--peach);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.inline-error {
  background: #ffe3de;
  color: #8a2f24;
  padding: 0.75rem 1rem;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  animation: rise 0.45s ease both;
}

.cookie-banner__inner {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(232, 149, 122, 0.25);
}

.cookie-banner__text {
  flex: 1;
  margin: 0;
  min-width: 220px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.55rem;
}

.illu-blob {
  width: 120px;
  height: 120px;
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, var(--mint), var(--lavender));
  animation: blob 8s ease-in-out infinite;
}

.not-found {
  text-align: center;
  padding: 5rem 0 3rem;
}

.not-found h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--coral);
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.case-study {
  display: grid;
  gap: 1rem;
}

.case-study article {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  }
  50% {
    border-radius: 58% 42% 45% 55% / 42% 58% 42% 58%;
  }
}

@media (max-width: 900px) {
  .home-brand__frame,
  .story-split,
  .contact-layout,
  .footer-grid,
  .card-grid,
  .pricing-grid,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    right: 1rem;
    top: 4.2rem;
    background: rgba(255, 255, 255, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 210px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
  }
}
