/* NkuliMadeSimple: Stylesheet
   Prepared by Tumelo, Engineer and Website Developer */

:root {
  --cream: #FFF9F3;
  --cream-alt: #FFE9DB;
  --brown: #3F241B;
  --brown-soft: #755247;
  --burnt-orange: #F2643F;
  --burnt-orange-dark: #C83F27;
  --coral: #FF7B6B;
  --peach: #FFB38B;
  --sun: #FFC857;
  --rose: #E85D75;
  --white: #FFFFFF;
  --border: #F0CCB8;
  --focus: #175E66;
  --max-width: 1180px;
  --shadow-soft: 0 12px 34px rgba(110, 55, 31, 0.10);
  --shadow-lift: 0 18px 42px rgba(124, 52, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brown);
  background:
    radial-gradient(circle at 5% 4%, rgba(255, 200, 87, 0.18), transparent 23rem),
    radial-gradient(circle at 95% 16%, rgba(255, 123, 107, 0.16), transparent 25rem),
    var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--brown);
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

h1 { font-size: 2.35rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}

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

a {
  color: var(--burnt-orange-dark);
  text-decoration: underline;
}

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

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

ul, ol {
  color: var(--brown-soft);
}

/* Accessibility: visible focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--brown);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Trust bar ===== */

.trust-bar {
  background: linear-gradient(90deg, var(--sun), var(--peach), var(--burnt-orange));
  color: var(--brown);
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.trust-bar-inner span {
  white-space: nowrap;
}

.trust-bar-inner span:not(:last-child)::after {
  content: "✦";
  margin-left: 0.9rem;
  color: var(--brown);
}

/* ===== Header ===== */

.site-header {
  background: rgba(255, 249, 243, 0.92);
  border-bottom: 1px solid rgba(240, 204, 184, 0.8);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo::before {
  content: "N";
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--burnt-orange), var(--rose));
  box-shadow: 0 7px 18px rgba(200, 63, 39, 0.24);
}

.logo:hover {
  color: var(--burnt-orange);
}

.nav-toggle {
  display: block;
  background: none;
  border: 2px solid var(--brown);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--brown);
  min-height: 44px;
}

.main-nav {
  display: none;
  width: 100%;
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--burnt-orange-dark);
  background: #FFE0CF;
}

.nav-free-resource {
  text-decoration: none;
  text-align: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
}

.main-nav .nav-free-resource,
.main-nav .nav-free-resource:hover,
.main-nav .nav-free-resource:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--burnt-orange-dark), #B72D55);
}

@media (min-width: 1040px) {
  .nav-toggle { display: none; }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: auto;
  }

  .main-nav ul {
    flex-direction: row;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-free-resource {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* ===== Business support ===== */

.service-hero {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 200, 87, 0.32), transparent 22rem),
    linear-gradient(135deg, #FFF8F1, #FFE2D5);
}

.service-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.service-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-summary {
  background: var(--brown);
  color: var(--white);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow-lift);
}

.service-summary h2,
.service-summary p,
.service-summary .notice-list li {
  color: var(--white);
}

.service-summary .eyebrow {
  color: var(--sun);
}

.service-summary .notice-list li::before {
  color: var(--sun);
}

@media (min-width: 860px) {
  .service-hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr); }
}

.service-price-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-lift);
}

.service-price-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.service-price-note {
  padding: 1.5rem;
  border-radius: 18px;
  background: #FFF0E6;
}

.service-price-note strong {
  display: block;
  margin-bottom: 0.25rem;
}

@media (min-width: 800px) {
  .service-price-panel { grid-template-columns: 1.05fr 0.95fr; align-items: center; padding: 2.5rem; }
}

.process-grid {
  list-style: none;
  counter-reset: service-step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.process-grid li {
  counter-increment: service-step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--brown-soft);
}

.process-grid li::before {
  content: counter(service-step);
  grid-row: 1 / 3;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burnt-orange-dark);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.process-grid strong {
  color: var(--brown);
  font-size: 1.05rem;
}

.process-grid span {
  display: block;
}

