/* ==========================================================================
   Ana Stevanović — Mockup stylesheet v2 (Everlead-inspired)
   Desktop-only. References tokens.css only.
   ========================================================================== */

/* --- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-m);
  font-weight: 400;
  line-height: var(--base-text-lh);
  color: var(--text-color);
  background: var(--body-bg-color);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  color: var(--heading-color);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

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

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--link-link-hover, var(--primary-hover)); }

ul { list-style: none; padding: 0; }
input, button { font: inherit; color: inherit; }

/* Decorative heading dot (Everlead signature) */
.heading-dot::after,
.section-title::after {
  content: ".";
  color: var(--primary);
}

.hero__title::after {
  content: ".";
  color: var(--primary);
}

/* --- Layout ----------------------------------------------------------- */
.container {
  width: var(--content-width-safe);
  margin-inline: auto;
}

.container--narrow {
  width: min(var(--content-narrow), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section { padding-block: var(--section-space-m); }
.section--s { padding-block: var(--section-space-s); }
.section--l { padding-block: var(--section-space-l); }

.section--sand { background: var(--sand); }
.section--neutral { background: var(--neutral-ultra-light); }
.section--white { background: var(--white); }

.section--ink {
  background: var(--ink);
  color: var(--text-light-muted);
}

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--text-light); }

.section--ink p { color: var(--text-light-muted); }

.section-divider {
  width: 3.5rem;
  height: 2px;
  background: var(--primary);
  margin: var(--space-m) auto 0;
}

.section-divider--left { margin-inline: 0; }

/* Dot pattern decoration (Everlead) */
.dot-pattern {
  position: absolute;
  width: 7rem;
  height: 7rem;
  background-image: radial-gradient(circle, var(--neutral-light) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  opacity: 0.85;
}

.dot-pattern--tr { top: 10%; right: 4%; }
.dot-pattern--tl { top: 14%; left: 4%; }
.dot-pattern--bl { bottom: 12%; left: 3%; }

/* --- Eyebrow / labels --------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--neutral);
  margin-bottom: var(--space-m);
}

.section--ink .eyebrow { color: var(--text-light-muted); }

.section-head {
  max-width: 38rem;
  margin-bottom: var(--space-xl);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .section-divider { margin-inline: auto; }

.lead {
  font-size: var(--text-l);
  line-height: 1.65;
  max-width: 42ch;
}

/* --- Buttons (Everlead arrow style — .cta avoids ACSS btn-- collision) --- */
.cta {
  display: inline-flex;
  align-items: stretch;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  text-decoration: none;
  background: transparent;
  padding: 0;
}

.cta__text {
  display: flex;
  align-items: center;
  padding: 0.85em 1.15em;
  white-space: nowrap;
}

.cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 2.75em;
  padding: 0 0.85em 5px;
  border-left: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  font-size: 0.875rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.cta:hover .cta__arrow { transform: translateX(3px); }

.cta--primary {
  background: #ff4612;
  color: var(--white);
}

.cta--primary:hover {
  background: #e03d0f;
  color: var(--white);
}

.cta--outline {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--border-color);
}

.cta--outline:hover {
  color: #ff4612;
  box-shadow: inset 0 0 0 1px #ff4612;
}

.cta--ghost-dark {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--white) 35%, transparent);
}

.cta--ghost-dark:hover { color: var(--primary-light); }

.cta--lg .cta__text { padding: 0.95em 1.35em; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  align-items: center;
}

.cta-row--center { justify-content: center; }

.lead--center { margin-inline: auto; }

/* --- Logo --------------------------------------------------------------- */
.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.logo .dot { color: var(--primary); }

.site-header--transparent .logo { color: var(--ink); }

.site-header--transparent .nav__link { color: var(--ink); }

.site-header--transparent .nav__link:hover,
.site-header--transparent .nav__link--active { color: var(--primary); }

.site-header--transparent.scrolled .logo,
.site-header--transparent.scrolled .nav__link { color: var(--ink); }

.logo--xl { font-size: clamp(2.75rem, 4.5vw + 1rem, 5rem); }
.logo--lg { font-size: 2.25rem; }

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.monogram--lg {
  width: 5.5rem;
  height: 5.5rem;
  font-size: 2rem;
}

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header--solid,
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border-color);
}

.site-header--transparent:not(.scrolled) {
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-l);
  padding-block: 0.9rem;
}

.header-cta .cta__text { padding: 0.7em 0.95em; }

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}

