:root {
  --bg: #f9f1ea;
  --bg-2: #f7e9dc;
  --panel: #f4e6d8;
  --panel-strong: #ead7c2;
  --line: #e2cfbd;
  --ink: #050505;
  --soft-ink: #44403b;
  --muted: #69655f;
  --green: #98f5c3;
  --yellow: #ffe08f;
  --coral: #fc7051;
  --violet: #9e78ff;
  --max: 1060px;
  --section-y: 72px;
  --section-y-tight: 60px;
}

@media (max-width: 900px) {
  :root {
    --section-y: 64px;
    --section-y-tight: 52px;
  }
}

@media (max-width: 620px) {
  :root {
    --section-y: 56px;
    --section-y-tight: 44px;
  }
}

* {
  box-sizing: border-box;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.article-nav {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 22px 0 18px;
}

.brand-logo {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--coral);
}

.breadcrumbs {
  display: flex;
  margin: 0 0 20px;
  color: #6e665f;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs li + li::before {
  color: #a49b92;
  content: "/";
}

.breadcrumbs a {
  color: #433d38;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--coral);
}

.breadcrumbs [aria-current="page"] {
  color: #7d746c;
}

.articles-home {
  padding: 72px 0 88px;
}

.articles-home h1 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.articles-home h1 {
  font-size: clamp(40px, 5vw, 58px);
}

.articles-layout {
  display: grid;
  grid-template-columns: 0.93fr 1.2fr;
  gap: 42px;
  align-items: start;
  margin-top: 32px;
}

.about-articles {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.22);
}

.about-articles h2,
.top-stories h2 {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-articles > p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.top-stories {
  margin-top: 38px;
}

.top-story {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.18);
}

.top-story + .top-story {
  margin-top: 14px;
}