@media (min-width: 800px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

.plain-list {
  margin: 1rem 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-cta {
  max-width: 760px;
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.92rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
  text-align: center;
  overflow-wrap: anywhere;
  max-width: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--burnt-orange-dark), #B72D55);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(217, 72, 48, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A83321, #8E2343);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--burnt-orange-dark);
  color: var(--burnt-orange-dark);
}

.btn-secondary:hover {
  background: var(--burnt-orange-dark);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Sections ===== */

.section {
  padding: 3.25rem 0;
}

@media (min-width: 768px) {
  .section { padding: 4rem 0; }
}

.section-alt {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 200, 87, 0.18), transparent 18rem),
    linear-gradient(135deg, #FFF0E4, #FFE2D8);
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

/* ===== Hero ===== */

.hero {
  padding: 4rem 0;
}

.home-hero {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-height: 620px;
}

@media (min-width: 860px) {
  .home-hero { grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); }
}

.hero-copy { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  color: var(--burnt-orange-dark);
  background: #FFE1CD;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-title-accent {
  color: var(--burnt-orange);
  background: linear-gradient(90deg, var(--burnt-orange), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  max-width: 650px;
  margin: 0 0 1.75rem 0;
}

.hero-showcase {
  position: relative;
  padding: 1.15rem;
  border-radius: 30px;
  background: linear-gradient(145deg, #FF916F, #F65E55 55%, #D84268);
  box-shadow: 0 28px 70px rgba(177, 54, 50, 0.26);
  transform: rotate(1.2deg);
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-showcase::before {
  width: 110px;
  height: 110px;
  top: -30px;
  right: -24px;
  background: var(--sun);
  z-index: -1;
}

.hero-showcase::after {
  width: 72px;
  height: 72px;
  bottom: -18px;
  left: -22px;
  background: #FFB69C;
  z-index: -1;
}

.showcase-label {
  display: block;
  padding: 0.3rem 0.4rem 0.9rem;
  color: #2F1713;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card {
  min-height: 265px;
  padding: 1.5rem;
  border-radius: 21px;
  background: rgba(255, 251, 246, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.showcase-monogram {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brown);
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
}

.showcase-card small { display: block; margin-bottom: 0.45rem; color: var(--burnt-orange-dark); font-weight: 800; }
.showcase-card strong { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.3vw, 2.65rem); line-height: 1.02; }
.showcase-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.8rem 0; }
.showcase-tags span { padding: 0.45rem 0.65rem; border-radius: 999px; color: var(--brown); background: rgba(255,255,255,0.74); font-size: 0.72rem; font-weight: 800; }
.showcase-footer { display: flex; align-items: center; gap: 0.75rem; padding: 0.45rem 0.35rem 0.1rem; color: #2F1713; }
.showcase-footer strong { font-family: 'Fraunces', serif; font-size: 2.8rem; line-height: 1; }
.showcase-footer span { font-size: 0.78rem; line-height: 1.15; font-weight: 700; }

/* ===== Grid / Cards ===== */

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--burnt-orange), var(--sun), var(--rose));
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: #EDA98C; }

.card h3 {
  margin-bottom: 0.25rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--burnt-orange-dark);
  background: #FFE4D0;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
}

.image-placeholder {
  background: var(--cream-alt);
  border: 2px dashed var(--border);
  border-radius: 10px;
  color: var(--brown-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  min-height: 160px;
}

.card .btn-group {
  margin-top: auto;
}

/* ===== Founder / About ===== */

.founder-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .founder-block {
    grid-template-columns: 1fr 1fr;
  }
}

/* Photo-free founder presentation, used until an approved photograph exists */
.founder-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.founder-note .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.founder-note .quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--brown);
  border-left: 3px solid var(--burnt-orange);
  padding-left: 1.25rem;
  text-align: left;
  margin: 0 auto 1.5rem auto;
  max-width: 600px;
}

.founder-note p {
  text-align: left;
}

/* ===== Email / Newsletter ===== */