.nav__link {
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.nav__link--active::before {
  content: "→";
  position: absolute;
  left: -1.1rem;
  color: var(--primary);
  font-size: 0.85em;
}

.nav__link:hover { color: var(--primary); }

.header-cta { margin-left: var(--space-m); flex-shrink: 0; }

/* Spacer for fixed header on inner pages */
.page-inner { padding-top: 5.5rem; }

/* --- Hero (container, 50 / 50) ------------------------------------------ */
.hero {
  position: relative;
  padding-top: calc(6.75rem + var(--space-s));
  background: var(--white);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.hero__copy {
  width: 100%;
  max-width: 100%;
}

.hero__title {
  margin-bottom: var(--space-s);
  max-width: 16ch;
  font-size: clamp(2rem, 2.2vw + 1.4rem, 3rem);
  line-height: 1.08;
}

.hero__subline {
  font-size: var(--text-m);
  max-width: 36ch;
  margin-bottom: var(--space-m);
  line-height: 1.55;
  color: var(--text-dark-muted);
}

.hero__media {
  position: relative;
  width: 100%;
}

.hero__media-accent {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 60%;
  height: 55%;
  background: var(--primary-ultra-light);
  border: 2px solid color-mix(in srgb, var(--primary) 30%, transparent);
  z-index: 0;
}

.hero__card {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--sand);
}

.hero__card-photo {
  margin: 0;
  width: 100%;
  height: 100%;
}

.hero__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero__card-badge {
  position: absolute;
  bottom: var(--space-m);
  left: var(--space-m);
  z-index: 2;
  width: max-content;
  max-width: calc(100% - var(--space-xl));
  min-width: 15.5rem;
  padding: var(--space-m) var(--space-l);
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-1);
}

.hero__card-stat {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.hero__card-label {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral);
  line-height: 1.3;
  white-space: nowrap;
}

.hero__card-divider {
  display: block;
  height: 1px;
  margin-block: var(--space-s);
  background: color-mix(in srgb, var(--ink) 14%, transparent);
}

.hero__card-signature {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1;
}

.hero__chip {
  margin-top: var(--space-l);
  padding: var(--space-s) var(--space-m);
  background: var(--sand);
  border-left: 3px solid var(--primary);
  font-size: var(--text-xs);
  color: var(--text-dark-muted);
  max-width: 22rem;
}

.hero__chip strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-top: 3px;
  font-size: var(--text-s);
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  margin-top: var(--space-xl);
  font-size: var(--text-s);
  color: var(--neutral);
}

.cred-row span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.cred-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Inner page hero */
.page-hero {
  padding-top: calc(5.5rem + var(--section-space-l));
  padding-bottom: var(--section-space-s);
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.page-hero .dot-pattern { opacity: 0.5; }

.page-hero h1::after { content: "."; color: var(--primary); }

.page-hero--ink {
  background: var(--ink);
}

.page-hero--ink h1 {
  color: var(--text-light);
}

.page-hero--ink .eyebrow {
  color: var(--text-light-muted);
}

.page-hero--ink .lead {
  color: var(--text-light-muted);
}

.page-hero--ink .dot-pattern {
  background-image: radial-gradient(circle, color-mix(in srgb, var(--white) 45%, transparent) 1.5px, transparent 1.5px);
  opacity: 0.9;
}

.page-hero--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 62%);
  pointer-events: none;
}

.page-hero--glow .container {
  position: relative;
  z-index: 1;
}

/* --- Trusted by band (replaces stats) ------------------------------------- */
.trusted-band {
  border-block: var(--border);
  padding-top: var(--section-space-s);
  padding-bottom: var(--space-m);
  background: var(--white);
}

.trusted-band__head {
  text-align: center;
  margin-bottom: var(--space-m);
}

.trusted-band__head .eyebrow {
  margin-bottom: var(--space-s);
}

.trusted-band__head .section-divider {
  margin-inline: auto;
}

.logo-wall--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-s) var(--space-l);
  margin: 0;
}

.logo-wall--compact .logo-wall__item {
  font-family: var(--font-display);
  font-size: var(--text-s);
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 38%, transparent);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-wall--compact .logo-wall__item:hover { color: var(--ink); }

@media (min-width: 1100px) {
  .logo-wall--compact {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: var(--space-m);
  }

  .logo-wall--compact .logo-wall__item {
    font-size: 0.875rem;
  }
}

/* --- Description / about block ------------------------------------------ */
.about-block {
  position: relative;
  overflow: hidden;
}

