/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
  --color-bg: #f5f2ec;
  --color-bg-card: #ede9e1;
  --color-bg-placeholder: #e8e4dc;
  --color-bg-dark: #1d4a3a;
  --color-text: #1a1714;
  --color-text-secondary: #6b6560;
  --color-accent: #1d4a3a;
  --color-accent-light: #ebf5f0;
  --color-border: rgba(26, 23, 20, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max-width: 1220px;
  --section-padding: 120px 0;
  --section-padding-mobile: 60px 0;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-floema: cubic-bezier(0.25, 0.1, 0.25, 1);
  /* Outline icon kit (thin stroke, rounded caps — matches UI reference) */
  --icon-stroke: 1.75;
  --icon-color: #1a2838;
  --icon-color-muted: #5a6570;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display-hero {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.0375em;
  margin: 0;
  text-align: center;
}

.display-hero strong {
  font-weight: 700;
}

.heading-xl {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03125em;
}

/* Tighter measure for long multi-clause headlines (~30% wider than 32rem) */
.heading-xl--narrow {
  max-width: calc(32rem * 1.3);
}

.heading-lg {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
}

.body-lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 640px;
}

/* Leading paragraph + circular icon (sections with long body copy) */
.lead-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 680px;
}

.lead-with-icon__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-top: 0.12rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(237, 233, 225, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color-muted);
}

.lead-with-icon__icon svg {
  width: 22px;
  height: 22px;
}

.lead-with-icon .body-lead {
  margin-top: 0;
  max-width: none;
}

/* About: compact highlight chips above the story column */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.75rem 0 0;
}

.about-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}

.about-highlight__ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color-muted);
}

.about-highlight__ico svg {
  width: 18px;
  height: 18px;
}

/* Who we are: photo column starts at heading (desktop), like reference layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.about-layout__body {
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 4rem;
    row-gap: 0;
  }

  .about-layout__label {
    grid-column: 1;
    grid-row: 1;
  }

  .about-layout__head {
    grid-column: 1;
    grid-row: 2;
  }

  .about-layout__highlights {
    grid-column: 1;
    grid-row: 3;
  }

  .about-layout__body {
    grid-column: 1;
    grid-row: 4;
    margin-top: 2.5rem;
  }

  .about-layout__photo {
    grid-column: 2;
    grid-row: 2 / 5;
    align-self: start;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  .about-layout__photo {
    margin-top: 2.5rem;
  }
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  text-align: center;
  margin: 3rem auto;
  max-width: 900px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--color-border);
}

.pull-quote--plain {
  border-left: 0;
  padding-left: 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* ============================================
   UTILITIES (non-Tailwind)
   ============================================ */

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: var(--section-padding-mobile);
}

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

/* ============================================
   ICONS (unified outline style)
   ============================================ */

svg.ui-icon-svg {
  display: block;
  stroke: currentColor;
  stroke-width: var(--icon-stroke);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

svg.ui-icon-svg circle,
svg.ui-icon-svg path,
svg.ui-icon-svg rect,
svg.ui-icon-svg line,
svg.ui-icon-svg polyline,
svg.ui-icon-svg polygon {
  stroke: currentColor;
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--ease-floema),
    border-color 0.45s var(--ease-floema),
    backdrop-filter 0.45s var(--ease-floema);
}

.site-nav.scrolled {
  background: rgba(245, 242, 236, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--color-border);
}

.site-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav__logo {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav__logo sup {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 1024px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  padding: 6px 0;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-floema);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}

/* Black pill CTA — matches `.btn--ghost-green` (no hero-only top margin) */
.site-nav__link--cta {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-text);
  color: #e8e4dc;
  background: #000000;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.site-nav__link--cta::after {
  display: none;
}

.site-nav__link--cta:hover,
.site-nav__link--cta:focus-visible {
  background: rgba(26, 23, 20, 0.06);
  color: var(--color-text);
}

.site-nav__link--cta:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 4px;
}

.site-nav__burger {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(245, 242, 236, 0.35);
}