.top-story-thumb,
.article-thumb,
.post-hero {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 224, 143, 0.75),
      transparent 26%
    ),
    radial-gradient(
      circle at 72% 40%,
      rgba(252, 112, 81, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #f6e5d8, #e5c3a6);
}

.top-story-thumb {
  width: 76px;
  height: 76px;
}

.top-story h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.content-type {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.top-story a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 16px;
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-link {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
}

.article-thumb {
  min-height: 150px;
  border-radius: 0;
}

img.article-thumb {
  min-height: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}

img.top-story-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.article-thumb.green,
.top-story-thumb.green {
  background:
    radial-gradient(
      circle at 28% 22%,
      rgba(152, 245, 195, 0.42),
      transparent 32%
    ),
    linear-gradient(135deg, #f5eadf, #d8e1c7);
}

.article-thumb.violet {
  background: linear-gradient(135deg, #73a6ff, #eb55e7 58%, #ffd5a2);
}

.article-thumb.coral {
  background: linear-gradient(135deg, #d77b9a, #ffe0a6);
}

.article-thumb.photo {
  background-image: linear-gradient(135deg, var(--ink), #2d2460);
}

.article-link h3 {
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.article-summary {
  margin: 0 0 10px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.4;
}

.article-link time,
.post-date {
  color: var(--muted);
  font-size: 14px;
}

.post-shell {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.post-title {
  max-width: 620px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.post-date {
  display: block;
  margin-top: 6px;
}

.post-hero {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 420;
  margin: 30px 0 36px;
  border-radius: 10px;
  object-fit: cover;
}

.post-content h2 {
  margin: 36px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.post-content p,
.post-content li {
  color: #080808;
  font-size: 16px;
  line-height: 1.46;
}

.post-content img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 32px 0;
  border-radius: 10px;
  object-fit: cover;
}

.post-content ul {
  margin: 0 0 24px;
  padding-left: 18px;
}

.post-content li + li {
  margin-top: 18px;
}

.success-story-shell {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.success-title {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 26px;
}

.success-metric {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.success-metric strong {
  display: block;
  margin-bottom: 11px;
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.success-metric span,
.success-intro p,
.success-content p,
.success-content li {
  color: #080808;
  font-size: 16px;
  line-height: 1.45;
}

.success-intro p {
  margin: 0 0 22px;
}

.customer-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0 38px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customer-facts dt {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.customer-facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.success-story-image {
  width: min(900px, 100vw - 40px);
  max-width: none;
  height: auto;
  margin: 0 0 48px 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.success-content h2 {
  margin: 38px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.success-content h3 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.success-content p {
  margin: 0 0 22px;
}

.success-content ul {
  margin: 28px 0 26px;
  padding-left: 21px;
}

.success-content li + li {
  margin-top: 8px;
}

.service-shell {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.florist-kicker {
  background:
    linear-gradient(90deg, rgba(255, 224, 143, 0.34), rgba(245, 175, 152, 0.3)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.planner-kicker {
  background:
    linear-gradient(90deg, rgba(245, 175, 152, 0.32), rgba(244, 204, 186, 0.42)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.photographer-kicker {
  background:
    linear-gradient(90deg, rgba(200, 225, 183, 0.42), rgba(255, 224, 143, 0.28)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.caterer-kicker {
  background:
    linear-gradient(90deg, rgba(255, 215, 181, 0.42), rgba(230, 202, 228, 0.38)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.dj-kicker {
  background:
    linear-gradient(90deg, rgba(255, 224, 143, 0.4), rgba(200, 225, 183, 0.36)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.venue-kicker {
  background:
    linear-gradient(90deg, rgba(230, 202, 228, 0.42), rgba(200, 225, 183, 0.36)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.custom-kicker {
  background:
    linear-gradient(90deg, rgba(152, 245, 195, 0.36), rgba(255, 224, 143, 0.42)),
    rgba(247, 233, 220, 0.86);
  box-shadow: inset 0 0 0 1px rgba(231, 214, 200, 0.45);
}

.service-title {
  max-width: 760px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.service-intro {
  display: grid;
  gap: 18px;
  margin: 28px 0 30px;
}

.service-intro p,
.service-content p,
.service-content li {
  margin: 0;
  color: #080808;
  font-size: 16px;
  line-height: 1.48;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-metrics .success-metric {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 224, 143, 0.5),
      transparent 28%
    ),
    rgba(249, 241, 234, 0.42);
}

.service-metrics .success-metric:nth-child(2) {
  background:
    radial-gradient(
      circle at 76% 16%,
      rgba(152, 245, 195, 0.38),
      transparent 30%
    ),
    rgba(249, 241, 234, 0.42);
}

.service-metrics .success-metric:nth-child(3) {
  background:
    radial-gradient(
      circle at 80% 14%,
      rgba(252, 112, 81, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(158, 120, 255, 0.18),
      transparent 26%
    ),
    rgba(249, 241, 234, 0.42);
}

.service-metrics .success-metric:nth-child(4) {
  background:
    radial-gradient(
      circle at 80% 14%,
      rgba(158, 120, 255, 0.22),
      transparent 28%
    ),
    rgba(249, 241, 234, 0.42);
}

.service-metrics .success-metric strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-mockup {
  width: min(1040px, 100vw - 40px);
  margin: 0 0 56px 50%;
  transform: translateX(-50%);
}

.service-mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-ui {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 54px));
}

.service-ui span,
.service-ui small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-ui b,
.service-ui strong {
  display: block;
  letter-spacing: -0.01em;
}

.service-ui-website {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  grid-template-areas:
    "site phone"
    "site checkout";
  gap: 16px;
  align-items: end;
}

.ui-browser,
.checkout-panel,
.seo-search-card,
.seo-dashboard-card,
.content-plan-card,
.crm-window,
.automation-flow {
  border: 1px solid rgba(226, 207, 189, 0.95);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 26px 80px rgba(76, 55, 36, 0.11);
}

.ui-browser {
  grid-area: site;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.92);
}

.venue-site-preview {
  min-height: 322px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.18) 0%, rgba(20, 18, 15, 0.18) 44%, rgba(20, 18, 15, 0.72) 100%),
    url("../optimized/venue.webp") center/cover;
  color: #fff;
}

.venue-nav {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(24, 20, 17, 0.2);
  backdrop-filter: blur(12px);
}

.venue-nav b {
  font-family: "Instrument Serif", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.venue-nav span {
  color: rgba(255, 255, 255, 0.72);
}

.venue-hero {
  display: grid;
  align-content: end;
  min-height: 212px;
  padding: 26px 28px 30px;
}

.venue-hero small {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.venue-hero b {
  max-width: 430px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(42px, 5.2vw, 62px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.venue-hero em {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  margin-top: 18px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.venue-site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.venue-site-footer > div {
  min-height: 56px;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.venue-site-footer > div:last-child {
  border-right: 0;
}

.venue-site-footer strong {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.2;
}

.venue-phone {
  grid-area: phone;
  align-self: start;
  padding: 10px;
  border: 1px solid rgba(226, 207, 189, 0.95);
  border-radius: 26px;
  background: #10100f;
  box-shadow: 0 24px 60px rgba(76, 55, 36, 0.16);
}

.phone-speaker {
  width: 42px;
  height: 4px;
  margin: 4px auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.phone-hero {
  display: grid;
  align-content: end;
  min-height: 162px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.64)),
    url("../optimized/venue.webp") center/cover;
  color: #fff;
}

.phone-hero b {
  margin-top: 48px;
  font-size: 16px;
  line-height: 1;
}

.phone-card {
  margin: 10px 0;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
}

.phone-card strong {
  margin-top: 6px;
  color: #111;
  font-size: 13px;
}

.venue-phone button {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.checkout-panel {
  grid-area: checkout;
  padding: 18px;
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(97, 224, 183, 0.28),
      transparent 34%
    ),
    linear-gradient(145deg, #fffdf9, #f7efe8);
}

.checkout-panel > b {
  margin: 10px 0 16px;
  font-size: 16px;
  line-height: 1.05;
}

.stripe-card {
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.11), rgba(0, 212, 255, 0.08)),
    #fff;
}

.stripe-card strong {
  margin-top: 8px;
  color: #171717;
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
  line-height: 1.2;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.checkout-row strong {
  font-size: 14px;
}

.checkout-panel button {
  width: 100%;
  min-height: 38px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.service-ui-seo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.seo-search-card,
.seo-dashboard-card,
.content-plan-card {
  padding: 22px;
}

.seo-search-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(255, 224, 143, 0.48),
      transparent 34%
    ),
    rgba(255, 252, 247, 0.9);
}

.seo-search-card > b {
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.map-pack {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.map-pack strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.seo-dashboard-card {
  display: grid;
  align-content: space-between;
  min-height: 310px;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(152, 245, 195, 0.32),
      transparent 33%
    ),
    rgba(255, 252, 247, 0.9);
}

.seo-dashboard-card strong {
  margin-top: 8px;
  font-family: "Instrument Serif", serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 116px;
  margin: 22px 0;
  padding-bottom: 2px;
}

.bar-chart i {
  flex: 1;
  min-width: 22px;
  background: #000;
}

.bar-chart i:nth-child(1) {
  height: 32%;
  opacity: 0.28;
}

.bar-chart i:nth-child(2) {
  height: 48%;
  opacity: 0.4;
}

.bar-chart i:nth-child(3) {
  height: 56%;
  opacity: 0.52;
}

.bar-chart i:nth-child(4) {
  height: 72%;
  opacity: 0.68;
}

.bar-chart i:nth-child(5) {
  height: 100%;
}

.keyword-list {
  display: grid;
  gap: 7px;
}

.keyword-list small {
  display: block;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.56);
}

.content-plan-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 120px 1fr 210px;
  gap: 18px;
  align-items: center;
}

.content-plan-card b {
  font-size: 22px;
  line-height: 1.08;
}

.content-plan-card small {
  text-transform: none;
}

.service-ui-crm {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(270px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.service-ui-payments {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.service-ui-security {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: 18px;
  align-items: stretch;
}

.service-ui-ai {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.76fr);
  gap: 18px;
  align-items: stretch;
}

.service-ui-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.booking-calendar,
.payment-panel,
.confirmation-strip,
.security-dashboard,
.support-panel,
.ai-assistant-panel,
.ai-rules-panel,
.ai-output-strip {
  border: 1px solid rgba(226, 207, 189, 0.95);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 26px 80px rgba(76, 55, 36, 0.11);
}

.florist-concept {
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 224, 143, 0.28),
      transparent 28%
    ),
    radial-gradient(
      circle at 74% 18%,
      rgba(245, 175, 152, 0.22),
      transparent 30%
    ),
    rgba(249, 241, 234, 0.42);
}

.planner-concept {
  background:
    radial-gradient(circle at 18% 22%, rgba(245, 175, 152, 0.24), transparent 28%),
    radial-gradient(circle at 74% 18%, rgba(255, 224, 143, 0.22), transparent 30%),
    rgba(249, 241, 234, 0.42);
}

.photographer-concept {
  background:
    radial-gradient(circle at 20% 18%, rgba(200, 225, 183, 0.32), transparent 30%),
    radial-gradient(circle at 78% 24%, rgba(255, 224, 143, 0.2), transparent 32%),
    rgba(249, 241, 234, 0.42);
}

.caterer-concept {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 215, 181, 0.32), transparent 30%),
    radial-gradient(circle at 78% 38%, rgba(230, 202, 228, 0.24), transparent 32%),
    rgba(249, 241, 234, 0.42);
}

.dj-concept {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 224, 143, 0.28), transparent 30%),
    radial-gradient(circle at 80% 34%, rgba(200, 225, 183, 0.28), transparent 32%),
    rgba(249, 241, 234, 0.42);
}

.venue-concept {
  background:
    radial-gradient(circle at 22% 20%, rgba(230, 202, 228, 0.26), transparent 31%),
    radial-gradient(circle at 78% 36%, rgba(200, 225, 183, 0.3), transparent 32%),
    rgba(249, 241, 234, 0.42);
}

.custom-concept {
  background:
    radial-gradient(circle at 22% 18%, rgba(152, 245, 195, 0.28), transparent 31%),
    radial-gradient(circle at 78% 36%, rgba(255, 224, 143, 0.28), transparent 32%),
    rgba(249, 241, 234, 0.42);
}

.florist-portfolio,
.audience-visual,
.audience-system-card {
  border: 1px solid rgba(226, 207, 189, 0.95);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 26px 80px rgba(76, 55, 36, 0.11);
}

.florist-portfolio {
  min-height: 330px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    url("../optimized/florist.webp") center/cover;
  color: #fff;
}

.audience-visual {
  min-height: 330px;
  padding: 26px;
  color: #fff;
}

.planner-visual {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)),
    url("../optimized/planner.webp") center/cover;
}

.photographer-visual {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
    url("../optimized/photographer.webp") center/cover;
}

.caterer-visual {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("../optimized/caterer.webp") center/cover;
}

.dj-visual {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3)),
    url("../optimized/dj.webp") center/cover;
}

.venue-visual {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)),
    url("../optimized/venue.webp") center/cover;
}

.custom-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(152, 245, 195, 0.32), transparent 32%),
    radial-gradient(circle at 80% 42%, rgba(255, 224, 143, 0.38), transparent 34%),
    linear-gradient(135deg, #1c1c17, #4b3a2b);
}

.florist-portfolio span,
.florist-portfolio p,
.audience-visual span,
.audience-visual p {
  color: rgba(255, 255, 255, 0.86);
}

.florist-portfolio strong,
.audience-visual strong {
  width: min(360px, 100%);
  margin-top: 130px;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 0.93;
}

.florist-portfolio p,
.audience-visual p {
  max-width: 330px;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.audience-system-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.florist-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(217, 197, 179, 0.72);
  background: rgba(249, 241, 234, 0.5);
}

.florist-flow-row b {
  font-size: 14px;
  letter-spacing: 0;
}

.florist-flow-row small {
  text-align: right;
  text-transform: none;
}

.booking-calendar {
  min-height: 360px;
  padding: 22px;
  background:
    radial-gradient(
      circle at 28% 14%,
      rgba(255, 224, 143, 0.34),
      transparent 30%
    ),
    rgba(255, 252, 247, 0.92);
}

.calendar-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 22px;
}

.calendar-header b {
  font-family: "Instrument Serif", serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
}

.calendar-grid i {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.calendar-grid .is-held {
  background: #ffeec2;
}

.calendar-grid .is-booked {
  background: #000;
}

.payment-panel {
  padding: 22px;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(152, 245, 195, 0.34),
      transparent 30%
    ),
    rgba(255, 252, 247, 0.94);
}

.payment-panel > b {
  margin: 14px 0 34px;
  font-size: 24px;
  line-height: 1.04;
}

.payment-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.payment-line strong {
  font-size: 15px;
}

.payment-panel button {
  width: 100%;
  min-height: 40px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.confirmation-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
  background:
    radial-gradient(
      circle at 90% 50%,
      rgba(255, 224, 143, 0.32),
      transparent 26%
    ),
    rgba(255, 252, 247, 0.9);
}

.confirmation-strip b {
  font-size: 20px;
  line-height: 1.2;
}

.security-dashboard {
  min-height: 380px;
  padding: 22px;
  background:
    radial-gradient(
      circle at 76% 18%,
      rgba(152, 245, 195, 0.32),
      transparent 30%
    ),
    linear-gradient(135deg, #fffaf4, #f2e5d7);
}

.security-score {
  display: grid;
  place-items: center;
  min-height: 160px;
  margin: 22px 0;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(152, 245, 195, 0.3),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.48);
  text-align: center;
}

.security-score b {
  font-family: "Instrument Serif", serif;
  font-size: clamp(72px, 9vw, 104px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.security-checks {
  display: grid;
  gap: 10px;
}

.security-checks > div,
.support-ticket {
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.security-checks strong,
.support-ticket b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.08;
}

.support-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background:
    radial-gradient(
      circle at 16% 10%,
      rgba(255, 224, 143, 0.34),
      transparent 28%
    ),
    rgba(255, 252, 247, 0.94);
}

.support-panel > span {
  margin-bottom: 8px;
}

.support-ticket small {
  text-transform: none;
}

.ai-assistant-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 380px;
  padding: 22px;
  background:
    radial-gradient(
      circle at 78% 15%,
      rgba(255, 224, 143, 0.34),
      transparent 32%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(152, 245, 195, 0.24),
      transparent 34%
    ),
    rgba(255, 252, 247, 0.92);
}

.ai-message {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.ai-message b {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ai-message small,
.ai-rule small {
  text-transform: none;
}

.ai-draft {
  margin-left: 54px;
  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(152, 245, 195, 0.36),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.72);
}

.ai-rules-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 224, 143, 0.34),
      transparent 30%
    ),
    rgba(255, 252, 247, 0.94);
}

.ai-rule {
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.ai-rule strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.08;
}

.ai-output-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
  background:
    radial-gradient(
      circle at 88% 50%,
      rgba(152, 245, 195, 0.3),
      transparent 28%
    ),
    rgba(255, 252, 247, 0.9);
}

.ai-output-strip b {
  font-size: 20px;
  line-height: 1.2;
}

.crm-window {
  padding: 18px;
}

.crm-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-height: 290px;
  padding: 18px;
  background:
    radial-gradient(
      circle at 74% 18%,
      rgba(255, 224, 143, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, #fffaf4, #f2e5d7);
}

.crm-pipeline > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.crm-pipeline b {
  font-size: 19px;
  line-height: 1.06;
}

.crm-pipeline span {
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.automation-flow {
  padding: 22px;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(152, 245, 195, 0.38),
      transparent 28%
    ),
    rgba(255, 252, 247, 0.92);
}

.automation-flow > span {
  display: block;
  margin-bottom: 18px;
}

.flow-step {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.flow-step b {
  font-size: 16px;
  line-height: 1.2;
}

.flow-step small {
  display: block;
  margin-top: 9px;
  text-transform: none;
}

.flow-line {
  width: 1px;
  height: 28px;
  margin: 0 auto;
  background: var(--line);
}

.site-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.site-topbar span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #d8c4b1;
}

.site-urlbar {
  flex: 1;
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 34px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.service-proof-stat {
  font-family: "Instrument Serif", serif;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  white-space: nowrap;
}

.service-proof-text {
  display: grid;
  gap: 6px;
}

.service-proof-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-proof-source {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}


.service-process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-process-num {
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-top: 3px;
}

.service-process-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-process-step p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.48;
}

.service-content {
  display: grid;
  gap: 22px;
}

.service-content h2 {
  margin: 20px 0 -6px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
}

.service-list li {
  position: relative;
  min-height: 26px;
  padding-left: 36px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #000;
}

.service-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}


.article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

.article-button:hover,
.article-button:focus-visible {
  transform: translateY(-1px);
  background: #1f1f1f;
}

.article-button-light {
  background: #fff;
  color: #000;
}

.article-button-light:hover,
.article-button-light:focus-visible {
  background: #fff;
}


.article-image-cta {
  padding: var(--section-y) 0;
}

.article-image-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 54px 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58)),
    url("../optimized/venue.webp") center/cover;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.image-cta-with-media {
  background: #14100d;
}

.image-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.image-cta-with-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}

.article-image-cta-panel > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.article-image-cta h2 {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Instrument Serif", serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.article-image-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.45;
}

.article-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: #f7eee5;
}

.article-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 32px;
  color: var(--soft-ink);
  font-size: 16px;
}

.article-footer-logo {
  width: 156px;
  height: auto;
}

.article-footer h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 12px;
}

.article-footer p {
  max-width: 280px;
  margin: 12px 0 0;
}

.article-footer-links {
  display: grid;
  gap: 8px;
  font-size: 12px;
}

.article-copyright {
  margin-top: 34px;
  color: #5f5952;
  font-size: 11px;
}

@media (max-width: 900px) {
  .articles-home {
    padding-top: 72px;
  }

  .articles-layout,
  .article-link {
    grid-template-columns: 1fr;
  }

  .article-list {
    gap: 34px;
  }

  img.article-thumb {
    width: 50%;
    aspect-ratio: 5 / 4;
  }

  .article-thumb:not(img) {
    min-height: 210px;
  }

  .success-story-shell {
    padding-top: 64px;
  }

  .service-shell {
    width: min(100% - 40px, var(--max));
    padding-top: 64px;
  }

  .service-concept {
    width: calc(100vw - 28px);
    min-height: 620px;
  }

  .floating-note {
    position: relative;
    inset: auto;
    width: min(320px, calc(100% - 42px));
  }

  .service-concept {
    align-content: center;
    gap: 14px;
    padding: 28px 0;
  }

  .service-ui,
  .service-ui-seo,
  .service-ui-crm,
  .service-ui-payments,
  .service-ui-security,
  .service-ui-ai,
  .service-ui-audience,
  .confirmation-strip,
  .ai-output-strip,
  .content-plan-card {
    grid-template-columns: 1fr;
  }

  .service-ui-website {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    grid-template-areas:
      "site site"
      "phone checkout";
  }

  .florist-inventory-card {
    grid-column: auto;
    margin-top: 0;
  }

  .service-ui {
    width: min(680px, calc(100% - 32px));
  }

  .checkout-panel {
    width: auto;
    justify-self: end;
  }

  .success-hero,
  .success-cta {
    width: calc(100vw - 28px);
  }

  .success-cta,
  .article-footer-grid {
    grid-template-columns: 1fr;
  }

  .success-cta > div:first-child,
  .success-cta-panel {
    padding: 42px;
  }
}

@media (max-width: 620px) {
  .service-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wrap,
  .post-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand-logo {
    width: 124px;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    font-size: 11px;
  }

  .articles-home h1 {
    font-size: 44px;
  }

  .about-articles {
    padding: 28px;
  }

  .about-articles > p {
    font-size: 16px;
  }

  .top-story,
  .read-more-item {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .article-thumb:not(img) {
    min-height: 160px;
  }

  img.article-thumb {
    width: 50%;
    aspect-ratio: 5 / 4;
  }

  .post-hero {
    min-height: 220px;
  }

  .success-story-shell {
    width: min(100% - 28px, var(--max));
    padding: 48px 0 78px;
  }

  .success-metrics,
  .service-metrics,
  .customer-facts {
    grid-template-columns: 1fr;
  }

  .service-shell {
    width: min(100% - 28px, var(--max));
    padding: 48px 0 78px;
  }

  .service-title {
    font-size: 32px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .site-frame {
    width: calc(100% - 32px);
  }

  .service-ui {
    width: calc(100% - 28px);
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-header,
  .confirmation-strip,
  .ai-output-strip {
    display: grid;
  }

  .ai-draft {
    margin-left: 0;
  }

  .crm-pipeline {
    grid-template-columns: 1fr;
  }

  .service-ui-website {
    grid-template-columns: 1fr;
    grid-template-areas:
      "site"
      "phone"
      "checkout";
  }

  .venue-site-preview {
    min-height: 360px;
  }

  .venue-nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-height: 68px;
  }

  .venue-hero {
    min-height: 210px;
    padding: 22px;
  }

  .venue-hero b,
  .seo-search-card > b {
    font-size: 34px;
  }

  .venue-site-footer {
    grid-template-columns: 1fr;
  }

  .venue-site-footer > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .venue-site-footer > div:last-child {
    border-bottom: 0;
  }

  .venue-phone,
  .checkout-panel {
    width: min(320px, 100%);
    justify-self: center;
  }

  .seo-dashboard-card strong {
    font-size: 54px;
  }

  .bar-chart {
    height: 90px;
  }

  .crm-pipeline {
    min-height: 0;
  }

  .crm-pipeline > div {
    min-height: 112px;
  }

  .pipeline-board {
    grid-template-columns: 1fr;
  }

  .pipeline-board > div {
    min-height: 118px;
  }

  .site-hero-preview b {
    font-size: 28px;
  }

  .success-metric {
    min-height: 0;
  }

  .customer-facts {
    gap: 22px;
  }

  .success-hero {
    min-height: 330px;
  }

  .device-card {
    width: 200px;
  }

  .device-card-primary {
    left: 7%;
    top: 18%;
  }

  .device-card-secondary {
    right: 6%;
    bottom: 16%;
  }

  .success-metric span,
  .success-intro p,
  .success-content p,
  .success-content li,
  .success-cta p {
    font-size: 16px;
  }

  .article-footer-logo {
    width: 138px;
  }

  .article-image-cta-panel {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