.about-block__grid {
  display: grid;
  gap: var(--space-xxl);
  align-items: center;
}

.about-block__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--sand-deep), var(--sand));
  overflow: hidden;
}

.about-block__visual::before {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.35;
}

.about-block__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.about-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.about-block__signature {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--primary);
  margin-top: var(--space-l);
  line-height: 1;
}

.copy-body { font-size: var(--text-m); }
.copy-body p + p { margin-top: var(--space-m); }

.stat-inline {
  display: grid;
  gap: var(--space-l);
  margin-top: var(--space-xl);
  padding-top: var(--space-l);
  border-top: var(--border);
}

.stat-inline__num {
  font-family: var(--font-display);
  font-size: var(--h2);
  color: var(--ink);
  line-height: 1;
}

.stat-inline__label {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--neutral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* --- Specialty / process cards (Everlead icons) ------------------------- */
.specialty-grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.specialty {
  text-align: center;
}

.specialty__icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto var(--space-m);
  border: 1px solid #ff4612;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
  transition: background-color var(--transition), border-color var(--transition);
}

.specialty:hover .specialty__icon {
  background-color: #ff4612;
  border-color: #ff4612;
}

.specialty--call .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4612' stroke-width='1.25'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.specialty--call:hover .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.25'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.specialty--goals .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4612' stroke-width='1.25'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E");
}

.specialty--goals:hover .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.25'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E");
}

.specialty--plan .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4612' stroke-width='1.25'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8'/%3E%3C/svg%3E");
}

.specialty--plan:hover .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.25'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8'/%3E%3C/svg%3E");
}

.specialty--grow .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4612' stroke-width='1.25'%3E%3Cpath d='M3 17l6-6 4 4 8-10'/%3E%3Cpath d='M14 5h7v7'/%3E%3C/svg%3E");
}

.specialty--grow:hover .specialty__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.25'%3E%3Cpath d='M3 17l6-6 4 4 8-10'/%3E%3Cpath d='M14 5h7v7'/%3E%3C/svg%3E");
}

.specialty__title {
  font-family: var(--font-display);
  font-size: var(--h4);
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.specialty__text {
  font-size: var(--text-s);
  line-height: 1.6;
  max-width: 22ch;
  margin-inline: auto;
}

/* --- Logo wall ---------------------------------------------------------- */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl) var(--space-xxl);
  margin-top: var(--space-xl);
}

.logo-wall__item {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 35%, transparent);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.logo-wall__item:hover { color: var(--ink); }

/* --- Testimonials slider ------------------------------------------------ */
.testimonials__head {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials__intro {
  margin-top: var(--space-m);
  font-size: var(--text-m);
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.testimonials__stage {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  width: min(90%, var(--content-width));
  margin-inline: auto;
}

.testimonials__slider-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonials__slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  flex: 0 0 auto;
  padding: var(--space-l) var(--space-xl);
  text-align: center;
  box-sizing: border-box;
}

.testimonial-slide__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1vw + 1rem, 1.65rem);
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  max-width: 42rem;
  margin-inline: auto;
}

.testimonial-slide__author {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: var(--primary);
  margin-top: var(--space-l);
  line-height: 1;
}

.testimonial-slide__role {
  font-size: var(--text-s);
  color: var(--neutral);
  margin-top: var(--space-xs);
}

.testimonials__controls {
  display: none;
}

.testimonials__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.testimonials__btn svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials__btn:hover {
  background: #ff4612;
  border-color: #ff4612;
  color: var(--white);
  transform: translateY(-2px);
}

.testimonials__btn:active {
  transform: translateY(0);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-l);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--neutral-light);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.testimonials__dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l);
  margin-top: var(--space-xl);
}

.card {
  background: var(--white);
  padding: var(--space-l);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.quote {
  font-family: var(--font-display);
  font-size: var(--text-l);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--space-l);
  font-style: italic;
}

.quote-author { font-weight: 600; color: var(--ink); font-size: var(--text-s); }
.quote-role { font-size: var(--text-xs); color: var(--neutral); margin-top: 2px; }

/* --- Newsletter --------------------------------------------------------- */
.newsletter-block {
  position: relative;
  overflow: hidden;
}

.newsletter-block.section {
  padding-bottom: var(--space-xl);
}

.newsletter {
  display: grid;
  gap: var(--space-xxl);
}

.newsletter > div:last-child p {
  margin-bottom: var(--space-xxl);
}