.site-nav__burger svg path,
.mobile-menu__close svg path {
  stroke: currentColor;
  stroke-width: var(--icon-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav__burger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

@media (min-width: 1024px) {
  .site-nav__burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(245, 242, 236, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}

.mobile-menu__link--cta {
  margin-top: 0.5rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-text);
  color: #e8e4dc;
  background: #000000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.mobile-menu__link--cta:hover,
.mobile-menu__link--cta:focus-visible {
  background: rgba(26, 23, 20, 0.06);
  color: var(--color-text);
}

.mobile-menu__link--cta:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 4px;
}

.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.mobile-menu__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(29, 74, 58, 0.06), transparent 55%),
    radial-gradient(900px 500px at 80% 90%, rgba(26, 23, 20, 0.04), transparent 50%);
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hero__sub {
  margin: 1.75rem auto 0;
  max-width: 520px;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

/* Hero CTA: border + label match headline color (--color-text) */
.btn--ghost-green {
  margin-top: 2.25rem;
  border-color: var(--color-text);
  color: #e8e4dc;
  background: #000000;
}

.btn--ghost-green:hover,
.btn--ghost-green:focus-visible {
  background: rgba(26, 23, 20, 0.06);
}

.btn--ghost-green:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 4px;
}

.btn--white-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--white-ghost:hover,
.btn--white-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn--white-ghost:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Leading icon inside pill (e.g. Calendly CTA) — no outer ring */
.btn--calendly {
  gap: 0.65rem;
}

.btn__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn__ico .ui-icon-svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */

.section-head {
  max-width: 720px;
}

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

.section-head--center .body-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PAIN CARDS
   ============================================ */

.pain-grid {
  margin-top: 3rem;
}

.pain-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.35rem;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.06);
}

.pain-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.75rem;
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-card__icon .ui-icon-svg {
  width: 24px;
  height: 24px;
}

.pain-card__title {
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 0.5rem;
}

.pain-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ============================================
   ABOUT — photo (Who we are, right column)
   ============================================ */

.about-photo {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-placeholder);
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.08);
}

.about-photo__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 933;
  object-fit: cover;
}

.about-photo__badge {
  z-index: 1;
}

.media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(245, 242, 236, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   VALUE LIST + CHECKMARKS
   ============================================ */

.value-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.value-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.value-row p {
  margin: 0;
  font-size: 15px;
}

.checkmark {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  color: var(--color-accent);
  box-sizing: border-box;
}

/* Same centered forest check as `.compare__status--yes` (readable at small size) */
.checkmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%231D4A3A' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2 5 8.7 9.5 3.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.compare-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

/* Card shell for enhanced compare (screenshot-style) */
.compare-block {
  margin-top: 3.5rem;
  width: 100%;
}

.compare-block__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.compare-block__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin: 0 0 1.75rem;
  max-width: 42rem;
  line-height: 1.6;
}

.compare-block .compare-wrap {
  margin-top: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-bg);
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.compare:not(.compare--enhanced) {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 300;
}

.compare:not(.compare--enhanced) th,
.compare:not(.compare--enhanced) td {
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  vertical-align: top;
}

.compare:not(.compare--enhanced) thead th {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.compare:not(.compare--enhanced) tbody th {
  font-weight: 400;
  text-align: left;
  color: var(--color-text);
}

/* Enhanced 4-column compare (icons + status markers) */
.compare.compare--enhanced {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  font-weight: 400;
}

.compare--enhanced th,
.compare--enhanced td {
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 18px 20px;
  vertical-align: middle;
}

.compare--enhanced thead th {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.compare--enhanced tr > *:last-child {
  border-right: none;
}

.compare--enhanced tbody tr:last-child th,
.compare--enhanced tbody tr:last-child td {
  border-bottom: none;
}

.compare__th-feature {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  width: 24%;
}

.compare__th-us {
  text-align: center;
  background: #eff6f3;
  width: 26%;
}

.compare__th-us-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.compare__th-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.compare__th-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(29, 74, 58, 0.14);
  color: var(--color-accent);
}

.compare__th-party {
  text-align: center;
  vertical-align: middle;
}

.compare__th-party-inner {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

.compare__th-svg {
  width: 28px;
  height: 28px;
}

.compare__th-party-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-transform: none;
}

.compare__feature {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  vertical-align: middle;
}

.compare__feature-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.compare__feature-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color-muted);
}

.compare__feature-ico svg,
.compare__th-svg {
  width: 20px;
  height: 20px;
  color: inherit;
}

.compare__feature-label {
  line-height: 1.35;
}

.compare__cell {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-secondary);
  vertical-align: top;
}

.compare__cell-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.compare__cell--us {
  background: #eff6f3;
  color: var(--color-text);
  font-weight: 400;
}

.compare__cell--pm-yes {
  color: var(--color-text);
}