.email-box {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,0.34), transparent 9rem),
    linear-gradient(135deg, var(--sun), var(--peach) 52%, var(--coral));
  border: 0;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.email-box p { color: #654033; }
.email-box .btn-primary { background: var(--brown); box-shadow: 0 9px 22px rgba(63, 36, 27, 0.22); }

.form-note {
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ===== Social links ===== */

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.social-links a {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--brown);
  background: var(--white);
  min-height: 44px;
  line-height: 1.9;
}

.social-links a:hover {
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
}

.site-footer .social-links {
  margin-bottom: 1.5rem;
}

.site-footer .social-links a {
  border-color: rgba(255, 255, 255, 0.3);
  color: #EFE3D3;
  background: transparent;
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
}

/* ===== Footer ===== */

.site-footer {
  background: linear-gradient(145deg, #3F241B, #5B2631 62%, #742E32);
  color: #EFE3D3;
  padding: 3rem 0 1.5rem 0;
  margin-top: 3rem;
}

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

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer h2, .site-footer h3 {
  color: #F6EEE0;
  font-size: 1.05rem;
}

.site-footer a {
  color: #EFE3D3;
}

.site-footer a:hover {
  color: var(--burnt-orange);
}

.site-footer p, .site-footer li {
  color: #D8C7AE;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #C9B79C;
}

/* ===== FAQ ===== */

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* ===== Page header (interior pages) ===== */

.page-header {
  max-width: var(--max-width);
  margin: 2.25rem auto 0;
  padding: clamp(2.4rem, 6vw, 4.6rem) 1.25rem;
  text-align: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 12%, rgba(255,255,255,0.45), transparent 13rem),
    linear-gradient(135deg, #FFD175, #FFAD86 52%, #FF8077);
  box-shadow: var(--shadow-soft);
}

.page-header p {
  max-width: 680px;
  margin: 0 auto;
  color: #694135;
}

/* ===== Note / callout box ===== */

.callout {
  background: linear-gradient(135deg, #FFF2D7, #FFE1D5);
  border-left: 4px solid var(--burnt-orange);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* ===== Contact ===== */

.contact-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ===== Legal pages ===== */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-updated {
  color: var(--brown-soft);
  font-style: italic;
}

/* ===== 404 ===== */

.error-page {
  text-align: center;
  padding: 5rem 0;
}

/* ===== Utility ===== */

.placeholder-note {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--brown-soft);
  margin-top: 0.35rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ===== Product pages ===== */

.product-hero {
  padding: 2.5rem 0 1rem 0;
}

.product-hero .card-tag {
  margin-bottom: 0.75rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.product-gallery .image-placeholder {
  min-height: 100px;
  font-size: 0.75rem;
  padding: 0.75rem;
}

.product-gallery img,
.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.product-cover {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-cover img { transition: transform 260ms ease; }
.card:hover .product-cover img { transform: scale(1.025); }

.editorial-cover {
  min-height: 245px;
  padding: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(84, 52, 35, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
  color: var(--brown);
  background: linear-gradient(145deg, #f5e8dc, #dfbba0);
}

.editorial-cover::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -55px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.38);
  z-index: -1;
}

.editorial-cover small {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-cover strong {
  max-width: 12ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.editorial-cover span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cover-events { background: linear-gradient(145deg, #f3dccb, #d89b77); }
.cover-growth { background: linear-gradient(145deg, #f4e5df, #dba9a1); }
.cover-business { background: linear-gradient(145deg, #eee3d6, #c8a47e); }
.cover-leadership { background: linear-gradient(145deg, #eadfd6, #b98f79); }
.cover-dinner { background: linear-gradient(145deg, #f0e2d3, #d9ad86); }
.cover-travel { background: linear-gradient(145deg, #e8e6dc, #b7b19a); }

.new-product-card { position: relative; }
.featured-release { border-color: rgba(176, 83, 45, 0.42); box-shadow: 0 10px 28px rgba(99, 60, 36, 0.12); }
.new-badge {
  position: absolute;
  top: 4.75rem;
  right: 2rem;
  z-index: 2;
  color: var(--white);
  background: var(--burnt-orange-dark);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.featured-cover { min-height: 320px; }

.product-video {
  margin: 1.5rem 0;
}

.product-video video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  background: var(--brown);
}

.product-video figcaption {
  font-size: 0.8rem;
  color: var(--brown-soft);
  margin-top: 0.5rem;
}

.product-meta-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0;
}

@media (min-width: 700px) {
  .product-meta-list { grid-template-columns: repeat(2, 1fr); }
}

.product-meta-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.product-meta-item p {
  margin-bottom: 0;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notice-list li {
  color: var(--brown-soft);
  padding-left: 1.4rem;
  position: relative;
}

.notice-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--burnt-orange);
  font-weight: 700;
}

.related-product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 420px;
}

.related-product h3 {
  margin-bottom: 0.5rem;
}

/* ===== Featured toolkit ===== */

.featured-toolkit {
  background:
    radial-gradient(circle at 90% 8%, rgba(255,200,87,0.22), transparent 14rem),
    linear-gradient(135deg, #FFFFFF, #FFF0E5);
  border: 1px solid #EFBFA7;
  border-radius: 26px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow-lift);
}

@media (min-width: 800px) {
  .featured-toolkit {
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    padding: 2.5rem;
  }
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burnt-orange-dark);
  margin-bottom: 0.5rem;
}

/* ===== FAQ preview ===== */

.faq-preview-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.faq-preview-list a {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
}

.faq-preview-list a:hover {
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
}

/* ===== Nkuli product assistant ===== */

.nkuli-assistant {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 1000;
  font-family: 'Inter', Arial, sans-serif;
}

.assistant-launcher {
  min-height: 58px;
  padding: 0.55rem 1rem 0.55rem 0.6rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #E64C5E, #F47748 58%, #F4A62A);
  box-shadow: 0 14px 38px rgba(136, 45, 51, 0.3);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.assistant-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(136, 45, 51, 0.38);
}

.assistant-launcher:focus-visible,
.assistant-close:focus-visible,
.assistant-prompts button:focus-visible,
.assistant-form input:focus-visible,
.assistant-form button:focus-visible {
  outline: 3px solid #7A2944;
  outline-offset: 3px;
}

.assistant-launcher > span:last-child {
  display: grid;
  text-align: left;
  line-height: 1.15;
}

.assistant-launcher strong { font-size: 0.86rem; }
.assistant-launcher small { margin-top: 0.2rem; color: rgba(255,255,255,0.86); font-size: 0.7rem; }

.assistant-launcher-icon,
.assistant-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: #A63842;
  background: #FFF3D4;
  border: 2px solid rgba(255,255,255,0.7);
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.8rem);
  width: min(390px, calc(100vw - 2rem));
  overflow: hidden;
  color: var(--brown);
  background: #FFFBF7;
  border: 1px solid #E9B7A1;
  border-radius: 22px;
  box-shadow: 0 24px 65px rgba(91, 45, 42, 0.24);
}

.assistant-header {
  padding: 0.85rem 0.9rem;
  color: #fff;
  background: linear-gradient(120deg, #A63842, #D84A5C 56%, #F47748);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assistant-header > div { display: flex; align-items: center; gap: 0.65rem; }
.assistant-header > div > span:last-child { display: grid; }
.assistant-header strong { font-size: 0.95rem; }
.assistant-header small { margin-top: 0.15rem; color: rgba(255,255,255,0.82); font-size: 0.7rem; }
.assistant-avatar { width: 36px; height: 36px; font-size: 0.95rem; }

.assistant-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.13);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.assistant-messages {
  height: min(330px, 42vh);
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.assistant-message {
  max-width: 88%;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  font-size: 0.83rem;
  line-height: 1.48;
}

.assistant-message a { font-weight: 700; }
.assistant-message-assistant { align-self: flex-start; background: #FFF0E5; border-bottom-left-radius: 4px; }
.assistant-message-user { align-self: flex-end; color: #fff; background: #8D3850; border-bottom-right-radius: 4px; }

.assistant-prompts {
  padding: 0 1rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.assistant-prompts button {
  padding: 0.38rem 0.58rem;
  border: 1px solid #E8B29F;
  border-radius: 999px;
  color: #8D3850;
  background: #fff;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.assistant-prompts button:hover { background: #FFF0E5; }

.assistant-form {
  padding: 0.7rem;
  border-top: 1px solid #F0D5C8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.assistant-form input {
  min-width: 0;
  padding: 0.7rem 0.78rem;
  border: 1px solid #D8B4A5;
  border-radius: 12px;
  color: var(--brown);
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
}

.assistant-form button {
  padding: 0.7rem 0.8rem;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #A63842;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.assistant-form button:hover { background: #842C38; }

.assistant-privacy {
  margin: 0;
  padding: 0 0.8rem 0.65rem;
  color: #7E645A;
  font-size: 0.62rem;
  text-align: center;
}

@media (max-width: 520px) {
  .nkuli-assistant { right: 0.75rem; bottom: 0.75rem; }
  .assistant-launcher { min-height: 52px; padding-right: 0.75rem; }
  .assistant-launcher-icon { width: 38px; height: 38px; }
  .assistant-panel { width: calc(100vw - 1.5rem); }
  .assistant-messages { height: min(300px, 40vh); }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-launcher { transition: none; }
}