.newsletter__form {
  display: flex;
  gap: 0;
  margin-top: var(--space-s);
  align-items: stretch;
}

.input {
  flex: 1;
  padding: 1em 1.25em;
  border: 1px solid color-mix(in srgb, var(--white) 25%, transparent);
  background: color-mix(in srgb, var(--white) 8%, transparent);
  color: var(--white);
  font-size: var(--text-s);
}

.input::placeholder { color: var(--text-light-muted); }

.input:focus {
  outline: none;
  border-color: var(--primary-light);
}

.input--light {
  background: var(--white);
  border-color: var(--border-color);
  color: var(--ink);
}

.input--light::placeholder { color: var(--neutral); }

/* --- Events (speaking) -------------------------------------------------- */
.event-list { margin-top: var(--space-xl); }

.event {
  display: grid;
  gap: var(--space-l);
  align-items: start;
  padding: var(--space-l) var(--space-m);
  border-bottom: var(--border);
  transition: background var(--transition);
}

.event:hover { background: var(--sand); }

.event__cta {
  margin-top: var(--space-m);
}

.event-empty {
  padding: var(--space-xl) var(--space-l);
  text-align: center;
  background: var(--sand);
  border: var(--border);
}

.event-empty__title {
  font-family: var(--font-display);
  font-size: var(--h4);
  color: var(--ink);
}

.event-empty__text {
  margin-top: var(--space-s);
  font-size: var(--text-s);
  color: var(--text-dark-muted);
}

.event__when {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event__date {
  font-size: var(--text-s);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event__time {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral);
  letter-spacing: 0.04em;
}

.event__city {
  font-family: var(--font-display);
  font-size: var(--h4);
  color: var(--ink);
}

.event__address {
  font-size: var(--text-s);
  color: var(--text-dark-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.event__meta { font-size: var(--text-s); color: var(--neutral); margin-top: 0.35rem; }

.event__tag {
  font-size: var(--label);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--neutral);
  padding: 0.5em 1em;
  border: 1px solid var(--border-color);
}

/* --- Book hero (slider) --------------------------------------------------- */
.book-hero-block {
  position: relative;
  overflow: hidden;
  padding-top: calc(5.5rem + var(--section-space-l));
  padding-bottom: var(--section-space-m);
}

.book-hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 22% 55%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 62%);
  pointer-events: none;
}

.book-hero-block .container {
  position: relative;
  z-index: 1;
}

.book-hero-block .dot-pattern {
  background-image: radial-gradient(circle, color-mix(in srgb, var(--white) 45%, transparent) 1.5px, transparent 1.5px);
  opacity: 0.9;
}

.book-slider__wrap {
  overflow: hidden;
}

.book-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.book-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.book-slide__media {
  position: relative;
  width: fit-content;
  max-width: 15rem;
  margin-inline: auto;
}

.book-slide__accent {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 60%;
  height: 55%;
  background: var(--primary-ultra-light);
  border: 2px solid color-mix(in srgb, var(--primary) 30%, transparent);
  z-index: 0;
}

.book-slide__frame {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: var(--space-l) var(--space-m);
  box-shadow: var(--shadow-2);
}

.book-slide__img {
  width: 100%;
  height: auto;
}

.book-slide__title {
  color: var(--text-light);
}

.book-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-m);
  margin-top: var(--space-xl);
}

.book-slider__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border-color-light);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.book-slider__btn svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-slider__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.book-slider__dots {
  display: flex;
  gap: var(--space-xs);
}

.book-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 30%, transparent);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.book-slider__dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

.book-badge {
  display: inline-block;
  font-size: var(--label);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-m);
}

/* --- Blog grid ---------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; }

.post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--primary-ultra-light), var(--sand));
  margin-bottom: var(--space-m);
  position: relative;
  overflow: hidden;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.post-card:hover .post-card__img {
  transform: scale(1.04);
}

.post-card__thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--primary);
}

.post-card__date {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.post-card__title { font-size: var(--h4); margin-bottom: var(--space-s); }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--primary); }

.read-more {
  margin-top: auto;
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.read-more::after { content: " →"; color: var(--primary); }

/* --- Single post -------------------------------------------------------- */
.post-single {
  /* 5.5rem clears the fixed header */
  padding-block: calc(5.5rem + var(--space-xl)) var(--section-space-m);
}