.compare__copy {
  flex: 1;
  min-width: 0;
}

.compare__status {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-top: 3px;
}

.compare__status--yes {
  background: transparent;
  border: 2px solid var(--color-accent);
  box-sizing: border-box;
}

/* Centered check — forest stroke on clear circle */
.compare__status--yes::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%231D4A3A' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2 5 8.7 9.5 3.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.compare__status--no {
  border: 2px solid #d97941;
  background: transparent;
  box-sizing: border-box;
}

.compare__status--no::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  margin-top: -1px;
  margin-left: -4px;
  background: #d97941;
  border-radius: 2px;
}

/* ============================================
   CALCULATOR
   ============================================ */

.calc-eyebrow {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
}

.calc-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 1rem;
  max-width: 36ch;
}

.calc-form {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  max-width: 900px;
}

@media (min-width: 768px) {
  .calc-form {
    padding: 2.25rem 2rem;
  }
}

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

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

.calc-field--wide {
  grid-column: 1 / -1;
}

.calc-label {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.calc-input,
.calc-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  background: rgba(245, 242, 236, 0.65);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.calc-input::placeholder {
  color: rgba(107, 101, 96, 0.65);
}

.calc-input:hover,
.calc-select:hover {
  border-color: rgba(26, 23, 20, 0.22);
}

.calc-input:focus,
.calc-select:focus {
  outline: none;
  border-color: rgba(29, 74, 58, 0.45);
  box-shadow: 0 0 0 3px rgba(29, 74, 58, 0.12);
}

.calc-hint {
  margin: 0.4rem 0 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.calc-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(245, 242, 236, 0.5);
  gap: 2px;
}

.calc-toggle__opt {
  position: relative;
  cursor: pointer;
}

.calc-toggle__opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-toggle__opt span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition:
    background var(--transition),
    color var(--transition);
}

.calc-toggle__opt input:focus-visible + span {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.calc-toggle__opt input:checked + span {
  background: rgba(29, 74, 58, 0.12);
  color: var(--color-accent);
}

.btn--calc-submit {
  margin-top: 1.75rem;
  border-color: var(--color-text);
  color: var(--color-text);
  background: transparent;
}

.btn--calc-submit:hover,
.btn--calc-submit:focus-visible {
  background: rgba(26, 23, 20, 0.06);
}

.btn--calc-submit:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 4px;
}

.calc-results {
  margin-top: 3rem;
  max-width: 900px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease-floema),
    transform 0.65s var(--ease-floema);
}

.calc-results.calc-results--visible {
  opacity: 1;
  transform: translateY(0);
}

.calc-results__total-wrap {
  text-align: left;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.calc-results__eyebrow {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 0 0 0.35rem;
}

.calc-results__total {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0;
}

.calc-results__sub {
  margin: 0.75rem 0 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 36rem;
}

.calc-stat-card {
  border: 1px solid var(--color-border);
  background: rgba(237, 233, 225, 0.55);
  padding: 1.35rem 1.25rem;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s var(--ease-floema),
    transform 0.55s var(--ease-floema);
}

.calc-results.calc-results--visible .calc-stat-card {
  opacity: 1;
  transform: translateY(0);
}

.calc-results.calc-results--visible .calc-stat-card:nth-child(1) {
  transition-delay: 0.08s;
}
.calc-results.calc-results--visible .calc-stat-card:nth-child(2) {
  transition-delay: 0.16s;
}
.calc-results.calc-results--visible .calc-stat-card:nth-child(3) {
  transition-delay: 0.24s;
}
.calc-results.calc-results--visible .calc-stat-card:nth-child(4) {
  transition-delay: 0.32s;
}

.calc-stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}

.calc-stat-card__label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.calc-breakdown {
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.5rem;
}

.calc-breakdown__row {
  display: grid;
  gap: 0.75rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 1fr;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s var(--ease-floema),
    transform 0.5s var(--ease-floema);
}

@media (min-width: 900px) {
  .calc-breakdown__row {
    grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1.2fr);
    align-items: start;
  }
}

.calc-results.calc-results--visible .calc-breakdown__row {
  opacity: 1;
  transform: translateY(0);
}

.calc-results.calc-results--visible .calc-breakdown__row:nth-child(1) {
  transition-delay: 0.12s;
}
.calc-results.calc-results--visible .calc-breakdown__row:nth-child(2) {
  transition-delay: 0.18s;
}
.calc-results.calc-results--visible .calc-breakdown__row:nth-child(3) {
  transition-delay: 0.24s;
}
.calc-results.calc-results--visible .calc-breakdown__row:nth-child(4) {
  transition-delay: 0.3s;
}
.calc-results.calc-results--visible .calc-breakdown__row:nth-child(5) {
  transition-delay: 0.36s;
}

.calc-breakdown__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
}

.calc-breakdown__amt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-accent);
  margin: 0;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .calc-breakdown__amt {
    text-align: right;
  }
}

.calc-breakdown__eliminate {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.calc-breakdown__eliminate strong {
  font-weight: 500;
  color: var(--color-text);
}

.calc-cta-strip {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(235, 245, 240, 0.45);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .calc-cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.calc-cta-strip__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 32rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .calc-results,
  .calc-stat-card,
  .calc-breakdown__row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

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

/* Narrow readable column inside .container (left-aligned on large screens) */
.faq-cont,
.owners-cont,
.offer-cont {
  width: 100%;
  max-width: 820px;
  margin-left: 0;
  margin-right: auto;
}

.faq-cont > .lead-with-icon {
  margin-bottom: 60px;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.5rem;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.faq-category__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(237, 233, 225, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color-muted);
}

.faq-category__icon svg {
  width: 16px;
  height: 16px;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 0;
}

.faq-q {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  transition: transform 0.35s var(--ease-floema);
  flex-shrink: 0;
}

.faq-icon__svg {
  width: 14px;
  height: 14px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.55s var(--ease-floema),
    opacity 0.45s var(--ease-floema);
}

.faq-item.is-open .faq-answer {
  max-height: 1200px;
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ============================================
   STATS / PROOF
   ============================================ */

.stat-grid {
  margin-top: 2.5rem;
}

.stat-card {
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  padding: 1.75rem 1.5rem;
  height: 100%;
}

.stat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color-muted);
  margin-bottom: 1rem;
}

.stat-card__icon svg {
  width: 20px;
  height: 20px;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 0.35rem;
  line-height: 1;
}

.stat-card__label {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.stat-card__meta {
  margin: 0.35rem 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process {
  margin-top: 2.5rem;
}

.process-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  background: rgba(237, 233, 225, 0.45);
  height: 100%;
  overflow: hidden;
}

.process-step__watermark {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: rgb(26 23 20 / 97%);
  pointer-events: none;
}

.process-step__icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  margin-bottom: 0.9rem;
}

.process-step__icon svg {
  width: 20px;
  height: 20px;
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}

.process-step__text {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

/* ============================================
   FINAL CTA
   ============================================ */

.cta-final {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: var(--section-padding-mobile);
}

.cta-final .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-final {
    padding: var(--section-padding);
  }
}

.cta-final h2 {
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 0 0 1rem;
  letter-spacing: -0.03125em;
}

.cta-final .sub {
  font-size: 20px;
  font-weight: 300;
  opacity: 0.88;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.cta-final .fine {
  margin-top: 0;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.65;
  text-align: center;
}

.cta-final__fine-row {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.cta-final__fine-row .fine {
  margin-top: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 72px 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.footer__tag {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.footer__nav a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  color: var(--color-text-secondary);
}

.footer__nav a[href="#contact"] {
  color: var(--color-text);
}

.footer__placeholder {
  cursor: default;
  opacity: 0.45;
  pointer-events: none;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--color-accent);
}

.footer__contact p {
  margin: 0 0 0.35rem;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.footer__strip {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 12px;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .footer__strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* ============================================
   RESPONSIVE (mobile-first breakpoints)
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================
   LEASING AGENTS PAGE
   ============================================ */

.hero--leasing .display-hero {
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 1.5rem;
}

.hero__sub--leasing {
  font-size: 17px;
  max-width: 560px;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.scroll-indicator__label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  margin: 10px auto 0;
  background: rgba(26, 23, 20, 0.25);
  transform-origin: top;
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0.2);
    opacity: 0.2;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.2);
    opacity: 0.2;
  }
}

.compare__cell--text .compare__cell-inner {
  align-items: flex-start;
}

.compare__cell--text .compare__copy {
  font-size: 14px;
  line-height: 1.45;
}

.pain-card__emoji {
  font-size: 1.35rem;
  line-height: 1;
}

/* Overrides .cta-final .fine { margin-top: 0 } — Tailwind mt-* loses on specificity */
.cta-final .fine.cta-final__fine-note {
  margin-top: 25px;
}