.post-article {
  width: min(var(--content-narrow), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.post-article .wp-block-post-date {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral);
  font-weight: 600;
  margin-bottom: var(--space-s);
}

.post-article .wp-block-post-title { margin-bottom: var(--space-m); }

.post-article .wp-block-post-title::after {
  content: ".";
  color: var(--primary);
}

.post-article .wp-block-post-featured-image { margin-block: var(--space-l); }

.post-article .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-article p { margin-bottom: var(--space-m); }

.post-article h2,
.post-article h3 {
  margin-top: var(--space-l);
  margin-bottom: var(--space-s);
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--space-l);
  font-size: var(--label);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--neutral);
}

.post-back:hover { color: var(--primary); }

.post-back__arrow {
  font-size: 1rem;
  line-height: 1;
}

.post-testimonials {
  margin-top: var(--section-space-m);
  padding-top: var(--section-space-m);
}

.post-single + .post-testimonials,
.post-single .post-testimonials {
  margin-top: 0;
}

/* --- Contact ------------------------------------------------------------ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.contact-block__copy .eyebrow + .contact-line,
.contact-block__copy > .mt-l > .eyebrow {
  display: block;
  margin-bottom: var(--space-s);
}

.contact-actions { margin-top: var(--space-l); }

.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  padding-block: var(--space-m);
  border-bottom: var(--border);
}

.contact-line__label {
  font-size: var(--label);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--neutral);
}

.contact-line__value {
  font-size: var(--text-l);
  color: var(--ink);
  font-family: var(--font-display);
  text-align: right;
}

.contact-visual {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}

.contact-visual__accent {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 60%;
  height: 55%;
  background: var(--primary-ultra-light);
  border: 2px solid color-mix(in srgb, var(--primary) 30%, transparent);
  z-index: 0;
}

.contact-visual__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--sand);
}

.contact-visual__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.contact-visual__note {
  position: absolute;
  bottom: var(--space-m);
  left: var(--space-m);
  z-index: 2;
  width: max-content;
  max-width: calc(100% - var(--space-xl));
  min-width: 14rem;
  padding: var(--space-m) var(--space-l);
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-1);
}

.contact-visual__text {
  margin-top: var(--space-xs);
  font-size: var(--text-s);
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* --- Brand showcase ----------------------------------------------------- */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
  margin-top: var(--space-l);
}

.swatch__chip {
  height: 7rem;
  border: var(--border);
}

.swatch__name {
  display: block;
  margin-top: var(--space-s);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--ink);
}

.swatch__token {
  display: block;
  font-size: var(--text-xs);
  color: var(--neutral);
  font-family: ui-monospace, Menlo, monospace;
}

.brand-panel {
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  border: var(--border);
}

.brand-panel--light { background: var(--sand); }
.brand-panel--dark { background: var(--ink); }

.type-specimen { border-top: var(--border); padding-top: var(--space-l); margin-top: var(--space-l); }

.type-specimen__label {
  font-size: var(--label);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-s);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

/* --- Footer (Everlead dark) --------------------------------------------- */
.footer {
  background: #1e1c1c;
  color: rgba(255, 255, 255, 0.72);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-l);
}

.footer,
.footer span:not(.dot),
.footer__bottom > span {
  color: rgba(255, 255, 255, 0.72);
}

.footer p {
  margin-block: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer a:hover {
  color: #ffb89e;
}

.footer .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: var(--space-m);
}

.footer .logo .dot {
  color: #ff4612;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  align-items: start;
}

.footer__top > div {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.footer__bio {
  margin-top: 0;
  max-width: 32ch;
  font-size: var(--text-s);
  line-height: 1.65;
}

.footer .footer__col-title {
  font-size: var(--label);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-block: 0 var(--space-l);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--text-s);
}

.footer__links a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m);
  padding-top: var(--space-l);
  font-size: var(--text-xs);
}

.footer__social { display: flex; gap: var(--space-m); font-size: var(--text-s); }

/* --- Utility ------------------------------------------------------------ */
.mt-m { margin-top: var(--space-m); }
.mt-l { margin-top: var(--space-l); }
.text-center { text-align: center; }

/* --- Sanity (not mobile pass) ------------------------------------------- */
@media (max-width: 900px) {
  .hero__card-label { white-space: normal; }

  .newsletter,
  .contact-block,
  .two-col { grid-template-columns: 1fr; }

  .card-grid,
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__stage {
    width: 100%;
    gap: var(--space-s);
  }

  .testimonials__btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .testimonial-slide { padding-inline: var(--space-s); }

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