:root {
  --bg: #f7f6f2;
  --paper: #fffefb;
  --ink: #0b0b0b;
  --muted: #5f5f5b;
  --line: rgba(11, 11, 11, 0.13);
  --soft: #ece9e2;
  --accent: #b59b7a;
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1420px;
}

.admin-page {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 254, 251, 0.84) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 251, 0.84) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  font-family: var(--sans);
}

.admin-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 6rem;
}

.admin-hero,
.admin-save-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.92);
  box-shadow: var(--shadow);
}

.admin-hero {
  margin-bottom: 1.5rem;
}

.admin-hero h1,
.admin-panel h2 {
  margin: 0.2rem 0 0.5rem;
}

.admin-hero p,
.admin-panel p,
.admin-save-bar p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.admin-auth-card {
  min-width: min(100%, 320px);
  display: grid;
  gap: 0.9rem;
  justify-items: end;
  text-align: right;
}

.admin-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.admin-panel,
.admin-save-bar {
  display: grid;
  gap: 1rem;
}

.admin-panel {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.94);
  box-shadow: 0 14px 36px rgba(30, 28, 24, 0.08);
}

.admin-panel--wide,
.admin-save-bar {
  grid-column: 1 / -1;
}

.admin-panel label,
.crop-control label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

.admin-panel input[type="text"],
.admin-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: white;
  color: var(--ink);
  font: inherit;
}

.admin-panel textarea {
  resize: vertical;
  line-height: 1.6;
}

.crop-control {
  display: grid;
  gap: 0.9rem;
}

.admin-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.admin-preview--portrait {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
}

.admin-home-previews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
  gap: 1rem;
  align-items: end;
}

.admin-home-previews figure {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.admin-home-previews figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-preview--home-desktop {
  aspect-ratio: 4 / 5;
}

.admin-preview--home-mobile {
  aspect-ratio: 16 / 11;
}

.admin-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

.crop-control output {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-save-bar {
  position: sticky;
  bottom: 1rem;
  z-index: 20;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-save-bar .is-error {
  color: #a73520;
}

@media (max-width: 760px) {
  .admin-hero,
  .admin-save-bar,
  .admin-editor {
    grid-template-columns: 1fr;
  }

  .admin-hero,
  .admin-save-bar {
    display: grid;
  }

  .admin-auth-card,
  .admin-auth-card .button-row,
  .admin-save-bar .btn {
    width: 100%;
    justify-items: stretch;
    text-align: left;
  }

  .admin-home-previews {
    grid-template-columns: 1fr;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(11, 11, 11, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 11, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-nav {
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: grid;
  gap: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1;
}

.site-logo strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.site-logo span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.75rem);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links > a:not(.btn) {
  border-bottom: 1px solid transparent;
  padding: 0.25rem 0;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-links > a.is-active {
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn--primary {
  background: var(--ink);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
}

h1 { font-size: clamp(3.4rem, 7.5vw, 6.75rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 4rem); }
h3 { margin: 0; font-size: 1.05rem; line-height: 1.25; }
p { margin: 0; color: var(--muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #6f6960;
}

.section,
.page-hero,
.package-builder {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 2rem;
}

body[data-page="services"] .section {
  padding-top: clamp(2.25rem, 4vw, 3.75rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

body[data-page="services"] .page-hero {
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section--compact {
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
}

.split-hero {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-photo {
  min-height: calc(100vh - 78px);
  background: #111;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 78px);
  object-fit: cover;
  object-position: 42% center;
  filter: grayscale(1);
}

.hero-copy {
  min-height: calc(100vh - 78px);
  padding: clamp(2.2rem, 5vw, 5rem) clamp(2rem, 5.5vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.trust-row,
.mini-trust,
.footer-tools {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-row {
  margin-top: 2rem;
  justify-content: space-between;
}

.trust-row article {
  max-width: 190px;
  display: grid;
  gap: 0.45rem;
}

.trust-row .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.trust-row p {
  font-size: 0.86rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.panel,
.showcase-card,
.package-card,
.extra-option,
.builder-summary,
.copy-proof article,
.testimonial,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.86);
}

.card,
.panel,
.testimonial {
  padding: clamp(1.4rem, 2.7vw, 2.4rem);
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.1rem;
  align-items: start;
}

.service-card p,
.service-card a { grid-column: 2; }

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.process-detail-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.process-detail-card h2,
.process-detail-card p {
  margin: 0;
}

.card-icon {
  width: 3.9rem;
  height: 3.9rem;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 7px;
}

.card-icon .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.72fr;
  gap: 1rem;
  align-items: stretch;
  padding-top: 0;
}

.panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel--dark {
  background: #111;
  color: white;
  background-image: linear-gradient(135deg, #111, #25231f);
}

.panel--dark p { color: rgba(255, 255, 255, 0.74); }

.panel--warm {
  background: #eee8de;
}

.services-final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.services-final-cta p:not(.eyebrow) {
  max-width: 720px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step {
  display: grid;
  gap: 0.55rem;
}

.process-step span {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-weight: 700;
}

.testimonial {
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--muted);
  font-style: normal;
}

.page-hero {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.08rem;
}

.centered {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.mini-trust span,
.footer-tools span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--ink);
}

.builder-step {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.package-card {
  position: relative;
  padding: 2rem 1.6rem 1.4rem;
  text-align: left;
  display: grid;
  gap: 0.75rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(82, 65, 42, 0.13);
  transform: translateY(-3px);
}

.package-card strong,
.builder-summary strong,
.price {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.package-card small,
.builder-summary small,
.extra-option small {
  color: var(--muted);
}

.badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

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

li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.42rem 0;
}

.builder-step--extras {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
  padding-right: max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
  background: rgba(236, 233, 226, 0.62);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.extras-section {
  margin-top: 1.5rem;
  text-align: left;
}

.extras-section + .extras-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.extras-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.extras-heading h3,
.extras-heading p {
  margin: 0;
}

.extras-heading p {
  color: var(--muted);
}

.care-grid {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.extra-option {
  min-height: 4.7rem;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: left;
  cursor: pointer;
}

.care-option {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.care-option.is-selected {
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(82, 65, 42, 0.11);
  transform: translateY(-2px);
}

.extra-option span {
  display: grid;
  gap: 0.2rem;
}

.extra-option input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--ink);
}

.builder-summary {
  position: sticky;
  bottom: 0;
  z-index: 20;
  margin: 0 -2rem;
  padding: 1.2rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border-left: 0;
  border-right: 0;
  background: rgba(255, 254, 251, 0.96);
  backdrop-filter: blur(14px);
}

.builder-summary button {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

.has-modal {
  overflow: hidden;
}

.package-builder--configurator {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.builder-main {
  min-width: 0;
}

.builder-sidebar {
  position: sticky;
  top: 108px;
}

.builder-hero {
  display: grid;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.builder-hero h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.builder-hero > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.05rem;
}

.reassurance-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.reassurance-row span {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-right: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
}

.reassurance-row span:last-child {
  border-right: 0;
}

.package-builder--configurator .builder-step {
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: left;
}

.builder-step__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.builder-step__header > div {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.builder-step__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.builder-step__header p {
  margin-top: 0.35rem;
}

.step-number {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
  flex: 0 0 auto;
}

.cost-label,
.soft-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 5px;
  background: var(--soft);
  color: #635a50;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.package-builder--configurator .package-grid,
.management-grid,
.care-plan-grid,
.add-ons-grid,
.next-steps-grid {
  display: grid;
  gap: 1rem;
}

.package-builder--configurator .package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.management-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.care-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.add-ons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.configurator-card,
.package-summary-card,
.next-steps-card,
.package-modal,
.summary-drawer__panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.9);
}

.configurator-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.45rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.configurator-card.is-selected {
  border-color: var(--ink);
  box-shadow: 0 18px 45px rgba(82, 65, 42, 0.12);
  transform: translateY(-2px);
}

.configurator-card .selection-dot {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: transparent;
  background: transparent;
}

.configurator-card.is-selected .selection-dot {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.configurator-card h3 {
  padding-right: 2rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.configurator-card strong {
  font-size: 1.35rem;
}

.configurator-card ul {
  padding-top: 0.3rem;
  font-size: 0.88rem;
}

.configurator-card li {
  margin: 0.32rem 0;
}

.configurator-card .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.best-for {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.best-for span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  padding: 0.3rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.card-title-row h3 {
  padding-right: 0;
}

.management-pricing {
  display: grid;
  gap: 0.15rem;
}

.management-pricing strong {
  font-size: 1rem;
}

.management-pricing small {
  color: var(--muted);
}

.management-card .btn {
  align-self: end;
}

.info-note,
.builder-note {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border-radius: 7px;
  background: rgba(236, 233, 226, 0.72);
  color: var(--muted);
}

.care-plan-card {
  min-height: 100%;
}

.care-service-card,
.care-plan-card {
  gap: 0.65rem;
}

.care-plan-card .soft-badge {
  justify-self: start;
  max-width: calc(100% - 2.5rem);
  white-space: normal;
  line-height: 1.15;
}

.care-plan-note {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.care-plan-card > button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

.add-on-card {
  gap: 0.55rem;
}

.add-on-card label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  cursor: pointer;
}

.add-on-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-mark {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: transparent;
  background: var(--paper);
}

.add-on-card.is-selected .checkbox-mark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.add-on-card small {
  float: right;
  color: var(--ink);
  font-weight: 800;
}

.quantity-selector {
  width: min(100%, 190px);
  min-height: 2.2rem;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-selector button {
  height: 100%;
  border: 0;
  background: var(--soft);
  cursor: pointer;
  font-weight: 800;
}

.quantity-selector span {
  text-align: center;
  font-size: 0.86rem;
}

.package-summary-card {
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 18px 55px rgba(82, 65, 42, 0.1);
}

.package-summary-card h2,
.summary-drawer__panel h2,
.package-modal h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.summary-block,
.summary-total {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.summary-block > div,
.summary-addons div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.summary-block strong,
.summary-addons strong {
  font-size: 0.95rem;
}

.summary-block span,
.summary-addons span {
  color: var(--ink);
}

.summary-addons {
  display: grid;
  gap: 0.35rem;
}

.summary-addons > span {
  color: var(--muted);
}

.summary-total strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.75rem;
  line-height: 1;
}

.summary-note,
.summary-reassurance {
  font-size: 0.87rem;
}

.summary-note {
  display: grid;
  gap: 0.7rem;
}

.summary-note p {
  margin: 0;
}

.summary-upgrade-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.8rem;
  border: 1px solid rgba(181, 155, 122, 0.45);
  border-radius: 8px;
  background: rgba(238, 232, 222, 0.74);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.summary-upgrade-note .icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.12rem;
}

.summary-reassurance {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.next-steps-card {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  display: grid;
  gap: 1.3rem;
}

.next-steps-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.next-steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.next-steps-grid article {
  display: grid;
  gap: 0.35rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.next-steps-grid article:last-child {
  border-right: 0;
}

.next-steps-grid h4 {
  margin: 0;
  font-size: 1rem;
}

.modal-backdrop,
.summary-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(11, 11, 11, 0.28);
  backdrop-filter: blur(5px);
}

.package-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: min(760px, calc(100vh - 3rem));
  overflow: auto;
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 1.25rem;
  box-shadow: 0 26px 70px rgba(11, 11, 11, 0.18);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-detail-list {
  display: grid;
  gap: 1.05rem;
}

.modal-detail-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}

.modal-detail-list h3 {
  margin-bottom: 0.2rem;
}

.modal-actions {
  display: grid;
  gap: 0.7rem;
}

.mobile-summary-bar,
.summary-drawer {
  display: none;
}

.summary-drawer:not([hidden]) {
  display: grid;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.filter-row button {
  min-height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-weight: 700;
  cursor: pointer;
}

.filter-row button.is-active {
  background: var(--ink);
  color: white;
}

.showcase-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.showcase-category-card {
  min-height: 12rem;
  padding: 1.1rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.88);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.showcase-category-card:hover,
.showcase-category-card:focus-visible,
.showcase-category-card.is-active {
  border-color: var(--ink);
  box-shadow: 0 16px 40px rgba(82, 65, 42, 0.09);
  transform: translateY(-2px);
}

.showcase-category-card.is-active {
  background: var(--ink);
  color: white;
}

.showcase-category-card > .icon {
  width: 2rem;
  height: 2rem;
}

.showcase-category-card span {
  display: grid;
  gap: 0.25rem;
}

.showcase-category-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.showcase-category-card small,
.showcase-category-card p {
  color: var(--muted);
}

.showcase-category-card.is-active small,
.showcase-category-card.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-category-card p {
  font-size: 0.86rem;
}

.showcase-examples-header {
  margin-bottom: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.showcase-examples-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-card {
  overflow: hidden;
  background: var(--paper);
}

.mockup {
  min-height: 245px;
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.mock-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}

.mock-body {
  position: relative;
  z-index: 2;
  max-width: 65%;
  align-self: center;
}

.mock-body h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 0.92;
  margin-bottom: 0.7rem;
}

.mock-body p {
  font-size: 0.78rem;
}

.mock-button {
  margin-top: 0.9rem;
  border: 0;
  border-radius: 4px;
  padding: 0.45rem 0.7rem;
  display: inline-flex;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
}

.mock-media {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 38%;
  height: 58%;
  border-radius: 6px;
  background: linear-gradient(135deg, #ddd, #a3a09a);
}

.mockup--bold,
.mockup--conversion {
  background: #0b0d0e;
  color: white;
}

.mockup--bold p,
.mockup--conversion p { color: rgba(255,255,255,0.7); }
.mockup--bold .mock-media { background: conic-gradient(from 50deg, #111, #888, #1b1b1b, #d7d7d7, #111); border-radius: 999px; }
.mockup--gallery .mock-media { background: linear-gradient(135deg, #d8d0c4, #786f63); }
.mockup--warm { background: #eadfce; }
.mockup--editorial .mock-media { background: linear-gradient(135deg, #f7f7f7, #686868); }
.mockup--conversion .mock-media { background: linear-gradient(135deg, #142d42, #d79d72); }
.mockup--launchpad { background: linear-gradient(135deg, #061527 0 55%, #f58220 55% 56%, #ffffff 56%); color: white; }
.mockup--launchpad p { color: rgba(255,255,255,0.74); }
.mockup--launchpad .mock-button { background: #f58220; color: white; }
.mockup--launchpad .mock-media { background: linear-gradient(135deg, #ffffff, #122238 48%, #f58220); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.mockup--freshfork { background: linear-gradient(135deg, #fffdf8 0 58%, #e9f3e6 58%); color: #153b20; }
.mockup--freshfork .mock-body h3 { font-family: Inter, sans-serif; font-weight: 900; letter-spacing: 0; }
.mockup--freshfork .mock-button { background: #276b32; color: white; }
.mockup--freshfork .mock-media { background: url("/assets/freshfork-plan-balanced.png") center / cover; box-shadow: 0 14px 30px rgba(31, 79, 36, 0.22); }
.mockup--formfield { background: #f4f1eb; color: #171717; }
.mockup--formfield .mock-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: 0; }
.mockup--formfield .mock-button { background: #171717; color: white; }
.mockup--formfield .mock-media { background: url("/assets/form-field-hero.png") center / cover; box-shadow: 0 14px 30px rgba(23, 23, 23, 0.2); }
.mockup--mossline { background: #f4ecd9; color: #253018; }
.mockup--mossline .mock-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: 0; }
.mockup--mossline .mock-button { background: #59632d; color: white; }
.mockup--mossline .mock-media { background: url("/assets/mossline-hero.png") center / cover; box-shadow: 0 14px 30px rgba(52, 58, 30, 0.18); }
.mockup--sterling { background: linear-gradient(135deg, #090909 0 58%, #b28a52 58% 59%, #f3eee5 59%); color: #f7f0e6; }
.mockup--sterling p { color: rgba(247, 240, 230, 0.74); }
.mockup--sterling .mock-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: 0; }
.mockup--sterling .mock-button { background: #b28a52; color: #111; }
.mockup--sterling .mock-media { background: url("/assets/sterling-vale-hero.png") center / cover; box-shadow: 0 14px 32px rgba(0,0,0,0.35); }
.mockup--ellis { background: linear-gradient(135deg, #06111a 0 58%, #b8894d 58% 59%, #f4efe6 59%); color: #f8f1e7; }
.mockup--ellis p { color: rgba(248, 241, 231, 0.74); }
.mockup--ellis .mock-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: 0; }
.mockup--ellis .mock-button { background: #b8894d; color: #08121a; }
.mockup--ellis .mock-media {
  background:
    linear-gradient(to top, rgba(3, 12, 18, 0.38), transparent 58%),
    url("/assets/launchpad-consulting-about.png") center / cover;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

/* Vale Medical Aesthetics showcase */
.vale-page {
  --vale-black: #0d0d0b;
  --vale-charcoal: #171613;
  --vale-ink: #191714;
  --vale-muted: #6d6255;
  --vale-paper: #f7f1e8;
  --vale-cream: #fffaf2;
  --vale-champagne: #e8d9c3;
  --vale-gold: #c49a61;
  --vale-gold-dark: #9f7740;
  --vale-line: rgba(25, 23, 20, 0.14);
  --vale-serif: "Cormorant Garamond", Georgia, serif;
  --vale-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background: var(--vale-paper);
  color: var(--vale-ink);
  font-family: var(--vale-sans);
  overflow-x: hidden;
}

.vale-page::before {
  display: none;
}

.vale-page a {
  color: inherit;
}

.vale-showcase-note {
  display: grid;
  gap: 0.35rem;
  max-width: 1180px;
  margin: 1rem auto 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 154, 97, 0.35);
  background: #fffaf4;
  color: #302a23;
}

.vale-showcase-note strong,
.vale-showcase-note span {
  color: #8b6737;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vale-showcase-note p {
  margin: 0;
  color: #675c50;
  line-height: 1.6;
}

.vale-site {
  overflow: hidden;
  background: var(--vale-paper);
}

.vale-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1220px;
  margin: 0 auto;
  padding: 1.6rem 1.35rem;
  color: #fffaf2;
}

.vale-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.vale-mark {
  color: var(--vale-gold);
  font-family: var(--vale-serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.75;
}

.vale-brand span {
  display: block;
  font-family: var(--vale-serif);
  font-size: 1.38rem;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.vale-brand small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.vale-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vale-nav a {
  position: relative;
  padding-bottom: 0.45rem;
  text-decoration: none;
}

.vale-nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--vale-gold);
  content: "";
}

.vale-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  background: var(--vale-gold);
  color: #15120f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.vale-btn--outline {
  border-color: rgba(255, 250, 242, 0.55);
  background: transparent;
  color: #fffaf2;
}

.vale-btn--dark-outline {
  border-color: rgba(255, 250, 242, 0.5);
  background: transparent;
  color: #fffaf2;
}

.vale-hero {
  position: relative;
  min-height: 640px;
  padding: 9.5rem 1.35rem 6rem;
  background: var(--vale-black);
  color: #fffaf2;
}

.vale-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 11, 0.98) 0 40%, rgba(13, 13, 11, 0.64) 58%, rgba(13, 13, 11, 0.14) 100%),
    url("/assets/vale-medical-hero.png") right center / cover no-repeat;
  content: "";
}

.vale-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
}

.vale-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.1rem;
  color: var(--vale-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vale-eyebrow::after {
  width: 3rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.vale-hero h1,
.vale-section-title,
.vale-about h2,
.vale-experience blockquote,
.vale-final h2,
.vale-footer-brand span {
  font-family: var(--vale-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.vale-hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(3.25rem, 6.4vw, 5.8rem);
  line-height: 0.92;
}

.vale-hero h1 em {
  color: var(--vale-gold);
  font-style: italic;
}

.vale-hero p {
  max-width: 410px;
  margin: 1.5rem 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.vale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.vale-section {
  padding: clamp(4rem, 7vw, 6.5rem) 1.35rem;
}

.vale-section__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.vale-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.vale-section-title {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 3.9rem);
  line-height: 0.98;
}

.vale-text-link {
  color: var(--vale-gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.vale-services {
  background: var(--vale-cream);
}

.vale-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.vale-service-card {
  min-width: 0;
  border: 1px solid var(--vale-line);
  background: #fbf6ee;
}

.vale-service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.vale-service-card__body {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 2rem 1rem 1.4rem;
}

.vale-service-card__icon {
  position: absolute;
  top: -1.15rem;
  left: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(196, 154, 97, 0.62);
  border-radius: 50%;
  background: #fbf6ee;
  color: var(--vale-gold-dark);
  font-size: 1rem;
}

.vale-service-card h3 {
  margin: 0;
  font-family: var(--vale-serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.vale-service-card p {
  margin: 0;
  color: #5f554b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.vale-about {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  background: #f3eadc;
}

.vale-about__image img,
.vale-experience__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.vale-about__content {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem);
}

.vale-about h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.05rem);
  line-height: 0.98;
}

.vale-about p {
  max-width: 590px;
  margin: 1.2rem 0 0;
  color: #5a5148;
  line-height: 1.75;
}

.vale-checklist {
  display: grid;
  gap: 0.58rem;
  margin: 1.2rem 0 1.7rem;
  padding: 0;
  color: #4f453b;
  list-style: none;
}

.vale-checklist li::before {
  margin-right: 0.55rem;
  color: var(--vale-gold-dark);
  content: "✓";
}

.vale-trust {
  padding: 3.6rem 1.35rem;
  background:
    radial-gradient(circle at 50% -20%, rgba(196, 154, 97, 0.16), transparent 38%),
    var(--vale-black);
  color: #fffaf2;
  text-align: center;
}

.vale-trust .vale-eyebrow {
  justify-content: center;
  margin-bottom: 2.2rem;
}

.vale-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.vale-trust-card {
  padding: 0 1.8rem;
  border-right: 1px solid rgba(255, 250, 242, 0.2);
}

.vale-trust-card:last-child {
  border-right: 0;
}

.vale-trust-card svg {
  width: 2.3rem;
  height: 2.3rem;
  color: var(--vale-gold);
  stroke-width: 1.3;
}

.vale-trust-card h3 {
  margin: 1rem 0 0.55rem;
  font-family: var(--vale-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.vale-trust-card p {
  margin: 0 auto;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.vale-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--vale-paper);
}

.vale-experience__copy {
  padding-left: max(1.35rem, calc((100vw - 1160px) / 2));
}

.vale-experience blockquote {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-style: italic;
  line-height: 1.22;
}

.vale-quote-mark {
  display: block;
  color: var(--vale-gold);
  font-family: var(--vale-serif);
  font-size: 4.6rem;
  line-height: 0.7;
}

.vale-attribution {
  margin-top: 1.4rem;
  color: #5c5147;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vale-attribution span {
  display: block;
  margin-top: 0.25rem;
  color: var(--vale-gold-dark);
  font-size: 0.68rem;
}

.vale-experience__image {
  padding: 2rem 1.35rem 2rem 0;
}

.vale-experience__image img {
  min-height: 330px;
}

.vale-final {
  background:
    linear-gradient(90deg, rgba(43, 35, 27, 0.98), rgba(74, 58, 42, 0.94)),
    url("/assets/vale-medical-cta.png") center / cover;
  color: #fffaf2;
}

.vale-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 1.35rem;
}

.vale-final h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  line-height: 1;
}

.vale-final p {
  margin: 0.55rem 0 0;
  color: rgba(255, 250, 242, 0.75);
}

.vale-footer {
  padding: 3.2rem 1.35rem 1.3rem;
  background: var(--vale-black);
  color: #fffaf2;
}

.vale-footer__grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) 0.8fr 1fr 1.35fr 1.1fr;
  gap: 2rem;
  max-width: 1160px;
  margin: 0 auto;
}

.vale-footer-brand {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.vale-footer-brand span {
  display: block;
  font-size: 1.45rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.vale-footer-brand small {
  display: block;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.vale-footer p {
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.6;
}

.vale-footer h3 {
  margin: 0 0 0.9rem;
  color: var(--vale-gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vale-footer ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vale-footer li,
.vale-footer a {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}

.vale-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1160px;
  margin: 2.5rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.56);
  font-size: 0.78rem;
}

.vale-footer__bottom div {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 1080px) {
  .vale-nav {
    display: none;
  }

  .vale-hero {
    min-height: 590px;
  }

  .vale-service-grid,
  .vale-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vale-trust-card:nth-child(2) {
    border-right: 0;
  }

  .vale-trust-card:nth-child(n + 3) {
    margin-top: 2rem;
  }

  .vale-about,
  .vale-experience,
  .vale-footer__grid {
    grid-template-columns: 1fr;
  }

  .vale-experience__copy,
  .vale-experience__image {
    padding: 0 1.35rem;
  }

  .vale-experience {
    padding: 4rem 0;
  }
}

@media (max-width: 720px) {
  .vale-showcase-note {
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .vale-header {
    position: relative;
    background: var(--vale-black);
    padding: 1rem;
  }

  .vale-header > .vale-btn {
    display: none;
  }

  .vale-hero {
    min-height: auto;
    padding: 4.8rem 1rem;
  }

  .vale-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 13, 11, 0.86), rgba(13, 13, 11, 0.96)),
      url("/assets/vale-medical-hero.png") center top / cover no-repeat;
  }

  .vale-actions,
  .vale-final__inner,
  .vale-section-head,
  .vale-footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .vale-btn,
  .vale-text-link {
    width: 100%;
  }

  .vale-service-grid,
  .vale-trust-grid {
    grid-template-columns: 1fr;
  }

  .vale-trust-card,
  .vale-trust-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.18);
    padding: 0 0 1.6rem;
  }

  .vale-trust-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .vale-trust-card:nth-child(n + 2) {
    margin-top: 1.6rem;
  }

  .vale-about__content {
    padding: 3rem 1rem;
  }

  .vale-about__image img,
  .vale-experience__image img {
    min-height: 300px;
  }

  .vale-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* Vale Medical Aesthetics actual page layout overrides */
.vale-page .vale-header {
  position: relative;
  max-width: none;
  padding: 0;
  background: var(--vale-black);
}

.vale-page .vale-header .vale-nav {
  display: flex;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  min-height: 92px;
  padding: 1rem 1.35rem;
  align-items: center;
  justify-content: space-between;
}

.vale-page .vale-brand span {
  color: var(--vale-gold);
  font-family: var(--vale-serif);
  font-size: 3.2rem;
  line-height: 0.75;
}

.vale-page .vale-brand strong {
  display: grid;
  color: #fffaf2;
  font-family: var(--vale-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.vale-page .vale-brand small {
  color: rgba(255, 250, 242, 0.76);
  font-family: var(--vale-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.vale-page .vale-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
}

.vale-page .vale-links a {
  position: relative;
  color: #fffaf2;
  padding-bottom: 0.45rem;
  text-decoration: none;
  white-space: nowrap;
}

.vale-page .vale-nav > .vale-brand::after {
  display: none;
}

.vale-page .vale-links a:first-child::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--vale-gold);
  content: "";
}

.vale-page .vale-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  padding: 0;
  background: var(--vale-black);
}

.vale-page .vale-hero::before {
  display: none;
}

.vale-page .vale-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.vale-page .vale-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 11, 0.98) 0 40%, rgba(13, 13, 11, 0.68) 58%, rgba(13, 13, 11, 0.14) 100%),
    linear-gradient(0deg, rgba(13, 13, 11, 0.22), transparent 28%);
}

.vale-page .vale-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1220px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 10rem 1.35rem 6rem;
}

.vale-page .vale-btn {
  white-space: nowrap;
}

.vale-page .vale-header .vale-btn {
  min-width: 205px;
}

.vale-page .vale-services {
  padding: clamp(4rem, 7vw, 6.2rem) 1.35rem;
}

.vale-page .vale-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1160px;
  margin: 0 auto 2.25rem;
}

.vale-page .vale-section-heading h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--vale-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.9rem);
  font-weight: 500;
  line-height: 0.98;
}

.vale-page .vale-eyebrow--dark {
  color: var(--vale-gold-dark);
}

.vale-page .vale-service-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.vale-page .vale-service-grid article {
  min-width: 0;
  border: 1px solid var(--vale-line);
  background: #fbf6ee;
}

.vale-page .vale-service-grid img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.vale-page .vale-service-grid article > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  margin: -1.15rem 0 0 1rem;
  place-items: center;
  border: 1px solid rgba(196, 154, 97, 0.62);
  border-radius: 50%;
  background: #fbf6ee;
  color: var(--vale-gold-dark);
}

.vale-page .vale-service-grid h3,
.vale-page .vale-service-grid p,
.vale-page .vale-service-grid a {
  margin-right: 1rem;
  margin-left: 1rem;
}

.vale-page .vale-service-grid h3 {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-family: var(--vale-serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.vale-page .vale-service-grid p {
  margin-top: 0.75rem;
  color: #5f554b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.vale-page .vale-service-grid a {
  display: inline-flex;
  margin-top: 0.75rem;
  margin-bottom: 1.35rem;
  color: var(--vale-gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vale-page .vale-service-grid a::after,
.vale-page .vale-text-link::after {
  margin-left: 0.45rem;
  content: "→";
}

.vale-page .vale-about > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.vale-page .vale-about > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
}

.vale-page .vale-about ul {
  display: grid;
  gap: 0.58rem;
  margin: 1.2rem 0 1.7rem;
  padding: 0;
  color: #4f453b;
  list-style: none;
}

.vale-page .vale-about li::before {
  margin-right: 0.55rem;
  color: var(--vale-gold-dark);
  content: "✓";
}

.vale-page .vale-trust > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.vale-page .vale-trust article {
  padding: 0 1.8rem;
  border-right: 1px solid rgba(255, 250, 242, 0.2);
}

.vale-page .vale-trust article:last-child {
  border-right: 0;
}

.vale-page .vale-trust article > span {
  color: var(--vale-gold);
  font-size: 2.15rem;
}

.vale-page .vale-trust h3 {
  margin: 1rem 0 0.55rem;
  font-family: var(--vale-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.vale-page .vale-trust p:not(.vale-eyebrow) {
  margin: 0 auto;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.vale-page .vale-experience > div {
  padding-left: max(1.35rem, calc((100vw - 1160px) / 2));
}

.vale-page .vale-experience blockquote p {
  max-width: 650px;
  margin: 0;
  font-family: var(--vale-serif);
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.22;
}

.vale-page .vale-experience blockquote p::before {
  display: block;
  color: var(--vale-gold);
  font-size: 4.6rem;
  line-height: 0.7;
  content: "“";
}

.vale-page .vale-experience cite {
  display: block;
  margin-top: 1.4rem;
  color: #5c5147;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vale-page .vale-experience cite span {
  display: block;
  margin-top: 0.25rem;
  color: var(--vale-gold-dark);
  font-size: 0.68rem;
}

.vale-page .vale-experience > img {
  width: calc(100% - 1.35rem);
  min-height: 330px;
  margin: 2rem 1.35rem 2rem 0;
  object-fit: cover;
}

.vale-page .vale-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem max(1.35rem, calc((100vw - 1160px) / 2));
}

.vale-page .vale-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) 0.8fr 1fr 1.35fr 1.1fr;
  gap: 2rem;
  padding-right: max(1.35rem, calc((100vw - 1160px) / 2));
  padding-left: max(1.35rem, calc((100vw - 1160px) / 2));
}

.vale-page .vale-footer nav,
.vale-page .vale-footer > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.vale-page .vale-footer h2 {
  margin: 0 0 0.45rem;
  color: var(--vale-gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vale-page .vale-footer > small {
  grid-column: 1 / -1;
  display: flex;
  gap: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.56);
}

@media (max-width: 1080px) {
  .vale-page .vale-links {
    display: none;
  }

  .vale-page .vale-trust > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }

  .vale-page .vale-trust article:nth-child(2) {
    border-right: 0;
  }

  .vale-page .vale-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .vale-page .vale-showcase-note,
  .vale-page .vale-header,
  .vale-page .vale-hero,
  .vale-page .vale-services,
  .vale-page .vale-about,
  .vale-page .vale-trust,
  .vale-page .vale-experience,
  .vale-page .vale-final,
  .vale-page .vale-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .vale-page .vale-header {
    position: relative;
  }

  .vale-page .vale-header .vale-nav {
    min-height: 76px;
    padding: 1rem;
  }

  .vale-page .vale-header .vale-nav > .vale-btn {
    display: none;
  }

  .vale-page .vale-hero {
    min-height: auto;
  }

  .vale-page .vale-hero > img {
    object-position: 62% 50%;
  }

  .vale-page .vale-hero__shade {
    background: linear-gradient(180deg, rgba(13, 13, 11, 0.84), rgba(13, 13, 11, 0.98));
  }

  .vale-page .vale-hero__copy {
    padding: 4.7rem 1rem;
  }

  .vale-page .vale-hero__copy > *,
  .vale-page .vale-section-heading > *,
  .vale-page .vale-showcase-note > * {
    max-width: calc(100vw - 4.5rem);
    white-space: normal !important;
  }

  .vale-page .vale-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .vale-page .vale-section-heading h2 {
    font-size: clamp(1.75rem, 7.8vw, 2.08rem);
    overflow-wrap: anywhere;
  }

  .vale-page .vale-hero p,
  .vale-page .vale-showcase-note p {
    font-size: 0.93rem;
    overflow-wrap: anywhere;
  }

  .vale-page .vale-hero p {
    max-width: min(300px, calc(100vw - 5.5rem));
  }

  .vale-page .vale-showcase-note p {
    max-width: min(300px, calc(100vw - 5.5rem));
  }

  .vale-page .vale-showcase-note,
  .vale-page .vale-hero__copy,
  .vale-page .vale-section-heading {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .vale-page .vale-section-heading,
  .vale-page .vale-final,
  .vale-page .vale-footer > small {
    flex-direction: column;
    align-items: stretch;
  }

  .vale-page .vale-about > img,
  .vale-page .vale-experience > img {
    min-height: 310px;
  }

  .vale-page .vale-trust > div,
  .vale-page .vale-footer {
    grid-template-columns: 1fr;
  }

  .vale-page .vale-trust article,
  .vale-page .vale-trust article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.18);
    padding-bottom: 1.6rem;
  }

  .vale-page .vale-trust article:last-child {
    border-bottom: 0;
  }
}
.mockup--vale { background: linear-gradient(135deg, #10100e 0 58%, #c49a61 58% 59%, #f4eee4 59%); color: #f8f1e7; }
.mockup--vale p { color: rgba(248, 241, 231, 0.74); }
.mockup--vale .mock-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: 0; }
.mockup--vale .mock-button { background: #c49a61; color: #11100e; }
.mockup--vale .mock-media {
  background:
    linear-gradient(to top, rgba(10, 9, 8, 0.36), transparent 58%),
    url("/assets/vale-medical-hero.png") center / cover;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.mockup--lauren { background: linear-gradient(135deg, #fbf8f2 0 62%, #e8dfd3 62%); color: #171717; }
.mockup--lauren .mock-body h3 { font-family: var(--serif); font-weight: 500; letter-spacing: 0; }
.mockup--lauren .mock-button { background: #171717; color: white; }
.mockup--lauren .mock-media { background: url("/assets/lauren-may-gallery-weddings.png") center / cover; box-shadow: 0 14px 30px rgba(35, 29, 23, 0.14); }
.mockup--avery { background: linear-gradient(135deg, #11070d 0 62%, #e8c982 62% 63%, #24101b 63%); color: #f8f0df; }
.mockup--avery p { color: rgba(248, 240, 223, 0.72); }
.mockup--avery .mock-body h3 { font-family: var(--serif); font-weight: 600; letter-spacing: 0; }
.mockup--avery .mock-button { background: #e5c478; color: #150a10; }
.mockup--avery .mock-media { background: url("/assets/avery-stone-hero.png") center / cover; box-shadow: 0 14px 32px rgba(0,0,0,0.4); }
.mockup--northstar { background: linear-gradient(135deg, #060504 0 58%, #c99b58 58% 59%, #17110b 59%); color: #f8f3e8; }
.mockup--northstar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 28%, rgba(226, 177, 96, 0.24), transparent 24%);
}
.mockup--northstar .mock-body h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-weight: 700; letter-spacing: 0.015em; text-transform: uppercase; }
.mockup--northstar .mock-body h3::after { content: "●"; color: #c99b58; }
.mockup--northstar p { color: rgba(248, 243, 232, 0.72); }
.mockup--northstar .mock-button { background: #c99b58; color: #111; }
.mockup--northstar .mock-media {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 58%),
    url("/assets/lauren-may-about.png") center / cover;
  border: 1px solid rgba(226, 177, 96, 0.32);
  box-shadow: 0 18px 38px rgba(0,0,0,0.34);
}
.mockup--oakember { background: linear-gradient(135deg, #0d0b08 0 54%, #f4eadc 54%); color: #f8f2e8; }
.mockup--oakember .mock-body h3 { font-weight: 500; letter-spacing: 0; }
.mockup--oakember .mock-button { background: #f2eadf; color: #15110c; }
.mockup--oakember .mock-media {
  background:
    linear-gradient(to top, rgba(20, 12, 6, 0.34), transparent 50%),
    url("/assets/form-field-kitchen.png") center / cover;
  border-radius: 2px;
  box-shadow: 0 18px 34px rgba(57, 34, 15, 0.22);
}

.showcase-card__copy {
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
}

.showcase-card__copy p {
  grid-column: 1;
  font-size: 0.92rem;
}

.showcase-empty-state {
  margin-top: 1rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.78);
  text-align: center;
}

.showcase-empty-state h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.showcase-empty-state p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.mini-point {
  display: grid;
  gap: 0.45rem;
}

.mini-point .icon {
  width: 2rem;
  height: 2rem;
}

.copy-proof {
  display: grid;
  gap: 1rem;
}

.copy-proof h2 {
  margin-bottom: 0.5rem;
}

.copy-proof article {
  padding: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.copy-proof strong {
  color: var(--ink);
}

.cta-band {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.usage-note {
  margin-top: 1rem;
  max-width: 980px;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 254, 251, 0.72);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-layout h1 {
  margin: 0.7rem 0 1rem;
}

.about-layout p {
  max-width: 700px;
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  filter: grayscale(1);
}

.contact-layout {
  align-items: start;
}

.booking-panel {
  gap: 1.15rem;
}

.booking-placeholder {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.58);
}

.booking-placeholder p {
  margin: 0;
}

.booking-frame {
  display: grid;
  gap: 0.8rem;
}

.booking-frame iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.booking-frame a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
}

.booking-frame a .icon {
  width: 1rem;
  height: 1rem;
}

.contact-form {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.contact-form label:has(textarea),
.contact-form .btn,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 0.85rem;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(181, 155, 122, 0.45);
  border-color: var(--accent);
}

.form-note {
  font-size: 0.88rem;
}

.form-note.is-success {
  color: #2f6a3f;
}

.form-note.is-error {
  color: #a33a2d;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.site-footer p {
  margin-top: 0.35rem;
}

.footer-tools {
  justify-content: flex-end;
  font-size: 0.9rem;
}

.northline-page {
  --nl-ink: #101010;
  --nl-muted: #5a5a56;
  --nl-line: rgba(16, 16, 16, 0.14);
  --nl-paper: #fffdf8;
  --nl-soft: #f2eee7;
  --nl-gold: #b27a39;
  background: #fbfaf6;
}

.northline-page::before {
  display: none;
}

.northline-showcase-note {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--nl-line);
  background: #f2eee7;
  color: var(--nl-muted);
  font-size: 0.9rem;
}

.northline-showcase-note span {
  flex: 0 0 auto;
  color: var(--nl-gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.northline-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--nl-line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

.northline-nav {
  max-width: 1480px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.northline-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--nl-ink);
}

.northline-brand > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--nl-ink);
  color: white;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.northline-brand strong {
  display: grid;
  gap: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.45rem;
  line-height: 0.92;
}

.northline-brand small {
  font: inherit;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
}

.northline-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.northline-btn {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--nl-ink);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.northline-btn--dark {
  background: var(--nl-ink);
  color: white;
}

.northline-btn--light {
  background: transparent;
  color: var(--nl-ink);
}

.northline-btn--gold {
  border-color: var(--nl-gold);
  background: var(--nl-gold);
  color: white;
}

.northline-hero {
  max-width: 1480px;
  margin: 0 auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--nl-line);
  overflow: hidden;
}

.northline-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(3rem, 7vw, 5.4rem) clamp(2rem, 4vw, 3.2rem) clamp(2rem, 4vw, 3rem) 2rem;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  background: linear-gradient(90deg, #fbfaf6 88%, rgba(251, 250, 246, 0));
}

.northline-eyebrow {
  position: relative;
  padding-left: 2.1rem;
  color: var(--nl-gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.northline-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 1.3rem;
  height: 1px;
  background: var(--nl-gold);
}

.northline-hero h1 {
  max-width: 560px;
  font-size: clamp(3.05rem, 4.45vw, 4.7rem);
  color: var(--nl-ink);
}

.northline-hero__copy > p:not(.northline-eyebrow) {
  max-width: 560px;
  color: var(--nl-muted);
  font-size: 1.18rem;
}

.northline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.6rem;
}

.northline-reassurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nl-line);
}

.northline-reassurance span {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0;
  border-right: 0;
  color: var(--nl-ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.northline-reassurance svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--nl-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.northline-hero__image {
  min-height: 610px;
  margin-left: 0;
  overflow: hidden;
}

.northline-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.northline-trust {
  border-bottom: 1px solid var(--nl-line);
  background: #f5f2ec;
  padding: 1.1rem 2rem 1.35rem;
  text-align: center;
}

.northline-trust p {
  margin-bottom: 1rem;
  color: var(--nl-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.northline-trust div {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.northline-trust span {
  min-height: 2.3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 16, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.65);
  color: #4d4d49;
  font-weight: 800;
  font-size: 0.9rem;
}

.northline-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.4rem) 2rem;
}

.northline-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.northline-section-heading h2,
.northline-featured h2,
.northline-footer-cta h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.northline-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.northline-service-grid article,
.northline-review-grid article {
  border: 1px solid var(--nl-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
}

.northline-service-grid article {
  min-height: 250px;
  padding: 1.5rem 1rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.75rem;
  text-align: center;
}

.northline-line-icon {
  width: 3.9rem;
  height: 3.9rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 122, 57, 0.38);
  border-radius: 7px;
  color: var(--nl-gold);
  background: rgba(178, 122, 57, 0.06);
}

.northline-line-icon svg {
  width: 2.35rem;
  height: 2.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.northline-service-grid h3 {
  max-width: 11rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.northline-service-grid p {
  font-size: 0.88rem;
}

.northline-service-grid a {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.northline-featured {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5rem) 2rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-top: 1px solid var(--nl-line);
}

.northline-featured__copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.northline-before-after {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--nl-line);
  background: var(--nl-soft);
}

.northline-before-after img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.northline-before-after::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
}

.northline-label {
  position: absolute;
  top: 1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 4px;
  background: var(--nl-ink);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.northline-label--before {
  left: 1rem;
}

.northline-label--after {
  right: 1rem;
  background: var(--nl-gold);
}

.northline-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.northline-review-grid article {
  padding: 1.6rem;
  display: grid;
  gap: 0.65rem;
}

.northline-stars {
  color: var(--nl-gold);
  letter-spacing: 0.18em;
}

.northline-review-grid strong {
  color: var(--nl-ink);
}

.northline-review-grid span {
  color: var(--nl-muted);
  font-size: 0.88rem;
}

.northline-footer-cta {
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 3rem) max(2rem, calc((100vw - 1240px) / 2 + 2rem));
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.3fr) auto;
  gap: 1.5rem;
  align-items: center;
  background: #111;
  color: white;
}

.northline-footer-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.northline-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
}

.northline-contact-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.northline-contact-grid strong {
  display: block;
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.willow-page {
  --ww-green: #55735c;
  --ww-deep: #1f4630;
  --ww-sage: #e7eee5;
  --ww-cream: #fbf8f0;
  --ww-paper: #fffdf7;
  --ww-muted: #59625a;
  --ww-line: rgba(31, 70, 48, 0.15);
  background: var(--ww-cream);
  color: var(--ww-deep);
}

.willow-page::before {
  display: none;
}

.willow-showcase-note {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--ww-line);
  background: #f0eadf;
  color: var(--ww-muted);
  font-size: 0.9rem;
}

.willow-showcase-note span,
.willow-eyebrow {
  color: var(--ww-green);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.willow-showcase-note span {
  flex: 0 0 auto;
}

.willow-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--ww-line);
  background: rgba(251, 248, 240, 0.94);
  backdrop-filter: blur(16px);
}

.willow-nav {
  max-width: 1480px;
  min-height: 84px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.willow-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ww-deep);
}

.willow-brand > span {
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ww-green);
  border-radius: 999px;
}

.willow-brand svg,
.willow-icon svg,
.willow-trust svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.willow-brand strong {
  display: grid;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 0.9;
}

.willow-brand small {
  font: inherit;
  font-size: 0.9rem;
  text-align: center;
}

.willow-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 3rem);
  font-size: 0.92rem;
  font-weight: 600;
}

.willow-btn {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  border: 1px solid var(--ww-green);
  border-radius: 8px;
  font-weight: 700;
}

.willow-btn--primary {
  background: var(--ww-green);
  color: white;
}

.willow-btn--secondary {
  background: transparent;
  color: var(--ww-deep);
}

.willow-btn--light {
  border-color: white;
  background: white;
  color: var(--ww-deep);
}

.willow-hero {
  max-width: 1480px;
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  border-bottom: 1px solid var(--ww-line);
  overflow: hidden;
}

.willow-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(3rem, 7vw, 5.5rem) 2rem;
  display: grid;
  align-content: center;
  gap: 1.35rem;
  background: linear-gradient(90deg, var(--ww-cream) 86%, rgba(251, 248, 240, 0));
}

.willow-hero h1 {
  max-width: 610px;
  font-size: clamp(3.4rem, 5.8vw, 6.2rem);
  line-height: 0.94;
  color: var(--ww-deep);
}

.willow-hero p {
  max-width: 560px;
  color: var(--ww-muted);
  font-size: 1.08rem;
}

.willow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.willow-hero__image {
  min-height: 620px;
}

.willow-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.willow-trust {
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-bottom: 1px solid var(--ww-line);
  background: var(--ww-sage);
}

.willow-trust span {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--ww-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.05;
}

.willow-trust svg {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: var(--ww-green);
  color: white;
}

.willow-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.25rem, 6vw, 5rem) 2rem;
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-bottom: 1px solid var(--ww-line);
}

.willow-section-intro {
  display: grid;
  gap: 1rem;
}

.willow-section-intro h2,
.willow-cta h2 {
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  color: var(--ww-deep);
}

.willow-card-grid,
.willow-practitioner-grid {
  display: grid;
  gap: 1rem;
}

.willow-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.willow-card-grid--three,
.willow-practitioner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.willow-practitioner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.willow-service-card,
.willow-practitioner-card,
.willow-testimonial-card {
  border: 1px solid var(--ww-line);
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 14px 38px rgba(31, 70, 48, 0.06);
}

.willow-service-card {
  min-height: 260px;
  padding: 1.5rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.75rem;
  text-align: center;
}

.willow-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f2efe8;
  color: var(--ww-green);
}

.willow-service-card h3,
.willow-practitioner-card h3 {
  font-family: var(--serif);
  color: var(--ww-deep);
  font-size: 1.45rem;
  font-weight: 600;
}

.willow-service-card p,
.willow-practitioner-card p,
.willow-testimonial-card p {
  color: var(--ww-muted);
  font-size: 0.92rem;
}

.willow-service-card a,
.willow-practitioner-card a {
  margin-top: auto;
  color: var(--ww-deep);
  font-weight: 700;
}

.willow-practitioner-card {
  padding: 0.95rem;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 1rem;
}

.willow-portrait {
  min-height: 132px;
  border-radius: 12px;
  background-image: url("/assets/willow-creek-practitioners.png");
  background-size: 300% 100%;
  background-repeat: no-repeat;
}

.willow-portrait--one { background-position: 0% 50%; }
.willow-portrait--two { background-position: 50% 50%; }
.willow-portrait--three { background-position: 100% 50%; }

.willow-testimonial-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.willow-testimonial-card::before {
  content: "“";
  color: var(--ww-green);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.6;
}

.willow-testimonial-card strong {
  color: var(--ww-deep);
}

.willow-cta {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #58775f, #3f6249);
  color: white;
}

.willow-cta h2,
.willow-cta p {
  color: white;
}

.willow-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.willow-footer p {
  font-size: 0.86rem;
}

.willow-footer nav {
  display: flex;
  gap: 1.5rem;
  color: var(--ww-muted);
}

.mockup--northline,
.mockup--willow,
.mockup--juniper,
.mockup--mira,
.mockup--elevate,
.mockup--bark {
  color: white;
  isolation: isolate;
}

.mockup--northline::before,
.mockup--willow::before,
.mockup--juniper::before,
.mockup--mira::before,
.mockup--elevate::before,
.mockup--bark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
}

.mockup--northline::before {
  background-image:
    linear-gradient(90deg, rgba(9, 11, 12, 0.94) 0 42%, rgba(9, 11, 12, 0.3) 78%),
    url("/assets/northline-renovations-hero.png");
}

.mockup--willow::before {
  background-image:
    linear-gradient(90deg, rgba(48, 58, 48, 0.88) 0 46%, rgba(48, 58, 48, 0.24) 82%),
    url("/assets/willow-creek-hero.png");
}

.mockup--juniper::before {
  background-image:
    linear-gradient(90deg, rgba(78, 60, 49, 0.9) 0 44%, rgba(78, 60, 49, 0.16) 78%),
    url("/assets/juniper-sage-hero.png");
}

.mockup--mira::before {
  background-image:
    linear-gradient(90deg, rgba(49, 55, 38, 0.9) 0 44%, rgba(49, 55, 38, 0.18) 78%),
    url("/assets/mira-vale-hero.png");
}

.mockup--elevate::before {
  background-image:
    linear-gradient(90deg, rgba(3, 5, 5, 0.94) 0 42%, rgba(3, 5, 5, 0.18) 78%),
    url("/assets/elevate-fitness-hero.png");
}

.mockup--bark::before {
  background-image:
    linear-gradient(90deg, rgba(38, 73, 70, 0.86) 0 42%, rgba(38, 73, 70, 0.12) 78%),
    url("/assets/bark-bloom-hero.png");
}

.mockup--northline p,
.mockup--willow p,
.mockup--juniper p,
.mockup--mira p,
.mockup--elevate p,
.mockup--bark p {
  color: rgba(255, 255, 255, 0.78);
}

.mockup--northline .mock-media,
.mockup--willow .mock-media,
.mockup--juniper .mock-media,
.mockup--mira .mock-media,
.mockup--elevate .mock-media,
.mockup--bark .mock-media {
  display: none;
}

.mockup--northline .mock-button { background: #f3b23f; color: #111; }
.mockup--willow .mock-button { background: #f6efe4; color: #314236; }
.mockup--juniper .mock-button { background: #bd7866; }
.mockup--mira .mock-button { background: #6d754f; }
.mockup--elevate .mock-button { background: #b7ff00; color: #050607; }
.mockup--bark .mock-button { background: #ef706c; }

.mockup--packages {
  background: linear-gradient(135deg, #f9fbff, #dbeafe);
}

.mockup--packages .mock-button {
  background: #1557d8;
}

.mockup--packages .mock-media {
  background:
    linear-gradient(135deg, #061833, #1557d8 72%, #60a5fa);
}

.mockup--lumen {
  color: #1c1a16;
  background:
    radial-gradient(circle at 82% 16%, rgba(185, 115, 85, 0.2), transparent 26%),
    linear-gradient(135deg, #fbf7ef, #e7ddd0);
}

.mockup--lumen::before {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: -1.6rem;
  width: 42%;
  height: 88%;
  border: 8px solid #1c1a16;
  border-radius: 28px;
  background:
    linear-gradient(#fffdf8, #fffdf8) padding-box,
    linear-gradient(135deg, #fbf7ef, #d8c8b7);
  box-shadow: 0 18px 40px rgba(58, 47, 35, 0.18);
}

.mockup--lumen::after {
  content: "";
  position: absolute;
  right: 2.15rem;
  bottom: 0.2rem;
  width: calc(42% - 1.9rem);
  height: 50%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, #243b25 0 30%, transparent 30% 35%, #d2a28b 35% 65%, transparent 65% 70%, #b97355 70%),
    linear-gradient(#f7efe5, #e5d7c9);
  opacity: 0.96;
}

.mockup--lumen .mock-body {
  max-width: 58%;
}

.mockup--lumen .mock-button {
  background: #243b25;
}

.mockup--lumen .mock-media {
  display: none;
}

.mockup--tidynest,
.mockup--glowbar {
  isolation: isolate;
  overflow: hidden;
}

.mockup--tidynest {
  color: #17334a;
  background: linear-gradient(135deg, #f8f3eb, #dbe9ec);
}

.mockup--tidynest::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(248, 243, 235, 0.96) 0 38%, rgba(248, 243, 235, 0.42) 66%, rgba(248, 243, 235, 0.1)),
    url("/assets/tidynest-hero.png") center right / cover;
}

.mockup--tidynest::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  width: 38%;
  height: 34%;
  z-index: 1;
  border: 1px solid rgba(23, 51, 74, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(82, 123, 151, 0.92) 0 33%, transparent 33% 36%, rgba(255, 255, 255, 0.94) 36% 66%, transparent 66% 69%, rgba(198, 162, 121, 0.9) 69%),
    linear-gradient(#f7f3ed, #e3edf0);
  box-shadow: 0 16px 28px rgba(23, 51, 74, 0.16);
}

.mockup--tidynest .mock-body {
  max-width: 55%;
}

.mockup--tidynest p {
  color: rgba(23, 51, 74, 0.78);
}

.mockup--tidynest .mock-button {
  background: #527b97;
}

.mockup--tidynest .mock-media {
  display: none;
}

.mockup--glowbar {
  color: #fff8f1;
  background: #11100f;
}

.mockup--glowbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.95) 0 40%, rgba(17, 16, 15, 0.26) 76%),
    url("/assets/glowbar-hero.png") center right / cover;
}

.mockup--glowbar::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  width: 38%;
  height: 38%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(230, 163, 147, 0.92), rgba(246, 221, 208, 0.88)),
    url("/assets/glowbar-lash-before-after.png") center / cover;
  background-blend-mode: screen;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

.mockup--glowbar .mock-body {
  max-width: 58%;
}

.mockup--glowbar p {
  color: rgba(255, 248, 241, 0.76);
}

.mockup--glowbar .mock-button {
  background: #e6a393;
  color: #111;
}

.mockup--glowbar .mock-media {
  display: none;
}

.lumen-page {
  --lm-cream: #fbf7ef;
  --lm-paper: #fffdf8;
  --lm-ink: #1c1a16;
  --lm-muted: #6f655d;
  --lm-green: #243b25;
  --lm-green-2: #304d31;
  --lm-copper: #b97355;
  --lm-clay: #d2a28b;
  --lm-line: rgba(54, 47, 39, 0.15);
  --lm-shadow: 0 20px 58px rgba(58, 47, 35, 0.12);
  margin: 0;
  color: var(--lm-ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 115, 85, 0.12), transparent 24rem),
    radial-gradient(circle at 14% 12%, rgba(36, 59, 37, 0.08), transparent 24rem),
    var(--lm-cream);
  font-family: "Inter", var(--sans);
}

.lumen-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lumen-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--lm-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 28px rgba(58, 47, 35, 0.07);
}

.lumen-showcase-note span,
.lumen-eyebrow {
  color: var(--lm-copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lumen-showcase-note p {
  margin: 0;
  color: var(--lm-muted);
  font-size: 0.9rem;
}

.lumen-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--lm-line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.lumen-nav,
.lumen-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}

.lumen-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lm-ink);
  text-decoration: none;
  text-transform: uppercase;
}

.lumen-brand > span {
  color: var(--lm-copper);
  font-size: 2.2rem;
  line-height: 1;
}

.lumen-brand strong {
  display: grid;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.86;
}

.lumen-brand small {
  color: var(--lm-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.lumen-links,
.lumen-footer nav,
.lumen-social {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.lumen-links a,
.lumen-footer a,
.lumen-text-link {
  color: var(--lm-ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
}

.lumen-btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid var(--lm-green);
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lumen-btn--primary {
  color: white;
  background: var(--lm-green);
  box-shadow: 0 14px 34px rgba(36, 59, 37, 0.18);
}

.lumen-btn--outline {
  color: var(--lm-green);
  background: transparent;
}

.lumen-btn--light {
  color: var(--lm-copper);
  border-color: var(--lm-paper);
  background: var(--lm-paper);
}

.lumen-hero {
  max-width: 1440px;
  min-height: 580px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.6rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  overflow: hidden;
}

.lumen-hero__copy {
  display: grid;
  gap: 1.2rem;
}

.lumen-hero h1,
.lumen-services h2,
.lumen-section-heading h2,
.lumen-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

.lumen-hero h1 {
  max-width: 620px;
  font-size: clamp(3.6rem, 5.2vw, 5.5rem);
}

.lumen-hero h1 span {
  display: block;
  color: var(--lm-green);
  font-style: italic;
}

.lumen-hero__copy > p:not(.lumen-eyebrow) {
  max-width: 520px;
  color: var(--lm-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lumen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.lumen-reassurance {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lumen-reassurance article {
  display: grid;
  gap: 0.35rem;
}

.lumen-reassurance svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--lm-copper);
}

.lumen-reassurance strong {
  font-size: 0.86rem;
}

.lumen-reassurance p {
  color: var(--lm-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lumen-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.lumen-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 74%, rgba(185, 115, 85, 0.18), transparent 8rem),
    radial-gradient(circle at 78% 26%, rgba(36, 59, 37, 0.14), transparent 10rem);
}

.lumen-leaf {
  position: absolute;
  right: 3%;
  top: 18%;
  width: 12rem;
  height: 17rem;
  opacity: 0.72;
  background:
    radial-gradient(ellipse at 68% 18%, var(--lm-green) 0 12%, transparent 13%),
    radial-gradient(ellipse at 56% 38%, var(--lm-green) 0 13%, transparent 14%),
    radial-gradient(ellipse at 42% 57%, var(--lm-green) 0 12%, transparent 13%),
    linear-gradient(115deg, transparent 47%, var(--lm-green) 48% 50%, transparent 51%);
  transform: rotate(10deg);
}

.lumen-phone {
  position: relative;
  z-index: 1;
  width: min(78%, 320px);
  min-height: 520px;
  padding: 1.1rem;
  border: 10px solid #171717;
  border-radius: 34px;
  background: var(--lm-paper);
  box-shadow: var(--lm-shadow);
}

.lumen-phone__top,
.lumen-profile,
.lumen-numbers,
.lumen-story-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lumen-phone__top {
  justify-content: space-between;
  font-size: 0.78rem;
}

.lumen-profile {
  margin-top: 1rem;
  align-items: start;
}

.lumen-profile > span {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--lm-copper);
  border-radius: 999px;
  color: var(--lm-copper);
  font-size: 1.6rem;
}

.lumen-profile p,
.lumen-bio,
.lumen-numbers span {
  color: var(--lm-muted);
  font-size: 0.72rem;
}

.lumen-numbers {
  justify-content: space-between;
  margin: 1rem 0;
  text-align: center;
}

.lumen-numbers strong {
  display: block;
  color: var(--lm-ink);
}

.lumen-story-row {
  justify-content: space-between;
  margin: 1rem 0;
}

.lumen-story-row span {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--lm-green);
  background: #efe7de;
  font-size: 0.68rem;
}

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

.lumen-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--lm-green);
  background:
    linear-gradient(135deg, rgba(36, 59, 37, 0.1), rgba(185, 115, 85, 0.12)),
    #f4eee6;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.05;
}

.lumen-grid span:nth-child(even) {
  background:
    radial-gradient(circle at 62% 30%, rgba(36, 59, 37, 0.28), transparent 22%),
    linear-gradient(135deg, #efe6db, #d8c8b8);
}

.lumen-services {
  padding: clamp(3rem, 5vw, 4.8rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  gap: 1.8rem;
  justify-items: center;
  color: white;
  background:
    radial-gradient(circle at 14% 35%, rgba(185, 115, 85, 0.2), transparent 22rem),
    linear-gradient(135deg, var(--lm-green), #1b2d1c);
  text-align: center;
}

.lumen-services h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.lumen-service-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lumen-service-grid article {
  min-height: 190px;
  padding: 1.3rem;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lumen-service-grid article:first-child {
  border-left: 0;
}

.lumen-service-grid svg {
  width: 2.3rem;
  height: 2.3rem;
  color: #f1d5c7;
}

.lumen-service-grid h3 {
  margin: 0;
  font-size: 0.92rem;
}

.lumen-service-grid p {
  color: #e8eee2;
  font-size: 0.82rem;
  line-height: 1.55;
}

.lumen-packages {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.lumen-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.lumen-section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.lumen-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.lumen-package-card {
  position: relative;
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
  border: 1px solid var(--lm-line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 46px rgba(58, 47, 35, 0.08);
}

.lumen-package-card.is-featured {
  border-color: rgba(185, 115, 85, 0.44);
  box-shadow: var(--lm-shadow);
}

.lumen-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.42rem;
  border-radius: 10px 10px 0 0;
  color: white;
  background: var(--lm-copper);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.lumen-plan-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin-top: 0.4rem;
  display: grid;
  place-items: center;
  color: var(--lm-green);
}

.lumen-plan-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.lumen-package-card h3 {
  margin: 0;
  color: var(--lm-green);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lumen-package-card p {
  color: var(--lm-muted);
}

.lumen-package-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.1rem;
  font-weight: 600;
}

.lumen-package-card strong small {
  color: var(--lm-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.lumen-package-card ul {
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.lumen-package-card li {
  color: #3f3a34;
  font-size: 0.92rem;
}

.lumen-package-card li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--lm-copper);
  font-weight: 900;
}

.lumen-package-card .lumen-btn {
  align-self: end;
  width: 100%;
}

.lumen-proof {
  max-width: 1180px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.lumen-proof__image {
  width: min(100%, 260px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 65% 28%, rgba(36, 59, 37, 0.28), transparent 18%),
    linear-gradient(135deg, #f5eee5, #d5c8b6);
  box-shadow: var(--lm-shadow);
}

.lumen-proof article {
  position: relative;
  display: grid;
  gap: 0.85rem;
}

.lumen-proof article::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2rem;
  width: 13rem;
  height: 15rem;
  opacity: 0.12;
  background:
    radial-gradient(ellipse at 70% 20%, var(--lm-green) 0 12%, transparent 13%),
    radial-gradient(ellipse at 58% 42%, var(--lm-green) 0 13%, transparent 14%),
    radial-gradient(ellipse at 45% 62%, var(--lm-green) 0 12%, transparent 13%),
    linear-gradient(112deg, transparent 47%, var(--lm-green) 48% 50%, transparent 51%);
  pointer-events: none;
}

.lumen-stars {
  color: var(--lm-copper);
  letter-spacing: 0.18em;
}

.lumen-proof blockquote {
  margin: 0;
  max-width: 720px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.lumen-proof cite {
  color: var(--lm-copper);
  font-style: normal;
  font-weight: 700;
}

.lumen-cta {
  padding: clamp(2.5rem, 5vw, 4rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, var(--lm-green), #1a2b1b);
}

.lumen-cta-icon {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--lm-copper);
}

.lumen-cta-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.lumen-cta h2 {
  max-width: 620px;
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
}

.lumen-cta p:not(.lumen-eyebrow),
.lumen-text-link {
  color: #e8eee2;
}

.lumen-cta .lumen-eyebrow {
  color: #d8b8a4;
}

.lumen-footer {
  align-items: flex-start;
  flex-wrap: wrap;
  background: var(--lm-paper);
}

.lumen-footer > div,
.lumen-footer nav {
  flex: 1 1 190px;
  display: grid;
  gap: 0.55rem;
}

.lumen-footer h2 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.lumen-footer p,
.lumen-footer small {
  color: var(--lm-muted);
  line-height: 1.55;
}

.lumen-footer nav a {
  width: fit-content;
  color: var(--lm-ink);
}

.lumen-social {
  gap: 0.65rem;
}

.lumen-social a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--lm-line);
  border-radius: 999px;
}

.lumen-footer > small {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--lm-line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pkg-page {
  --pkg-navy: #061833;
  --pkg-navy-2: #08234d;
  --pkg-blue: #1557d8;
  --pkg-blue-2: #2f7cff;
  --pkg-light: #eff6ff;
  --pkg-sky: #dbeafe;
  --pkg-teal: #2aa7a7;
  --pkg-purple: #8b5cf6;
  --pkg-ink: #09182f;
  --pkg-muted: #5d6b80;
  --pkg-line: rgba(9, 24, 47, 0.12);
  --pkg-shadow: 0 22px 60px rgba(9, 24, 47, 0.12);
  margin: 0;
  color: var(--pkg-ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(21, 87, 216, 0.13), transparent 26rem),
    linear-gradient(180deg, #fff, #f8fbff);
  font-family: "Inter", var(--sans);
}

.pkg-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(21, 87, 216, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(9, 24, 47, 0.08);
}

.pkg-showcase-note span,
.pkg-eyebrow {
  color: var(--pkg-blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pkg-showcase-note p {
  margin: 0;
  color: var(--pkg-muted);
  font-size: 0.92rem;
}

.pkg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--pkg-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.pkg-nav,
.pkg-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.pkg-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pkg-ink);
  text-decoration: none;
  text-transform: uppercase;
}

.pkg-brand > span {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  color: var(--pkg-blue);
}

.pkg-brand svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke-width: 2.2;
}

.pkg-brand strong {
  display: grid;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.pkg-brand small {
  color: var(--pkg-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.pkg-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.pkg-links a,
.pkg-footer a,
.pkg-text-link {
  color: var(--pkg-ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pkg-links a:nth-child(3) {
  color: var(--pkg-blue);
}

.pkg-btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.45rem;
  border: 1px solid var(--pkg-blue);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pkg-btn--primary {
  color: white;
  background: var(--pkg-blue);
  box-shadow: 0 15px 35px rgba(21, 87, 216, 0.22);
}

.pkg-btn--outline {
  color: var(--pkg-blue);
  background: white;
}

.pkg-btn--light {
  color: var(--pkg-blue);
  border-color: white;
  background: white;
}

.pkg-hero {
  position: relative;
  max-width: 1440px;
  min-height: 560px;
  margin: 0 auto;
  padding: clamp(2.4rem, 4.8vw, 4.5rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(540px, 1.16fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  overflow: hidden;
}

.pkg-hero::after,
.pkg-cta::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 5rem;
  width: 36rem;
  height: 36rem;
  border-radius: 42% 0 0 42%;
  background: linear-gradient(135deg, var(--pkg-blue), #073a96);
  transform: rotate(-14deg);
  z-index: -1;
}

.pkg-hero__copy {
  display: grid;
  gap: 1.2rem;
}

.pkg-hero h1,
.pkg-essentials h2,
.pkg-section-heading h2,
.pkg-cta h2 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.pkg-hero h1 {
  max-width: 13.2ch;
  font-size: clamp(3.2rem, 4.55vw, 4.8rem);
}

.pkg-hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--pkg-blue);
  font-style: italic;
}

.pkg-hero h1 span::after {
  content: "";
  position: absolute;
  left: 0.1em;
  right: 0.05em;
  bottom: 0.03em;
  height: 0.1em;
  border-radius: 999px;
  background: currentColor;
}

.pkg-hero__copy > p:not(.pkg-eyebrow) {
  max-width: 510px;
  color: var(--pkg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pkg-actions,
.pkg-reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.pkg-reassurance {
  margin-top: 1rem;
  gap: 1.2rem;
  color: var(--pkg-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.pkg-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pkg-reassurance svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pkg-blue);
}

.pkg-devices {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
}

.pkg-devices::before {
  content: "";
  position: absolute;
  inset: 3rem 0 auto auto;
  width: 16rem;
  height: 10rem;
  opacity: 0.32;
  background-image: radial-gradient(var(--pkg-blue) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
}

.pkg-device {
  position: relative;
  border: 10px solid #0c1524;
  background: #0c1524;
  box-shadow: var(--pkg-shadow);
}

.pkg-device--laptop {
  width: min(100%, 610px);
  aspect-ratio: 16 / 10;
  border-radius: 18px 18px 12px 12px;
}

.pkg-device--laptop::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -2.1rem;
  height: 2.1rem;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, #283142, #111827);
}

.pkg-device--phone {
  position: absolute;
  right: 2%;
  bottom: 1.3rem;
  width: min(28%, 180px);
  aspect-ratio: 9 / 18;
  border-radius: 26px;
  border-width: 8px;
}

.pkg-device-screen {
  height: 100%;
  padding: clamp(1rem, 2.4vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.8rem;
  color: white;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(6, 24, 51, 0.96), rgba(6, 24, 51, 0.68)),
    radial-gradient(circle at 78% 36%, rgba(47, 124, 255, 0.55), transparent 22%),
    linear-gradient(135deg, #061833, #0a2c61);
}

.pkg-device-screen span {
  font-size: 0.8rem;
  font-weight: 800;
}

.pkg-device-screen h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 0.98;
}

.pkg-device-screen em {
  color: #6aa6ff;
  font-style: normal;
}

.pkg-device-screen p {
  max-width: 300px;
  color: #d8e6ff;
  font-size: 0.9rem;
}

.pkg-device-screen a {
  width: fit-content;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  color: white;
  background: var(--pkg-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pkg-device--phone .pkg-device-screen {
  padding: 1rem;
}

.pkg-device--phone h2 {
  font-size: 1.35rem;
}

.pkg-device--phone p {
  display: none;
}

.pkg-essentials {
  padding: clamp(3rem, 5vw, 4.8rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.72fr);
  gap: 2rem;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 18% 25%, rgba(47, 124, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, #061833, #08234d);
}

.pkg-essentials h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.pkg-essential-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pkg-essential-grid article {
  min-height: 170px;
  padding: 1.2rem;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.pkg-essential-grid svg {
  width: 2.6rem;
  height: 2.6rem;
  color: #6aa6ff;
}

.pkg-essential-grid h3 {
  margin: 0;
  font-size: 0.92rem;
}

.pkg-essential-grid p {
  color: #d5e4ff;
  font-size: 0.82rem;
  line-height: 1.55;
}

.pkg-pricing {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.pkg-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.pkg-section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.pkg-section-heading h2 span {
  color: var(--pkg-muted);
  font-weight: 700;
}

.pkg-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.pkg-price-card {
  position: relative;
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
  border: 1px solid var(--pkg-line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 54px rgba(9, 24, 47, 0.08);
}

.pkg-card--growth {
  border-color: rgba(21, 87, 216, 0.34);
  box-shadow: 0 24px 70px rgba(21, 87, 216, 0.16);
}

.pkg-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.4rem;
  border-radius: 18px 18px 0 0;
  color: white;
  background: var(--pkg-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pkg-plan-icon {
  width: 4.1rem;
  height: 4.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pkg-teal);
  background: rgba(42, 167, 167, 0.12);
}

.pkg-card--growth .pkg-plan-icon {
  margin-top: 1rem;
  color: var(--pkg-blue);
  background: rgba(21, 87, 216, 0.12);
}

.pkg-card--premium .pkg-plan-icon {
  color: var(--pkg-purple);
  background: rgba(139, 92, 246, 0.14);
}

.pkg-plan-icon svg {
  width: 2rem;
  height: 2rem;
}

.pkg-price-card h3 {
  margin: 0;
  color: var(--pkg-blue);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pkg-card--starter h3 {
  color: var(--pkg-teal);
}

.pkg-card--premium h3 {
  color: var(--pkg-purple);
}

.pkg-price-card p {
  color: var(--pkg-muted);
}

.pkg-price-card strong {
  margin-top: 1rem;
  font-size: 2.4rem;
  line-height: 1;
}

.pkg-price-card small {
  color: var(--pkg-muted);
  font-weight: 700;
}

.pkg-price-card ul {
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.pkg-price-card li {
  color: #27374d;
  font-size: 0.92rem;
}

.pkg-price-card li::before {
  content: "✓";
  width: 1.05rem;
  height: 1.05rem;
  margin-right: 0.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--pkg-blue);
  font-size: 0.7rem;
  font-weight: 900;
}

.pkg-card--starter li::before {
  background: var(--pkg-teal);
}

.pkg-card--premium li::before {
  background: var(--pkg-purple);
}

.pkg-price-card .pkg-btn {
  align-self: end;
  width: 100%;
}

.pkg-proof {
  max-width: 1180px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #eff6ff, white);
  box-shadow: var(--pkg-shadow);
}

.pkg-testimonial {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.pkg-testimonial > span {
  color: var(--pkg-blue);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.65;
}

.pkg-stars {
  color: #f5b72e;
  letter-spacing: 0.22em;
}

.pkg-testimonial blockquote {
  margin: 0;
  max-width: 520px;
  color: var(--pkg-ink);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pkg-testimonial cite {
  color: var(--pkg-blue);
  font-style: normal;
  font-weight: 800;
}

.pkg-proof-image {
  min-height: 300px;
}

.pkg-proof-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% center;
}

.pkg-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, #083a96, #1557d8);
}

.pkg-cta::after {
  z-index: 0;
  top: auto;
  bottom: -18rem;
  opacity: 0.35;
}

.pkg-cta > * {
  position: relative;
  z-index: 1;
}

.pkg-cta-icon {
  width: 5.4rem;
  height: 5.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.pkg-cta-icon svg {
  width: 2.7rem;
  height: 2.7rem;
}

.pkg-cta h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.pkg-cta p:not(.pkg-eyebrow) {
  color: #dce9ff;
}

.pkg-cta .pkg-eyebrow,
.pkg-text-link {
  color: #bcd7ff;
}

.pkg-cta .pkg-actions {
  justify-content: end;
}

.pkg-footer {
  align-items: flex-start;
  flex-wrap: wrap;
  color: white;
  background: var(--pkg-navy);
}

.pkg-footer .pkg-brand,
.pkg-footer a {
  color: white;
}

.pkg-footer .pkg-brand small,
.pkg-footer h2,
.pkg-footer small {
  color: #bcd7ff;
}

.pkg-footer nav,
.pkg-footer > div {
  flex: 1 1 150px;
  display: grid;
  gap: 0.55rem;
}

.pkg-footer h2 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.pkg-footer a {
  width: fit-content;
  font-size: 0.8rem;
  text-transform: none;
}

.pkg-social {
  display: flex;
  gap: 0.7rem;
}

.pkg-social a {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.pkg-footer > small {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.bark-page {
  --bb-cream: #fff7eb;
  --bb-paper: #fffdf7;
  --bb-ink: #164e59;
  --bb-muted: #647577;
  --bb-coral: #ef706c;
  --bb-coral-soft: #ffd7d2;
  --bb-teal: #6fc8c4;
  --bb-teal-dark: #137276;
  --bb-mint: #e0f5ef;
  --bb-gold: #f3b94e;
  --bb-purple: #9271c6;
  --bb-line: rgba(22, 78, 89, 0.14);
  --bb-shadow: 0 18px 50px rgba(43, 94, 93, 0.13);
  margin: 0;
  color: var(--bb-ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(239, 112, 108, 0.13), transparent 18rem),
    radial-gradient(circle at 90% 16%, rgba(111, 200, 196, 0.18), transparent 20rem),
    var(--bb-cream);
  font-family: "Nunito", "Inter", var(--sans);
}

.bark-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bark-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--bb-line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--bb-shadow);
}

.bark-showcase-note span {
  color: var(--bb-coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bark-showcase-note p {
  margin: 0;
  color: var(--bb-muted);
  font-size: 0.9rem;
}

.bark-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--bb-line);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
}

.bark-nav,
.bark-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.bark-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bb-ink);
  text-decoration: none;
}

.bark-brand > span {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bb-teal-dark);
  background:
    radial-gradient(circle at 75% 25%, var(--bb-coral) 0 10%, transparent 11%),
    var(--bb-mint);
}

.bark-brand svg {
  width: 2rem;
  height: 2rem;
}

.bark-brand strong {
  display: grid;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.8rem;
  line-height: 0.88;
}

.bark-brand small {
  color: var(--bb-coral);
  font-family: "Inter", sans-serif;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.bark-links,
.bark-footer nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.bark-links a,
.bark-footer a {
  color: var(--bb-ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
}

.bark-links a:first-child {
  color: var(--bb-coral);
}

.bark-btn {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
}

.bark-btn--primary {
  color: white;
  background: var(--bb-coral);
  box-shadow: 0 15px 32px rgba(239, 112, 108, 0.24);
}

.bark-btn--outline {
  color: var(--bb-teal-dark);
  border-color: var(--bb-teal);
  background: rgba(255, 253, 247, 0.76);
}

.bark-hero {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  overflow: hidden;
  border-bottom: 1px solid var(--bb-line);
  background:
    radial-gradient(circle at 8% 22%, rgba(239, 112, 108, 0.15), transparent 12rem),
    radial-gradient(circle at 82% 72%, rgba(111, 200, 196, 0.2), transparent 14rem),
    var(--bb-paper);
}

.bark-hero::before,
.bark-packages::before,
.bark-final-cta::before {
  content: "";
  position: absolute;
  inset: auto auto 8% 4%;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  opacity: 0.16;
  background:
    radial-gradient(circle at 50% 70%, var(--bb-teal-dark) 0 24%, transparent 25%),
    radial-gradient(circle at 30% 25%, var(--bb-teal-dark) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 18%, var(--bb-teal-dark) 0 12%, transparent 13%),
    radial-gradient(circle at 70% 25%, var(--bb-teal-dark) 0 12%, transparent 13%);
  pointer-events: none;
}

.bark-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5.5rem);
  display: grid;
  align-content: center;
  gap: 1.25rem;
}

.bark-doodle {
  position: absolute;
  left: 9%;
  top: 26%;
  color: var(--bb-coral);
  font-size: 2rem;
  transform: rotate(-16deg);
}

.bark-hero h1,
.bark-section-heading h2,
.bark-review-title h2,
.bark-final-cta h2 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-weight: 800;
  line-height: 0.95;
}

.bark-hero h1 {
  max-width: 11.8ch;
  font-size: clamp(3.75rem, 5.9vw, 6.1rem);
}

.bark-hero h1 span {
  color: var(--bb-coral);
}

.bark-hero__copy > p {
  max-width: 420px;
  color: #314b4f;
  font-size: 1.35rem;
  line-height: 1.45;
}

.bark-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.bark-hero__image {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
}

.bark-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% center;
}

.bark-speech {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 9rem;
  min-height: 8rem;
  padding: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 18%;
  color: white;
  background: var(--bb-teal);
  box-shadow: var(--bb-shadow);
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
}

.bark-trust {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: -3rem auto 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--bb-line);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--bb-shadow);
}

.bark-trust article {
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  border-right: 1px solid var(--bb-line);
}

.bark-trust article:last-child {
  border-right: 0;
}

.bark-trust article > span,
.bark-package-card > span {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bb-coral);
  background: var(--bb-coral-soft);
}

.bark-trust svg {
  width: 1.8rem;
  height: 1.8rem;
}

.bark-trust h2,
.bark-footer h2 {
  margin: 0;
  font-size: 0.98rem;
}

.bark-trust p,
.bark-package-card p,
.bark-reviews p,
.bark-footer p {
  color: var(--bb-muted);
  line-height: 1.55;
}

.bark-section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.bark-packages {
  max-width: none;
  margin-top: -1rem;
  background: linear-gradient(180deg, var(--bb-mint), #f7fbf0);
}

.bark-packages > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.bark-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  margin-bottom: 1.7rem;
  text-align: center;
}

.bark-section-heading h2,
.bark-review-title h2,
.bark-final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.bark-section-heading p {
  margin: 0;
  color: var(--bb-ink);
  font-weight: 900;
}

.bark-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.bark-package-card {
  padding: 1.5rem;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  border: 1px solid var(--bb-line);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--bb-shadow);
  text-align: center;
}

.bark-package-card > span {
  width: 4.7rem;
  height: 4.7rem;
  margin-top: -3.1rem;
  font-size: 2rem;
}

.bark-package-card h3 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.bark-package-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: #38595f;
  font-size: 0.9rem;
  text-align: left;
  list-style: none;
}

.bark-package-card li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: currentColor;
  font-weight: 900;
}

.bark-package-card strong {
  margin-top: auto;
  font-size: 1.1rem;
}

.bark-card--teal h3,
.bark-card--teal strong {
  color: var(--bb-teal-dark);
}

.bark-card--coral h3,
.bark-card--coral strong {
  color: var(--bb-coral);
}

.bark-card--purple h3,
.bark-card--purple strong {
  color: var(--bb-purple);
}

.bark-card--gold h3,
.bark-card--gold strong {
  color: #c17600;
}

.bark-before-after {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.5rem) 1.5rem;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
}

.bark-gallery-image {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--bb-shadow);
}

.bark-gallery-image img {
  width: 100%;
  display: block;
}

.bark-reviews {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.bark-review-title {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  text-align: center;
}

.bark-reviews article {
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
  border: 1px solid rgba(239, 112, 108, 0.22);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 14px 38px rgba(43, 94, 93, 0.09);
}

.bark-reviews article > span {
  color: var(--bb-coral);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.7;
}

.bark-reviews strong,
.bark-reviews small {
  color: var(--bb-ink);
  font-weight: 900;
}

.bark-final-cta {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(2.5rem, 5vw, 4rem) max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(111, 200, 196, 0.76), rgba(111, 200, 196, 0.92)),
    var(--bb-teal);
}

.bark-final-cta img {
  align-self: end;
  width: 100%;
  max-height: 290px;
  display: block;
  object-fit: cover;
  object-position: 24% center;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 18px 44px rgba(18, 77, 82, 0.18);
}

.bark-final-cta > div {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
}

.bark-final-cta p {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
}

.bark-footer {
  flex-wrap: wrap;
  align-items: flex-start;
  background: var(--bb-paper);
}

.bark-footer > div {
  flex: 1 1 210px;
  display: grid;
  gap: 0.65rem;
}

.bark-footer .bark-brand {
  align-items: flex-start;
}

.bark-footer nav {
  gap: 0.65rem;
}

.bark-footer nav a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--bb-coral);
  font-size: 0.75rem;
}

.bark-footer > small {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--bb-line);
  color: var(--bb-muted);
  text-align: center;
}

.elevate-page {
  --ef-black: #050607;
  --ef-panel: #0d0f10;
  --ef-panel-soft: #141718;
  --ef-ink: #f7f7f2;
  --ef-muted: #a8aca4;
  --ef-line: rgba(247, 247, 242, 0.18);
  --ef-accent: #b7ff00;
  --ef-accent-soft: rgba(183, 255, 0, 0.14);
  --ef-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  margin: 0;
  color: var(--ef-ink);
  background:
    radial-gradient(circle at 12% 9%, rgba(183, 255, 0, 0.13), transparent 26rem),
    radial-gradient(circle at 90% 20%, rgba(183, 255, 0, 0.1), transparent 26rem),
    var(--ef-black);
  font-family: "Inter", var(--sans);
}

.elevate-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.elevate-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(183, 255, 0, 0.28);
  border-radius: 8px;
  color: #dfe5d7;
  background: linear-gradient(135deg, rgba(13, 15, 16, 0.96), rgba(20, 23, 24, 0.92));
  box-shadow: var(--ef-shadow);
}

.elevate-showcase-note span,
.elevate-eyebrow {
  color: var(--ef-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.elevate-showcase-note p {
  margin: 0;
  color: var(--ef-muted);
  font-size: 0.9rem;
}

.elevate-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ef-line);
  background: rgba(5, 6, 7, 0.92);
  backdrop-filter: blur(16px);
}

.elevate-nav,
.elevate-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.elevate-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--ef-ink);
  text-decoration: none;
  text-transform: uppercase;
}

.elevate-brand > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--ef-black);
  background: var(--ef-accent);
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
  transform: skewX(-10deg);
}

.elevate-brand strong {
  display: grid;
  gap: 0.05rem;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.elevate-brand small {
  color: var(--ef-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.elevate-links,
.elevate-footer nav,
.elevate-social {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.elevate-links a,
.elevate-footer a {
  color: var(--ef-ink);
  text-decoration: none;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.elevate-links a:first-child {
  color: var(--ef-accent);
}

.elevate-btn {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.55rem;
  border: 1px solid var(--ef-accent);
  text-decoration: none;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.elevate-btn--primary {
  color: var(--ef-black);
  background: var(--ef-accent);
  box-shadow: 0 16px 38px rgba(183, 255, 0, 0.22);
}

.elevate-btn--outline {
  color: var(--ef-ink);
  background: rgba(5, 6, 7, 0.28);
}

.elevate-hero {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(520px, 1.1fr);
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--ef-line);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 1) 0%, rgba(5, 6, 7, 0.92) 40%, rgba(5, 6, 7, 0.18) 72%),
    radial-gradient(circle at 78% 12%, rgba(183, 255, 0, 0.2), transparent 20rem);
}

.elevate-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(2.6rem, 5vw, 4.4rem) clamp(1.5rem, 4vw, 4.2rem);
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.elevate-hero h1,
.elevate-section-heading h2,
.elevate-results h2,
.elevate-stats h2,
.elevate-final h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.elevate-hero h1 {
  max-width: 13.6ch;
  font-size: clamp(3.5rem, 4.85vw, 4.95rem);
  line-height: 0.9;
}

.elevate-hero h1 span,
.elevate-results h2 span,
.elevate-final h2 span {
  color: var(--ef-accent);
}

.elevate-hero__copy > p:not(.elevate-eyebrow) {
  max-width: 520px;
  color: #e0e3dc;
  font-size: 1.08rem;
  line-height: 1.6;
}

.elevate-actions,
.elevate-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.elevate-proof {
  gap: 0.8rem;
  color: var(--ef-ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.elevate-avatars {
  display: flex;
}

.elevate-avatars span {
  width: 1.65rem;
  height: 1.65rem;
  margin-left: -0.45rem;
  border: 2px solid var(--ef-black);
  border-radius: 999px;
  background: linear-gradient(135deg, #e8d2c2, #3c3f37);
}

.elevate-avatars span:first-child {
  margin-left: 0;
}

.elevate-stars {
  color: var(--ef-accent);
  letter-spacing: 0.18em;
}

.elevate-hero__image {
  position: relative;
  min-height: 560px;
}

.elevate-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.72), transparent 34%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.58), transparent 36%);
  pointer-events: none;
}

.elevate-hero__image img,
.elevate-card-image img,
.elevate-transform-grid img,
.elevate-final img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.elevate-hero__image img {
  object-position: 58% 44%;
}

.elevate-metrics,
.elevate-stats > div {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ef-line);
  background: linear-gradient(135deg, rgba(20, 23, 24, 0.9), rgba(5, 6, 7, 0.96));
  box-shadow: var(--ef-shadow);
}

.elevate-metrics {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.elevate-metrics article,
.elevate-stats article {
  min-height: 7rem;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  align-content: center;
  border-right: 1px solid var(--ef-line);
}

.elevate-metrics article:last-child,
.elevate-stats article:last-child {
  border-right: 0;
}

.elevate-metrics svg {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ef-accent);
}

.elevate-metrics strong,
.elevate-stats strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.elevate-metrics small,
.elevate-stats span {
  grid-column: 2;
  color: var(--ef-muted);
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.elevate-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.elevate-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  text-align: center;
}

.elevate-section-heading h2,
.elevate-results h2,
.elevate-stats h2,
.elevate-final h2 {
  font-size: clamp(2.9rem, 5vw, 5.25rem);
  line-height: 0.92;
}

.elevate-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.elevate-program-card,
.elevate-transform-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ef-line);
  background: linear-gradient(180deg, #131617, #070809);
  box-shadow: var(--ef-shadow);
}

.elevate-program-card {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.elevate-card-image {
  min-height: 180px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 28%, rgba(183, 255, 0, 0.28), transparent 18%),
    linear-gradient(135deg, #1a1f1f, #060708);
}

.elevate-card-image--device::before {
  content: "";
  display: block;
  width: min(72%, 260px);
  aspect-ratio: 16 / 10;
  margin: 2.2rem auto 1rem;
  border: 8px solid #232829;
  border-bottom-width: 18px;
  background:
    radial-gradient(circle at 50% 45%, var(--ef-accent), transparent 24%),
    linear-gradient(135deg, #080909, #1f2525);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
}

.elevate-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--ef-black);
  background: var(--ef-accent);
}

.elevate-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.elevate-program-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.96;
  text-transform: uppercase;
}

.elevate-program-card p {
  margin: 0;
  color: var(--ef-accent);
  font-weight: 800;
}

.elevate-program-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.elevate-program-card li {
  color: #dfe4dc;
  font-size: 0.92rem;
}

.elevate-program-card li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--ef-accent);
  font-weight: 900;
}

.elevate-results {
  padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at 8% 50%, rgba(183, 255, 0, 0.18), transparent 19rem),
    linear-gradient(135deg, #0b0d0d, #050607);
  border-block: 1px solid var(--ef-line);
}

.elevate-results__quote {
  display: grid;
  gap: 1rem;
}

.elevate-results blockquote {
  margin: 0;
  color: #e3e8df;
  line-height: 1.6;
}

.elevate-results cite {
  color: var(--ef-accent);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.elevate-transform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.elevate-transform-grid article {
  min-height: 280px;
  display: grid;
  align-content: end;
}

.elevate-transform-grid img {
  position: absolute;
  inset: 0;
  opacity: 0.78;
}

.elevate-transform-grid article:nth-child(1) img {
  object-position: 10% center;
}

.elevate-transform-grid article:nth-child(2) img {
  object-position: 50% center;
}

.elevate-transform-grid article:nth-child(3) img {
  object-position: 90% center;
}

.elevate-transform-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 7, 0.92), transparent 58%);
}

.elevate-transform-grid strong,
.elevate-transform-grid span {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.elevate-transform-grid strong {
  color: var(--ef-accent);
  font-size: 2.2rem;
  line-height: 1;
}

.elevate-transform-grid span {
  padding-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.elevate-stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) 1.5rem;
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.elevate-stats > div {
  width: 100%;
}

.elevate-final {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--ef-line);
  background:
    radial-gradient(circle at 8% 50%, rgba(183, 255, 0, 0.18), transparent 20rem),
    linear-gradient(135deg, #101313, #050607);
}

.elevate-final > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.elevate-final p {
  max-width: 520px;
  color: #e3e8df;
  font-size: 1.05rem;
  line-height: 1.6;
}

.elevate-final img {
  align-self: end;
  max-height: 360px;
  object-position: 66% 32%;
  opacity: 0.95;
  mask-image: linear-gradient(90deg, transparent 0, black 18%);
}

.elevate-footer {
  flex-wrap: wrap;
  border-top: 1px solid var(--ef-line);
  background: #030404;
}

.elevate-social a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ef-line);
  color: var(--ef-ink);
  font-size: 0.75rem;
}

.elevate-footer p {
  width: 100%;
  margin: 0;
  color: var(--ef-muted);
  font-size: 0.84rem;
  text-align: center;
}

.juniper-page {
  --jp-cream: #fbf6ef;
  --jp-paper: #fffaf4;
  --jp-ink: #2f2922;
  --jp-muted: #756d63;
  --jp-line: rgba(88, 72, 55, 0.15);
  --jp-clay: #bd7866;
  --jp-rose: #ead0c6;
  --jp-sage: #6f7657;
  --jp-soft-sage: #e1e5d5;
  --jp-shadow: 0 20px 60px rgba(82, 58, 42, 0.12);
  margin: 0;
  color: var(--jp-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(234, 208, 198, 0.42), transparent 28rem),
    radial-gradient(circle at 88% 28%, rgba(225, 229, 213, 0.55), transparent 26rem),
    var(--jp-cream);
  font-family: var(--sans);
}

.juniper-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.juniper-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--jp-line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 12px 28px rgba(82, 58, 42, 0.07);
}

.juniper-showcase-note span,
.juniper-eyebrow {
  color: var(--jp-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.juniper-showcase-note p {
  margin: 0;
  color: var(--jp-muted);
  font-size: 0.9rem;
}

.juniper-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--jp-line);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(14px);
}

.juniper-nav,
.juniper-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.juniper-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--jp-ink);
  text-decoration: none;
}

.juniper-brand > span {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  color: var(--jp-sage);
}

.juniper-brand strong {
  display: grid;
  gap: 0.1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.juniper-brand small {
  color: var(--jp-muted);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
}

.juniper-links,
.juniper-footer nav,
.juniper-footer__meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.juniper-links a,
.juniper-footer a,
.juniper-text-link,
.juniper-service-card a {
  color: var(--jp-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.juniper-btn {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
}

.juniper-btn--primary {
  color: white;
  background: var(--jp-clay);
  box-shadow: 0 14px 30px rgba(189, 120, 102, 0.22);
}

.juniper-btn--secondary {
  color: var(--jp-clay);
  border-color: rgba(189, 120, 102, 0.45);
  background: rgba(255, 250, 244, 0.72);
}

.juniper-btn--sage {
  color: white;
  background: var(--jp-sage);
}

.juniper-btn--light {
  color: var(--jp-sage);
  background: var(--jp-paper);
}

.juniper-hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
  min-height: 620px;
  border-bottom: 1px solid var(--jp-line);
}

.juniper-hero__copy {
  min-width: 0;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 5rem);
  display: grid;
  align-content: center;
  gap: 1.25rem;
  overflow: hidden;
}

.juniper-hero h1,
.juniper-about h2,
.juniper-section-heading h2,
.juniper-faq h2,
.juniper-final-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

.juniper-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.75rem, 4.7vw, 5.45rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.juniper-hero__copy > p:not(.juniper-eyebrow) {
  max-width: 480px;
  color: var(--jp-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.juniper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.juniper-hero__image {
  min-height: 520px;
  overflow: hidden;
}

.juniper-hero__image img,
.juniper-about__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.juniper-reassurance {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-bottom: 1px solid var(--jp-line);
}

.juniper-reassurance span {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: var(--jp-muted);
  font-size: 0.9rem;
  text-align: center;
}

.juniper-reassurance svg {
  width: 2rem;
  height: 2rem;
  color: var(--jp-ink);
}

.juniper-about {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--jp-line);
}

.juniper-about__image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--jp-shadow);
}

.juniper-about__copy {
  position: relative;
  display: grid;
  gap: 1.05rem;
}

.juniper-about__copy::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 18%;
  width: 8.5rem;
  height: 12rem;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 50% 12%, transparent 0 16%, var(--jp-clay) 17% 18%, transparent 19%),
    linear-gradient(160deg, transparent 47%, var(--jp-clay) 48% 50%, transparent 51%);
  transform: rotate(18deg);
  pointer-events: none;
}

.juniper-about h2,
.juniper-section-heading h2,
.juniper-faq h2,
.juniper-final-card h2 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.juniper-about__copy p:not(.juniper-eyebrow) {
  max-width: 560px;
  color: var(--jp-muted);
  line-height: 1.75;
}

.juniper-section,
.juniper-process,
.juniper-testimonials {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  border-bottom: 1px solid var(--jp-line);
}

.juniper-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  text-align: center;
}

.juniper-service-grid,
.juniper-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.juniper-service-card,
.juniper-testimonial-grid article {
  padding: 1.55rem;
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--jp-line);
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 14px 34px rgba(82, 58, 42, 0.07);
}

.juniper-icon {
  width: 3.9rem;
  height: 3.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--jp-sage);
  background: var(--jp-soft-sage);
}

.juniper-icon--rose {
  color: #8a5147;
  background: var(--jp-rose);
}

.juniper-icon--clay {
  color: #8a5147;
  background: #f0ded3;
}

.juniper-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.juniper-service-card h3,
.juniper-process-line h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.juniper-service-card p,
.juniper-process-line p,
.juniper-testimonial-grid p,
.juniper-faq p,
.juniper-final-card p {
  color: var(--jp-muted);
  line-height: 1.65;
}

.juniper-process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.juniper-process-line article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.juniper-process-line article:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -1.45rem;
  color: var(--jp-muted);
  font-size: 1.2rem;
}

.juniper-process-line span {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--jp-sage);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.juniper-testimonials {
  max-width: none;
  background: rgba(234, 208, 198, 0.22);
}

.juniper-testimonials > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.juniper-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.juniper-testimonial-grid span {
  color: var(--jp-rose);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
}

.juniper-testimonial-grid strong {
  font-size: 0.9rem;
}

.juniper-faq-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-bottom: 1px solid var(--jp-line);
}

.juniper-faq,
.juniper-final-card {
  min-height: 520px;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 7vw, 6.5rem);
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.juniper-accordion {
  border-top: 1px solid var(--jp-line);
}

.juniper-accordion details {
  border-bottom: 1px solid var(--jp-line);
}

.juniper-accordion summary {
  min-height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--jp-ink);
  font-weight: 600;
  list-style: none;
}

.juniper-accordion summary::-webkit-details-marker {
  display: none;
}

.juniper-accordion summary::after {
  content: "+";
  color: var(--jp-muted);
  font-size: 1.2rem;
}

.juniper-accordion details[open] summary::after {
  content: "-";
}

.juniper-final-card {
  position: relative;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(86, 94, 66, 0.95), rgba(86, 94, 66, 0.74)),
    url("/assets/juniper-sage-hero.png") right center / cover;
}

.juniper-final-card h2,
.juniper-final-card p {
  color: white;
}

.juniper-final-card > div {
  max-width: 460px;
  display: grid;
  gap: 1rem;
}

.juniper-script {
  font-family: "Nanum Pen Script", cursive;
  font-size: 1.75rem;
  opacity: 0.86;
}

.juniper-footer {
  flex-wrap: wrap;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.juniper-footer__meta {
  width: 100%;
  justify-content: center;
  color: var(--jp-muted);
  font-size: 0.84rem;
}

.mira-page {
  --mv-cream: #f8f4ed;
  --mv-paper: #fffdf8;
  --mv-ink: #27241f;
  --mv-muted: #6f685d;
  --mv-line: rgba(83, 78, 64, 0.16);
  --mv-sage: #68714d;
  --mv-sage-dark: #565d40;
  --mv-soft: #efe9df;
  --mv-taupe: #c8b8a2;
  --mv-shadow: 0 18px 54px rgba(59, 53, 42, 0.1);
  margin: 0;
  color: var(--mv-ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 184, 162, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(104, 113, 77, 0.14), transparent 25rem),
    var(--mv-cream);
  font-family: var(--sans);
}

.mira-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mira-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--mv-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 28px rgba(59, 53, 42, 0.07);
}

.mira-showcase-note span,
.mira-eyebrow {
  color: var(--mv-sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mira-showcase-note p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 0.9rem;
}

.mira-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--mv-line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.mira-nav,
.mira-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}

.mira-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--mv-ink);
  text-decoration: none;
}

.mira-brand > span {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--mv-sage);
}

.mira-brand strong {
  display: grid;
  gap: 0.1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mira-brand small {
  color: var(--mv-muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
}

.mira-links,
.mira-footer nav,
.mira-footer__meta,
.mira-social {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.mira-links a,
.mira-footer a,
.mira-text-link,
.mira-offer-grid a {
  color: var(--mv-ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mira-btn,
.mira-guide-form button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mira-btn--primary,
.mira-guide-form button {
  color: white;
  background: var(--mv-sage);
  box-shadow: 0 14px 32px rgba(86, 93, 64, 0.18);
}

.mira-btn--secondary {
  color: var(--mv-ink);
  border-color: rgba(86, 93, 64, 0.44);
  background: rgba(255, 253, 248, 0.72);
}

.mira-hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 630px;
  border-bottom: 1px solid var(--mv-line);
}

.mira-hero__copy {
  min-width: 0;
  padding: clamp(3rem, 7vw, 6.2rem) clamp(1.5rem, 4.8vw, 5rem);
  display: grid;
  align-content: center;
  gap: 1.25rem;
  overflow-wrap: break-word;
}

.mira-hero h1,
.mira-about h2,
.mira-section-heading h2,
.mira-testimonial-band h2,
.mira-guide h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
}

.mira-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.25rem, 5.1vw, 5.45rem);
}

.mira-hero h1 span {
  display: block;
  color: var(--mv-sage);
  font-family: "Nanum Pen Script", cursive;
  font-size: 0.85em;
  font-weight: 400;
  line-height: 0.92;
  text-transform: none;
}

.mira-hero__copy > p:not(.mira-eyebrow) {
  max-width: 500px;
  color: var(--mv-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.mira-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mira-trust {
  max-width: 560px;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mira-trust span {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding-right: 1rem;
  border-right: 1px solid var(--mv-line);
  color: var(--mv-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.mira-trust span:last-child {
  border-right: 0;
}

.mira-trust svg {
  width: 2rem;
  height: 2rem;
  color: var(--mv-sage);
}

.mira-hero__image,
.mira-about__image,
.mira-guide__image {
  overflow: hidden;
}

.mira-hero__image img,
.mira-about__image img,
.mira-guide__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mira-guide__image img {
  object-position: left center;
}

.mira-about {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(340px, 1.05fr);
  border-bottom: 1px solid var(--mv-line);
}

.mira-quote-panel {
  min-height: 410px;
  padding: 2rem 1.2rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2rem;
  color: white;
  background: var(--mv-sage);
  text-align: center;
}

.mira-quote-panel p {
  margin: 0;
  font-family: "Nanum Pen Script", cursive;
  font-size: 2.2rem;
  line-height: 1.05;
}

.mira-quote-panel svg {
  width: 3rem;
  height: 3rem;
}

.mira-about__copy {
  padding: clamp(3rem, 6vw, 5.2rem);
  display: grid;
  align-content: center;
  gap: 1rem;
}

.mira-about h2,
.mira-section-heading h2,
.mira-guide h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.mira-about__copy p:not(.mira-eyebrow) {
  max-width: 620px;
  color: var(--mv-muted);
  line-height: 1.8;
}

.mira-offers {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.4rem) 1.5rem;
  border-bottom: 1px solid var(--mv-line);
}

.mira-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-bottom: 2.3rem;
  text-align: center;
}

.mira-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.mira-offer-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.2rem;
  padding-right: 1.5rem;
  border-right: 1px solid var(--mv-line);
}

.mira-offer-grid article:last-child {
  border-right: 0;
}

.mira-icon {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--mv-sage);
  background: var(--mv-soft);
}

.mira-icon svg {
  width: 2rem;
  height: 2rem;
}

.mira-offer-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.mira-offer-grid p,
.mira-guide p,
.mira-testimonial-band blockquote {
  color: var(--mv-muted);
  line-height: 1.7;
}

.mira-offer-grid p,
.mira-offer-grid a {
  grid-column: 2;
}

.mira-testimonial-band {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  color: white;
  background:
    linear-gradient(rgba(86, 93, 64, 0.95), rgba(86, 93, 64, 0.95)),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.15), transparent 18rem);
  text-align: center;
}

.mira-testimonial-band > div {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.mira-testimonial-band p,
.mira-testimonial-band h2,
.mira-testimonial-band blockquote,
.mira-testimonial-band cite {
  color: white;
}

.mira-testimonial-band p {
  margin: 0;
  letter-spacing: 0.18em;
}

.mira-testimonial-band h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-style: italic;
}

.mira-testimonial-band blockquote {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
}

.mira-testimonial-band cite {
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mira-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  min-height: 430px;
  border-bottom: 1px solid var(--mv-line);
}

.mira-guide__copy {
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  align-content: center;
  gap: 1rem;
}

.mira-guide-form {
  max-width: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.mira-guide-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mira-guide-form input {
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--mv-line);
  border-radius: 5px;
  background: var(--mv-paper);
  font: inherit;
}

.mira-form-note {
  margin: 0;
  color: var(--mv-muted);
  font-size: 0.86rem;
}

.mira-footer {
  flex-wrap: wrap;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.mira-social a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--mv-ink);
  font-size: 0.72rem;
}

.mira-footer__meta {
  width: 100%;
  justify-content: center;
  color: var(--mv-muted);
  font-size: 0.84rem;
}

@media (max-width: 1120px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem 2rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; }
  .nav-links .btn { width: 100%; }
  .section-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--four,
  .care-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .builder-summary { grid-template-columns: 1fr 1fr; }
  .builder-layout { grid-template-columns: 1fr; }
  .builder-sidebar { display: none; }
  .package-builder--configurator { padding-bottom: 8rem; }
  .mobile-summary-bar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 254, 251, 0.97);
    box-shadow: 0 16px 42px rgba(11, 11, 11, 0.16);
    backdrop-filter: blur(12px);
  }
  .mobile-summary-bar > div {
    display: grid;
    gap: 0.15rem;
  }
  .mobile-summary-bar span {
    color: var(--muted);
    font-size: 0.86rem;
  }
  .summary-drawer {
    align-items: end;
    place-items: end center;
    padding: 1rem;
  }
  .summary-drawer__panel {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 24px 70px rgba(11, 11, 11, 0.22);
  }
  .lumen-nav {
    flex-wrap: wrap;
  }
  .lumen-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }
  .lumen-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lumen-hero h1 {
    max-width: 760px;
  }
  .lumen-visual {
    min-height: 460px;
    order: -1;
  }
  .lumen-reassurance,
  .lumen-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lumen-service-grid article:nth-child(4) {
    border-left: 0;
  }
  .lumen-package-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
  .lumen-proof,
  .lumen-cta {
    grid-template-columns: 1fr;
  }
  .lumen-cta .lumen-actions {
    justify-content: flex-start;
  }
  .northline-nav {
    flex-wrap: wrap;
    padding: 1rem 2rem;
  }
  .northline-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
  .northline-hero {
    grid-template-columns: 1fr;
  }
  .northline-hero__copy {
    background: #fbfaf6;
  }
  .northline-hero__image {
    margin-left: 0;
    min-height: 430px;
  }
  .northline-trust div,
  .northline-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .northline-featured,
  .northline-footer-cta {
    grid-template-columns: 1fr;
  }
  .northline-reassurance span {
    flex: 1 1 42%;
    padding: 0.35rem 1rem;
  }
  .northline-reassurance span:nth-child(2) {
    border-right: 0;
  }
  .willow-nav {
    flex-wrap: wrap;
    padding: 1rem 2rem;
  }
  .willow-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
  .willow-hero,
  .willow-section {
    grid-template-columns: 1fr;
  }
  .willow-hero__copy {
    background: var(--ww-cream);
  }
  .willow-hero__image {
    min-height: 430px;
  }
  .willow-trust,
  .willow-card-grid--four,
  .willow-card-grid--three,
  .willow-practitioner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .juniper-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .juniper-hero__image {
    min-height: 470px;
    order: -1;
  }
  .juniper-hero h1 {
    max-width: 780px;
  }
  .juniper-showcase-note {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .juniper-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .juniper-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }
  .juniper-about,
  .juniper-faq-cta {
    grid-template-columns: 1fr;
  }
  .juniper-service-grid,
  .juniper-reassurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .juniper-process-line {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }
  .juniper-process-line article:not(:last-child)::after {
    display: none;
  }
  .juniper-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .mira-showcase-note {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .mira-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .mira-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }
  .mira-hero,
  .mira-guide {
    grid-template-columns: 1fr;
  }
  .mira-hero {
    min-height: auto;
  }
  .mira-hero__image {
    min-height: 470px;
    order: -1;
  }
  .mira-about {
    grid-template-columns: 140px minmax(0, 1fr);
  }
  .mira-about__copy {
    grid-column: 1 / -1;
  }
  .mira-offer-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
  .mira-offer-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--mv-line);
    padding: 0 0 1.5rem;
  }
  .mira-offer-grid article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .elevate-nav {
    flex-wrap: wrap;
  }
  .elevate-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }
  .elevate-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: var(--ef-black);
  }
  .elevate-hero__image {
    min-height: 520px;
    order: -1;
  }
  .elevate-hero__copy {
    padding-top: 2rem;
  }
  .elevate-hero h1 {
    max-width: 820px;
  }
  .elevate-metrics {
    transform: none;
    margin: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .elevate-metrics article:nth-child(2) {
    border-right: 0;
  }
  .elevate-metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ef-line);
  }
  .elevate-program-grid,
  .elevate-transform-grid {
    grid-template-columns: 1fr;
  }
  .elevate-program-grid {
    max-width: 760px;
    margin: 0 auto;
  }
  .elevate-results,
  .elevate-final {
    grid-template-columns: 1fr;
  }
  .elevate-stats > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .elevate-stats article:nth-child(2) {
    border-right: 0;
  }
  .elevate-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ef-line);
  }
  .elevate-final img {
    display: none;
  }
  .bark-nav {
    flex-wrap: wrap;
  }
  .bark-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }
  .bark-hero {
    grid-template-columns: 1fr;
  }
  .bark-hero__image {
    min-height: 460px;
    order: -1;
  }
  .bark-hero__copy {
    padding-top: 2rem;
  }
  .bark-hero h1 {
    max-width: 760px;
  }
  .bark-trust,
  .bark-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bark-trust article:nth-child(2) {
    border-right: 0;
  }
  .bark-trust article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bb-line);
  }
  .bark-reviews {
    grid-template-columns: 1fr;
  }
  .bark-final-cta {
    grid-template-columns: 1fr;
  }
  .bark-final-cta img {
    max-height: 340px;
    object-position: 32% center;
  }
  .pkg-nav {
    flex-wrap: wrap;
  }
  .pkg-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }
  .pkg-hero {
    grid-template-columns: 1fr;
  }
  .pkg-devices {
    min-height: 420px;
    order: -1;
  }
  .pkg-essentials {
    grid-template-columns: 1fr;
  }
  .pkg-essential-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pkg-price-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
  .pkg-proof,
  .pkg-cta {
    grid-template-columns: 1fr;
  }
  .pkg-cta .pkg-actions {
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .split-hero,
  .about-layout,
  .contact-layout,
  .card-grid--four,
  .card-grid--three,
  .card-grid--two,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .hero-photo img,
  .hero-copy {
    min-height: auto;
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
  }

  .hero-photo img {
    height: 100%;
    object-position: 42% 28%;
  }

  .hero-copy {
    padding: 2rem;
  }

  .process-line,
  .showcase-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .extras-grid,
  .filter-row,
  .showcase-category-grid {
    grid-template-columns: 1fr;
  }

  .showcase-category-card {
    min-height: auto;
  }

  .showcase-examples-header {
    display: grid;
    align-items: start;
  }

  .package-builder--configurator .package-grid,
  .management-grid,
  .care-plan-grid,
  .add-ons-grid,
  .next-steps-grid,
  .reassurance-row {
    grid-template-columns: 1fr;
  }

  .reassurance-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 2.6rem;
  }

  .builder-step__header,
  .builder-step__header > div,
  .extras-heading {
    display: grid;
    justify-content: stretch;
  }

  .configurator-card {
    padding: 1.2rem;
  }

  .next-steps-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1rem;
  }

  .next-steps-grid article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .builder-summary {
    position: static;
    grid-template-columns: 1fr;
    margin: 0;
    border: 1px solid var(--line);
  }

  .contact-form label:has(textarea),
  .contact-form .btn,
  .form-note {
    grid-column: auto;
  }

  .cta-band,
  .services-final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-final-cta {
    grid-template-columns: 1fr;
  }
  .lumen-showcase-note {
    grid-template-columns: 1fr;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lumen-nav {
    display: grid;
    justify-items: stretch;
  }
  .lumen-brand {
    justify-self: center;
    text-align: center;
  }
  .lumen-links {
    display: none;
  }
  .lumen-nav > .lumen-btn {
    display: none;
  }
  .lumen-hero {
    padding: 2.4rem 1.25rem;
  }
  .lumen-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.65rem);
  }
  .lumen-visual {
    min-height: 360px;
    order: 0;
  }
  .lumen-phone {
    width: min(82vw, 280px);
    min-height: 460px;
  }
  .lumen-actions,
  .lumen-actions .lumen-btn {
    width: 100%;
  }
  .lumen-reassurance,
  .lumen-service-grid {
    grid-template-columns: 1fr;
  }
  .lumen-service-grid article,
  .lumen-service-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .lumen-service-grid article:first-child {
    border-top: 0;
  }
  .lumen-services,
  .lumen-packages,
  .lumen-proof,
  .lumen-cta,
  .lumen-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lumen-proof__image {
    width: min(100%, 220px);
  }
  .lumen-cta-icon {
    width: 4rem;
    height: 4rem;
  }
  .lumen-footer,
  .lumen-footer nav,
  .lumen-social,
  .lumen-footer > small {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .northline-nav {
    align-items: flex-start;
  }
  .northline-showcase-note {
    display: grid;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .northline-brand strong {
    font-size: 1.05rem;
  }
  .northline-brand small {
    font-size: 0.62rem;
  }
  .northline-links {
    display: none;
  }
  .northline-nav > .northline-btn {
    width: 100%;
  }
  .northline-hero {
    min-height: auto;
  }
  .northline-hero__copy {
    padding: 2.4rem 1.25rem;
  }
  .northline-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }
  .northline-actions,
  .northline-actions .northline-btn {
    width: 100%;
  }
  .northline-trust div,
  .northline-service-grid,
  .northline-review-grid,
  .northline-contact-grid {
    grid-template-columns: 1fr;
  }
  .northline-reassurance {
    display: grid;
    grid-template-columns: 1fr;
  }
  .northline-reassurance span {
    padding: 0.45rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--nl-line);
  }
  .northline-reassurance span:last-child {
    border-bottom: 0;
  }
  .northline-section,
  .northline-featured,
  .northline-footer-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .northline-before-after,
  .northline-before-after img {
    min-height: 240px;
  }
  .willow-showcase-note {
    display: grid;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .willow-nav {
    align-items: flex-start;
  }
  .willow-brand strong {
    font-size: 1.35rem;
  }
  .willow-brand > span {
    width: 3rem;
    height: 3rem;
  }
  .willow-links {
    display: none;
  }
  .willow-actions,
  .willow-actions .willow-btn {
    width: 100%;
  }
  .willow-nav > .willow-btn {
    display: none;
  }
  .willow-hero {
    min-height: auto;
  }
  .willow-hero__copy {
    padding: 2.4rem 1.25rem;
  }
  .willow-hero h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }
  .willow-trust,
  .willow-card-grid--four,
  .willow-card-grid--three,
  .willow-practitioner-grid {
    grid-template-columns: 1fr;
  }
  .willow-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .willow-practitioner-card {
    grid-template-columns: 96px 1fr;
  }
  .willow-portrait {
    min-height: 130px;
  }
  .willow-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .juniper-showcase-note {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .juniper-nav {
    display: grid;
    justify-items: stretch;
  }
  .juniper-brand {
    justify-self: center;
    text-align: center;
  }
  .juniper-nav > .juniper-btn {
    width: 100%;
  }
  .juniper-links {
    justify-content: flex-start;
    gap: 0.9rem;
  }
  .juniper-hero__copy,
  .juniper-faq,
  .juniper-final-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .juniper-hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }
  .juniper-hero__image {
    min-height: 370px;
  }
  .juniper-actions,
  .juniper-actions .juniper-btn {
    width: 100%;
  }
  .juniper-reassurance,
  .juniper-service-grid {
    grid-template-columns: 1fr;
  }
  .juniper-about {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .juniper-about__image {
    min-height: 320px;
  }
  .juniper-about__copy::after {
    display: none;
  }
  .juniper-section,
  .juniper-process,
  .juniper-testimonials {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .juniper-process-line article {
    align-items: start;
  }
  .juniper-final-card {
    min-height: 420px;
    background:
      linear-gradient(0deg, rgba(86, 94, 66, 0.94), rgba(86, 94, 66, 0.7)),
      url("/assets/juniper-sage-hero.png") center / cover;
  }
  .juniper-footer,
  .juniper-footer nav,
  .juniper-footer__meta {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .mira-showcase-note {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .mira-nav {
    display: grid;
    justify-items: stretch;
  }
  .mira-brand {
    justify-self: center;
    text-align: center;
  }
  .mira-nav > .mira-btn {
    width: 100%;
  }
  .mira-links {
    justify-content: flex-start;
    gap: 0.9rem;
  }
  .mira-hero__copy,
  .mira-guide__copy {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .mira-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .mira-hero__image {
    min-height: 360px;
  }
  .mira-actions,
  .mira-actions .mira-btn {
    width: 100%;
  }
  .mira-trust {
    grid-template-columns: 1fr;
  }
  .mira-trust span {
    border-right: 0;
    border-bottom: 1px solid var(--mv-line);
    padding: 0 0 0.8rem;
  }
  .mira-trust span:last-child {
    border-bottom: 0;
  }
  .mira-about {
    grid-template-columns: 1fr;
  }
  .mira-quote-panel {
    min-height: auto;
    padding: 2rem 1.25rem;
  }
  .mira-about__image {
    min-height: 330px;
  }
  .mira-about__copy,
  .mira-offers,
  .mira-testimonial-band {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .mira-offer-grid article,
  .mira-offer-grid p,
  .mira-offer-grid a {
    grid-column: auto;
  }
  .mira-offer-grid article {
    grid-template-columns: 1fr;
  }
  .mira-guide__image {
    min-height: 310px;
  }
  .mira-guide-form {
    grid-template-columns: 1fr;
  }
  .mira-footer,
  .mira-footer nav,
  .mira-footer__meta,
  .mira-social {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .elevate-showcase-note {
    grid-template-columns: 1fr;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .elevate-nav {
    display: grid;
    justify-items: stretch;
  }
  .elevate-brand {
    justify-self: center;
  }
  .elevate-links {
    display: none;
  }
  .elevate-nav > .elevate-btn {
    display: none;
  }
  .elevate-hero__copy,
  .elevate-section,
  .elevate-results,
  .elevate-stats,
  .elevate-final {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .elevate-hero h1 {
    font-size: clamp(3.65rem, 16vw, 5.45rem);
  }
  .elevate-hero__image {
    min-height: 340px;
    order: 0;
  }
  .elevate-actions,
  .elevate-actions .elevate-btn {
    width: 100%;
  }
  .elevate-metrics,
  .elevate-stats > div {
    grid-template-columns: 1fr;
  }
  .elevate-metrics {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .elevate-metrics article,
  .elevate-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--ef-line);
  }
  .elevate-metrics article:last-child,
  .elevate-stats article:last-child {
    border-bottom: 0;
  }
  .elevate-card-image {
    min-height: 210px;
  }
  .elevate-transform-grid article {
    min-height: 340px;
  }
  .elevate-footer,
  .elevate-footer nav,
  .elevate-social {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .bark-showcase-note {
    grid-template-columns: 1fr;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .bark-nav {
    display: grid;
    justify-items: stretch;
  }
  .bark-brand {
    justify-self: center;
    text-align: center;
  }
  .bark-links {
    display: none;
  }
  .bark-nav > .bark-btn {
    display: none;
  }
  .bark-hero__copy,
  .bark-section,
  .bark-before-after,
  .bark-reviews,
  .bark-final-cta {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .bark-hero {
    min-height: auto;
  }
  .bark-hero__image {
    min-height: 330px;
    order: 0;
  }
  .bark-speech {
    display: none;
  }
  .bark-hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }
  .bark-actions,
  .bark-actions .bark-btn {
    width: 100%;
  }
  .bark-trust,
  .bark-package-grid {
    grid-template-columns: 1fr;
  }
  .bark-trust {
    margin: 1rem;
  }
  .bark-trust article {
    border-right: 0;
    border-bottom: 1px solid var(--bb-line);
  }
  .bark-trust article:last-child {
    border-bottom: 0;
  }
  .bark-package-card {
    margin-top: 1.9rem;
  }
  .bark-gallery-image {
    border-radius: 14px;
  }
  .bark-reviews {
    gap: 0.85rem;
  }
  .bark-final-cta {
    text-align: center;
  }
  .bark-final-cta > div {
    justify-items: center;
  }
  .bark-footer,
  .bark-footer nav {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .bark-footer .bark-brand {
    justify-self: center;
  }
  .pkg-showcase-note {
    grid-template-columns: 1fr;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .pkg-nav {
    display: grid;
    justify-items: stretch;
  }
  .pkg-brand {
    justify-self: center;
    text-align: center;
  }
  .pkg-links {
    display: none;
  }
  .pkg-nav > .pkg-btn {
    display: none;
  }
  .pkg-hero,
  .pkg-essentials,
  .pkg-pricing,
  .pkg-cta {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .pkg-devices {
    min-height: 300px;
    order: 0;
  }
  .pkg-hero::after {
    top: auto;
    right: -13rem;
    bottom: 6rem;
    width: 28rem;
    height: 28rem;
  }
  .pkg-device--laptop {
    width: 88%;
  }
  .pkg-device--phone {
    width: 30%;
    right: 0;
    bottom: 1rem;
  }
  .pkg-device-screen h2 {
    font-size: 1.2rem;
  }
  .pkg-device-screen p,
  .pkg-device-screen a {
    display: none;
  }
  .pkg-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
  .pkg-actions,
  .pkg-actions .pkg-btn {
    width: 100%;
  }
  .pkg-reassurance {
    display: grid;
  }
  .pkg-essential-grid {
    grid-template-columns: 1fr;
  }
  .pkg-essential-grid article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .pkg-proof {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .pkg-proof-image {
    min-height: 240px;
  }
  .pkg-cta-icon {
    width: 4.4rem;
    height: 4.4rem;
  }
  .pkg-footer,
  .pkg-footer nav,
  .pkg-footer > div,
  .pkg-footer > small {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .pkg-footer a {
    width: auto;
  }
  .pkg-social {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .site-nav,
  .section,
  .page-hero,
  .package-builder,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 { font-size: clamp(2.8rem, 17vw, 4rem); }
  h2 { font-size: clamp(2rem, 12vw, 3rem); }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

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

  .service-card p,
  .service-card a {
    grid-column: auto;
  }

  .mock-body {
    max-width: 78%;
  }

  .mock-body h3 {
    font-size: 1.75rem;
  }

  .lumen-showcase-note {
    margin-top: 0.75rem;
  }
  .lumen-brand strong {
    font-size: 1.65rem;
  }
  .lumen-brand > span {
    font-size: 1.9rem;
  }
  .lumen-hero h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }
  .lumen-hero__copy > p:not(.lumen-eyebrow) {
    font-size: 1rem;
  }
  .lumen-phone {
    width: min(88vw, 250px);
    min-height: 430px;
    border-width: 8px;
  }
  .lumen-leaf {
    right: -2rem;
    width: 8rem;
    height: 12rem;
  }
  .lumen-package-card {
    padding: 1.45rem;
  }
  .lumen-package-card strong {
    font-size: 2.65rem;
  }
  .lumen-proof article::after {
    display: none;
  }
  .lumen-footer > small {
    justify-items: center;
  }
}

.mockup--apex {
  background: #070809;
  color: #f5f5f5;
}

.mockup--apex::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.96) 0 42%, rgba(7, 8, 9, 0.18) 72%),
    url("/assets/apex-auto-detail-hero.png") center right / cover;
  opacity: 0.9;
}

.mockup--apex .mock-body h3 {
  font-family: "Barlow Condensed", var(--sans);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.mockup--apex .mock-body p {
  color: rgba(245, 245, 245, 0.72);
}

.mockup--apex .mock-button {
  background: #e01818;
  color: white;
  text-transform: uppercase;
}

.mockup--apex .mock-media {
  display: none;
}

.apex-page {
  --apex-bg: #050505;
  --apex-panel: #111214;
  --apex-panel-2: #17181a;
  --apex-ink: #f6f4f1;
  --apex-muted: rgba(246, 244, 241, 0.68);
  --apex-soft: rgba(246, 244, 241, 0.48);
  --apex-line: rgba(246, 244, 241, 0.16);
  --apex-red: #e01818;
  --apex-red-dark: #9f1111;
  --apex-silver: #b8bcc2;
  margin: 0;
  color: var(--apex-ink);
  background:
    radial-gradient(circle at 50% 0, rgba(224, 24, 24, 0.12), transparent 22rem),
    linear-gradient(180deg, #080909, var(--apex-bg) 34rem);
  font-family: "Inter", var(--sans);
}

.apex-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apex-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  color: #272525;
  background: rgba(250, 248, 243, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.apex-showcase-note span,
.apex-eyebrow {
  color: var(--apex-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.apex-showcase-note p {
  margin: 0;
  color: #66615c;
  font-size: 0.9rem;
}

.apex-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--apex-line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
}

.apex-nav,
.apex-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.apex-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.apex-brand {
  display: inline-grid;
  color: var(--apex-ink);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0.86;
}

.apex-brand strong {
  font-family: "Barlow Condensed", var(--sans);
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.apex-brand small {
  color: var(--apex-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.apex-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.3rem);
}

.apex-links a,
.apex-footer a {
  color: var(--apex-ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.apex-links a:hover,
.apex-footer a:hover {
  color: white;
}

.apex-btn {
  min-height: 44px;
  padding: 0.85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--apex-line);
  border-radius: 2px;
  color: var(--apex-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.apex-btn--red {
  border-color: var(--apex-red);
  background: linear-gradient(180deg, #ff2020, var(--apex-red));
  box-shadow: 0 16px 34px rgba(224, 24, 24, 0.18);
}

.apex-btn--outline,
.apex-btn--glass {
  background: rgba(255, 255, 255, 0.03);
}

.apex-btn--outline {
  border-color: rgba(224, 24, 24, 0.78);
}

.apex-btn--glass:hover,
.apex-btn--outline:hover,
.apex-btn--card:hover {
  border-color: var(--apex-red);
}

.apex-hero {
  min-height: clamp(560px, 68vh, 720px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--apex-line);
}

.apex-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.apex-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0 32%, rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.12) 74%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.7));
}

.apex-hero__content {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.apex-hero h1,
.apex-section-heading h2,
.apex-final-cta h2 {
  font-family: "Barlow Condensed", var(--sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apex-hero h1 {
  max-width: 500px;
  margin: 0.7rem 0 1.1rem;
  font-size: clamp(3.3rem, 5.8vw, 5rem);
  line-height: 0.92;
}

.apex-hero__content > p:not(.apex-eyebrow) {
  max-width: 440px;
  color: var(--apex-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.apex-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.apex-trust-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--apex-line);
}

.apex-trust-row article {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--apex-ink);
  border-right: 1px solid var(--apex-line);
}

.apex-trust-row article:last-child {
  border-right: 0;
}

.apex-trust-row svg {
  color: var(--apex-red);
  font-size: 1.55rem;
}

.apex-trust-row strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apex-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 1.5rem;
}

.apex-section-heading {
  margin-bottom: 1.7rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

.apex-section-heading::before {
  content: "";
  width: 34px;
  height: 2px;
  margin-bottom: 0.9rem;
  background: var(--apex-red);
}

.apex-section-heading h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.45rem);
  line-height: 0.95;
}

.apex-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.apex-package-card {
  min-height: 310px;
  padding: 2rem;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border: 1px solid var(--apex-line);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    var(--apex-panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.apex-package-card.is-featured {
  border-color: rgba(224, 24, 24, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 20px 50px rgba(224, 24, 24, 0.08);
}

.apex-card-icon {
  margin-bottom: 1.1rem;
  color: var(--apex-silver);
  font-size: 3rem;
}

.apex-package-card.is-featured .apex-card-icon {
  color: var(--apex-red);
}

.apex-package-card h3,
.apex-why h3 {
  color: var(--apex-ink);
  font-family: "Barlow Condensed", var(--sans);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apex-package-card strong {
  margin: 0.4rem 0 1rem;
  color: var(--apex-red);
  font-family: "Barlow Condensed", var(--sans);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.apex-package-card p {
  min-height: 3.4rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--apex-line);
  color: var(--apex-muted);
  line-height: 1.55;
}

.apex-btn--card {
  width: min(100%, 220px);
  margin-top: 1.5rem;
  border-color: rgba(224, 24, 24, 0.72);
  background: rgba(5, 5, 5, 0.2);
}

.apex-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.78fr);
  gap: 1rem;
  align-items: stretch;
}

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

.apex-proof-card {
  min-height: 230px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--apex-line);
  border-radius: 4px;
  background: #0c0c0d;
}

.apex-proof-card--large {
  min-height: 470px;
}

.apex-proof-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.apex-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 auto;
  width: 1px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
}

.apex-proof-card::after {
  content: "<>";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: white;
  background: rgba(5, 5, 5, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.apex-proof-card figcaption {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
}

.apex-proof-card figcaption span {
  padding: 0.45rem 0.55rem;
  color: white;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apex-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--apex-line);
  border-bottom: 1px solid var(--apex-line);
}

.apex-why-grid article {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--apex-line);
}

.apex-why-grid article:last-child {
  border-right: 0;
}

.apex-why-grid svg {
  margin-bottom: 1rem;
  color: var(--apex-red);
  font-size: 2.7rem;
}

.apex-why-grid p,
.apex-review-grid blockquote,
.apex-footer p {
  color: var(--apex-muted);
  line-height: 1.55;
}

.apex-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.apex-review-grid article {
  padding: 1.55rem;
  border: 1px solid var(--apex-line);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.apex-stars {
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.3rem;
}

.apex-stars span {
  width: 0.55rem;
  height: 0.55rem;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 82% 100%, 50% 72%, 18% 100%, 31% 57%, 0 35%, 38% 35%);
  background: var(--apex-red);
}

.apex-review-grid blockquote {
  margin: 0 0 1rem;
}

.apex-review-grid cite {
  display: grid;
  gap: 0.2rem;
  color: var(--apex-ink);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apex-review-grid cite small {
  color: var(--apex-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.apex-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.apex-faq-grid article {
  padding: 1.35rem;
  border: 1px solid var(--apex-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.apex-faq-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--apex-ink);
  font-family: "Barlow Condensed", var(--sans);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apex-faq-grid p {
  color: var(--apex-muted);
  line-height: 1.55;
}

.apex-final-cta {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-top: 1px solid var(--apex-line);
  border-bottom: 1px solid var(--apex-line);
}

.apex-final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.52;
}

.apex-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.86));
}

.apex-final-cta > div {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.apex-final-cta h2 {
  max-width: 650px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.apex-final-cta p {
  max-width: 440px;
  margin: 0.8rem 0 1.4rem;
  color: var(--apex-muted);
}

.apex-footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.apex-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--apex-ink);
  font-family: "Barlow Condensed", var(--sans);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apex-footer nav,
.apex-footer > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.apex-footer a {
  color: var(--apex-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.apex-footer > small {
  grid-column: 1 / -1;
  padding-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--apex-soft);
  border-top: 1px solid var(--apex-line);
}

@media (max-width: 980px) {
  .apex-links {
    display: none;
  }

  .apex-hero {
    min-height: 650px;
  }

  .apex-hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.42)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.15), rgba(5, 5, 5, 0.82));
  }

  .apex-package-grid,
  .apex-proof-grid,
  .apex-review-grid,
  .apex-faq-grid {
    grid-template-columns: 1fr;
  }

  .apex-proof-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apex-why-grid,
  .apex-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apex-why-grid article:nth-child(2) {
    border-right: 0;
  }

  .apex-why-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--apex-line);
  }
}

@media (max-width: 640px) {
  .apex-showcase-note {
    margin: 0.75rem 1rem;
    grid-template-columns: 1fr;
  }

  .apex-nav {
    padding: 0.85rem 1rem;
  }

  .apex-brand strong {
    font-size: 2rem;
  }

  .apex-brand small {
    font-size: 0.58rem;
  }

  .apex-nav > .apex-btn {
    padding: 0.75rem 0.9rem;
    font-size: 0.68rem;
  }

  .apex-hero {
    min-height: 620px;
  }

  .apex-hero > img {
    object-position: 62% center;
  }

  .apex-hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.92) 54%, rgba(5, 5, 5, 0.98)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.22));
  }

  .apex-hero__content,
  .apex-final-cta > div {
    width: calc(100% - 2rem);
    align-self: end;
    padding-bottom: 2.4rem;
  }

  .apex-hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .apex-actions,
  .apex-actions .apex-btn,
  .apex-final-cta .apex-btn {
    width: 100%;
  }

  .apex-trust-row {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .apex-trust-row article {
    justify-content: flex-start;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--apex-line);
  }

  .apex-section {
    padding: 3rem 1rem;
  }

  .apex-package-grid,
  .apex-proof-stack,
  .apex-why-grid,
  .apex-footer {
    grid-template-columns: 1fr;
  }

  .apex-proof-card--large {
    min-height: 330px;
  }

  .apex-proof-card {
    min-height: 210px;
  }

  .apex-why-grid article,
  .apex-why-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--apex-line);
  }

  .apex-why-grid article:last-child {
    border-bottom: 0;
  }

  .apex-footer {
    padding: 2rem 1rem;
  }
}

.tidy-page {
  --td-cream: #fbf7ef;
  --td-paper: #fffdf8;
  --td-ink: #17334a;
  --td-muted: #5f6970;
  --td-blue: #527b97;
  --td-soft-blue: #dbe8ef;
  --td-line: rgba(36, 58, 74, 0.16);
  --td-gold: #b78742;
  --td-shadow: 0 18px 45px rgba(32, 54, 69, 0.11);
  margin: 0;
  color: var(--td-ink);
  background: radial-gradient(circle at 12% 10%, rgba(219, 232, 239, 0.34), transparent 26rem), var(--td-cream);
  font-family: var(--sans);
}

.tidy-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tidy-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--td-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 28px rgba(32, 54, 69, 0.07);
}

.tidy-showcase-note span {
  color: var(--td-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tidy-showcase-note p {
  margin: 0;
  color: var(--td-muted);
  font-size: 0.9rem;
}

.tidy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--td-line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.tidy-nav,
.tidy-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}

.tidy-nav {
  min-height: 5.1rem;
}

.tidy-brand {
  display: grid;
  gap: 0.05rem;
  color: var(--td-ink);
  text-decoration: none;
}

.tidy-brand strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.tidy-brand small {
  color: var(--td-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}

.tidy-links,
.tidy-footer nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.tidy-links a,
.tidy-footer a {
  color: var(--td-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.tidy-links a:hover,
.tidy-footer a:hover,
.tidy-links a:focus-visible,
.tidy-footer a:focus-visible {
  color: var(--td-blue);
}

.tidy-btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.tidy-btn--primary {
  color: white;
  background: var(--td-blue);
  box-shadow: 0 14px 30px rgba(82, 123, 151, 0.22);
}

.tidy-btn--outline {
  color: var(--td-blue);
  border-color: var(--td-blue);
  background: rgba(255, 253, 248, 0.8);
}

.tidy-btn--light {
  color: var(--td-blue);
  background: var(--td-paper);
}

.tidy-hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  border-bottom: 1px solid var(--td-line);
}

.tidy-hero__copy {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5.5rem);
  display: grid;
  align-content: center;
  gap: 1.25rem;
}

.tidy-hero__copy > * {
  position: relative;
  z-index: 1;
}

.tidy-hero h1,
.tidy-section-heading h2,
.tidy-love h2,
.tidy-final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
}

.tidy-hero h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);
}

.tidy-hero__copy > p {
  max-width: 550px;
  color: var(--td-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.tidy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tidy-reassurance {
  width: min(100%, 660px);
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--td-line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--td-shadow);
}

.tidy-reassurance span {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border-right: 1px solid var(--td-line);
  color: var(--td-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.tidy-reassurance span:last-child {
  border-right: 0;
}

.tidy-reassurance svg {
  width: 1.55rem;
  height: 1.55rem;
  padding: 0.25rem;
  border-radius: 999px;
  color: white;
  background: #b7ccd8;
}

.tidy-hero__image {
  min-height: 560px;
  overflow: hidden;
}

.tidy-hero__image img,
.tidy-category-grid img,
.tidy-package-card img,
.tidy-proof img,
.tidy-final-cta img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tidy-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 5.5vw, 5rem) 1.5rem;
}

.tidy-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  text-align: center;
}

.tidy-section-heading--left {
  justify-items: start;
  text-align: left;
}

.tidy-section-heading h2,
.tidy-love h2,
.tidy-final-cta h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.65rem);
}

.tidy-category-grid,
.tidy-love > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tidy-category-grid article,
.tidy-package-card,
.tidy-proof article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--td-line);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(32, 54, 69, 0.08);
}

.tidy-category-grid article > span {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--td-ink);
  background: #c9dbe5;
  box-shadow: 0 10px 24px rgba(32, 54, 69, 0.12);
}

.tidy-category-grid article:nth-child(2) > span {
  background: #d6b174;
}

.tidy-category-grid img {
  height: 150px;
}

.tidy-category-grid div,
.tidy-proof article {
  padding: 1.1rem;
}

.tidy-category-grid h3,
.tidy-package-card h3,
.tidy-proof h3,
.tidy-love h3,
.tidy-footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
}

.tidy-footer h2 {
  color: var(--td-blue);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tidy-category-grid h3,
.tidy-package-card h3 {
  font-size: 1.45rem;
}

.tidy-category-grid p,
.tidy-package-card p,
.tidy-proof p,
.tidy-love p,
.tidy-footer p {
  color: var(--td-muted);
  line-height: 1.6;
}

.tidy-packages {
  max-width: none;
  background: rgba(245, 239, 229, 0.68);
}

.tidy-packages > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.tidy-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tidy-package-card {
  display: grid;
  grid-template-rows: 220px 1fr;
}

.tidy-package-card img {
  min-height: 0;
}

.tidy-package-card > div {
  padding: 1.45rem;
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.tidy-package-card strong {
  color: var(--td-ink);
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}

.tidy-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  padding: 0.4rem 0.75rem;
  border-radius: 0 0 6px 6px;
  color: white;
  background: var(--td-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tidy-proof {
  border-bottom: 1px solid var(--td-line);
}

.tidy-proof-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.75fr));
  gap: 1rem;
  align-items: stretch;
}

.tidy-before-after {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: var(--td-shadow);
}

.tidy-before-after figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0.7rem;
}

.tidy-before-after span {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: white;
  background: var(--td-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tidy-proof article {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 0;
}

.tidy-proof article img {
  height: 170px;
}

.tidy-proof article h3,
.tidy-proof article p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tidy-proof article p {
  padding-bottom: 1rem;
}

.tidy-love {
  padding: clamp(2.6rem, 4.5vw, 4.2rem) 1.5rem;
  background: linear-gradient(90deg, #edf5f8, #f7fbfc);
  border-bottom: 1px solid var(--td-line);
  text-align: center;
}

.tidy-love > div {
  max-width: 1180px;
  margin: 2rem auto 0;
}

.tidy-love article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.85rem;
  padding-right: 1rem;
  border-right: 1px solid var(--td-line);
  text-align: left;
}

.tidy-love article:last-child {
  border-right: 0;
}

.tidy-love span {
  grid-row: span 2;
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--td-blue);
  background: var(--td-paper);
}

.tidy-final-cta {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  color: white;
  background: linear-gradient(135deg, #527b97, #709ab4);
}

.tidy-final-cta img {
  min-height: 240px;
}

.tidy-final-cta > div {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.tidy-final-cta h2,
.tidy-final-cta p {
  color: white;
}

.tidy-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1fr 0.9fr;
  align-items: start;
}

.tidy-footer > div,
.tidy-footer nav {
  display: grid;
  gap: 0.45rem;
}

.tidy-footer > small {
  grid-column: 1 / -1;
  color: var(--td-muted);
  text-align: center;
}

@media (max-width: 1120px) {
  .tidy-showcase-note {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .tidy-nav {
    flex-wrap: wrap;
  }
  .tidy-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tidy-hero,
  .tidy-final-cta {
    grid-template-columns: 1fr;
  }
  .tidy-hero__image {
    min-height: 440px;
    order: -1;
  }
  .tidy-category-grid,
  .tidy-love > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tidy-package-grid,
  .tidy-proof-grid {
    grid-template-columns: 1fr;
  }
  .tidy-package-card {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }
  .tidy-package-card img {
    min-height: 260px;
  }
  .tidy-love article {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .tidy-showcase-note,
  .tidy-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .tidy-brand {
    justify-self: center;
    text-align: center;
  }
  .tidy-nav > .tidy-btn,
  .tidy-actions,
  .tidy-actions .tidy-btn {
    width: 100%;
  }
  .tidy-links {
    gap: 0.65rem 1rem;
  }
  .tidy-links a {
    font-size: 0.82rem;
  }
  .tidy-hero__copy,
  .tidy-section,
  .tidy-love,
  .tidy-footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .tidy-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.1rem);
  }
  .tidy-reassurance,
  .tidy-category-grid,
  .tidy-love > div,
  .tidy-footer {
    grid-template-columns: 1fr;
  }
  .tidy-reassurance span {
    border-right: 0;
    border-bottom: 1px solid var(--td-line);
  }
  .tidy-reassurance span:last-child {
    border-bottom: 0;
  }
  .tidy-package-card {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 1fr;
  }
  .tidy-package-card img {
    min-height: 0;
  }
  .tidy-before-after {
    min-height: 250px;
  }
  .tidy-footer,
  .tidy-footer nav,
  .tidy-footer > div {
    text-align: center;
  }
}

.glow-page {
  --glow-black: #11110f;
  --glow-charcoal: #191716;
  --glow-cream: #fff6f1;
  --glow-paper: #fffaf7;
  --glow-blush: #e8a698;
  --glow-rose: #c9796d;
  --glow-copper: #b56f5e;
  --glow-ink: #171313;
  --glow-muted: #6e625f;
  --glow-line: rgba(98, 54, 47, 0.18);
  --glow-shadow: 0 18px 46px rgba(36, 23, 21, 0.13);
  margin: 0;
  color: var(--glow-ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(232, 166, 152, 0.22), transparent 22rem),
    linear-gradient(180deg, #fff7f2, #f8ebe4);
  font-family: "Inter", var(--sans);
}

.glow-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glow-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--glow-line);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.92);
  box-shadow: 0 12px 28px rgba(36, 23, 21, 0.07);
}

.glow-showcase-note span,
.glow-eyebrow {
  color: var(--glow-rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.glow-showcase-note p {
  margin: 0;
  color: var(--glow-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.glow-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glow-black);
  box-shadow: 0 12px 30px rgba(17, 17, 15, 0.18);
}

.glow-nav,
.glow-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.glow-brand {
  display: grid;
  gap: 0.1rem;
  color: var(--glow-blush);
  text-decoration: none;
  text-transform: uppercase;
}

.glow-brand strong {
  font-family: "Cormorant Garamond", var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 0.88;
}

.glow-brand small {
  color: #f0d2ca;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.glow-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.glow-links a,
.glow-footer a {
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glow-links a:hover,
.glow-links a:focus-visible,
.glow-footer a:hover,
.glow-footer a:focus-visible {
  color: var(--glow-blush);
}

.glow-btn {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glow-btn--blush {
  color: var(--glow-black);
  background: var(--glow-blush);
  box-shadow: 0 14px 34px rgba(232, 166, 152, 0.22);
}

.glow-btn--dark {
  color: white;
  background: var(--glow-black);
}

.glow-btn--outline {
  color: var(--glow-black);
  border-color: var(--glow-black);
  background: rgba(255, 250, 247, 0.72);
}

.glow-hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 246, 241, 0.98) 0 38%, rgba(255, 246, 241, 0.7) 48%, transparent 62%),
    var(--glow-cream);
}

.glow-hero__copy {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 6.6vw, 6.5rem) clamp(1.5rem, 5vw, 5.4rem);
  display: grid;
  align-content: center;
  gap: 1.1rem;
}

.glow-hero h1,
.glow-section-heading h2,
.glow-studio h2,
.glow-proof h2,
.glow-final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

.glow-hero h1 {
  max-width: 470px;
  font-size: clamp(4rem, 6.2vw, 6.6rem);
}

.glow-hero h1 em {
  display: block;
  font-style: italic;
}

.glow-hero__copy > p:not(.glow-eyebrow),
.glow-studio__copy > p:not(.glow-eyebrow),
.glow-final-cta p {
  color: var(--glow-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.glow-hero__copy > p:not(.glow-eyebrow) {
  max-width: 440px;
}

.glow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.glow-reassurance {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 610px;
}

.glow-reassurance article {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  padding: 0 1rem;
  border-right: 1px solid var(--glow-line);
  text-align: center;
}

.glow-reassurance article:last-child {
  border-right: 0;
}

.glow-reassurance span,
.glow-why span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--glow-copper);
}

.glow-reassurance h2,
.glow-why h3,
.glow-package-card h3,
.glow-result-grid h3,
.glow-footer h2 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glow-reassurance p,
.glow-package-card p,
.glow-why p,
.glow-footer p {
  margin: 0;
  color: var(--glow-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.glow-hero__image {
  min-height: 600px;
}

.glow-hero__image img,
.glow-package-image img,
.glow-studio img,
.glow-result-grid img,
.glow-final-cta img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.glow-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
}

.glow-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  text-align: center;
}

.glow-section-heading h2,
.glow-studio h2,
.glow-proof h2,
.glow-final-cta h2 {
  font-size: clamp(2.65rem, 4.4vw, 4.6rem);
}

.glow-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.glow-package-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px 1fr;
  border: 1px solid var(--glow-line);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.9);
  box-shadow: var(--glow-shadow);
}

.glow-package-card.is-featured {
  border-color: var(--glow-rose);
}

.glow-package-image {
  position: relative;
}

.glow-package-image > span {
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: white;
  background: var(--glow-rose);
  box-shadow: 0 12px 24px rgba(36, 23, 21, 0.16);
}

.glow-package-card > div:last-child {
  padding: 2.25rem 1.25rem 1.35rem;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.glow-package-card strong {
  color: var(--glow-black);
  font-family: "Cormorant Garamond", var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.glow-package-card .glow-btn {
  width: min(100%, 11rem);
}

.glow-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  padding: 0.38rem 0.75rem;
  border-radius: 0 0 5px 5px;
  color: white;
  background: var(--glow-rose);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glow-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  background: linear-gradient(90deg, rgba(255, 246, 241, 0.7), rgba(255, 227, 219, 0.95));
  border-top: 1px solid var(--glow-line);
  border-bottom: 1px solid var(--glow-line);
}

.glow-studio__image {
  min-height: 330px;
}

.glow-studio__copy {
  position: relative;
  padding: clamp(2.6rem, 5vw, 4.6rem);
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.glow-studio__copy::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.5rem;
  width: 8rem;
  height: 10rem;
  opacity: 0.38;
  background:
    radial-gradient(ellipse at 70% 18%, #6f6f48 0 11%, transparent 12%),
    radial-gradient(ellipse at 58% 36%, #6f6f48 0 12%, transparent 13%),
    radial-gradient(ellipse at 42% 54%, #6f6f48 0 12%, transparent 13%),
    linear-gradient(115deg, transparent 48%, #6f6f48 49% 51%, transparent 52%);
  pointer-events: none;
}

.glow-studio__copy > * {
  position: relative;
  z-index: 1;
}

.glow-proof {
  display: grid;
  gap: 2rem;
}

.glow-proof__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.glow-why {
  display: grid;
  gap: 1.1rem;
  padding-left: clamp(1rem, 4vw, 3rem);
  border-left: 1px solid var(--glow-line);
}

.glow-why article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.glow-why span {
  border: 1px solid var(--glow-line);
  background: var(--glow-paper);
}

.glow-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.glow-result-grid article {
  display: grid;
  gap: 0.8rem;
  text-align: center;
}

.glow-result-grid figure {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--glow-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(36, 23, 21, 0.1);
}

.glow-result-grid figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0.55rem;
  pointer-events: none;
}

.glow-result-grid figcaption::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 auto;
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.glow-result-grid span {
  position: relative;
  z-index: 1;
  padding: 0.25rem 0.45rem;
  border-radius: 3px;
  color: var(--glow-black);
  background: rgba(255, 246, 241, 0.82);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glow-final-cta {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.55fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.6rem) max(1.5rem, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.98), rgba(17, 17, 15, 0.9) 62%, rgba(17, 17, 15, 0.62)),
    var(--glow-black);
}

.glow-final-cta h2,
.glow-final-cta p {
  position: relative;
  z-index: 1;
  color: white;
}

.glow-final-cta > p {
  color: #f3d4cc;
  font-size: 0.86rem;
}

.glow-final-cta img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(36vw, 480px);
  opacity: 0.72;
}

.glow-footer {
  max-width: none;
  padding: 2.2rem max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1.05fr 1fr;
  align-items: start;
  background: var(--glow-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.glow-footer > div,
.glow-footer nav {
  display: grid;
  gap: 0.45rem;
}

.glow-footer h2 {
  color: var(--glow-blush);
}

.glow-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.glow-footer > small {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1120px) {
  .glow-showcase-note {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .glow-nav {
    flex-wrap: wrap;
  }

  .glow-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .glow-hero,
  .glow-studio,
  .glow-proof__header,
  .glow-final-cta {
    grid-template-columns: 1fr;
  }

  .glow-hero__image {
    min-height: 460px;
    order: -1;
  }

  .glow-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glow-why {
    padding-left: 0;
    border-left: 0;
  }

  .glow-final-cta img {
    width: 48vw;
  }

  .glow-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .glow-showcase-note,
  .glow-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .glow-brand {
    justify-self: center;
    text-align: center;
  }

  .glow-nav > .glow-btn,
  .glow-actions,
  .glow-actions .glow-btn {
    width: 100%;
  }

  .glow-links {
    gap: 0.7rem 1rem;
  }

  .glow-links a {
    font-size: 0.72rem;
  }

  .glow-hero {
    background: var(--glow-cream);
  }

  .glow-hero__copy,
  .glow-section,
  .glow-studio__copy,
  .glow-final-cta,
  .glow-footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .glow-hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.8rem);
  }

  .glow-reassurance,
  .glow-package-grid,
  .glow-result-grid,
  .glow-footer {
    grid-template-columns: 1fr;
  }

  .glow-reassurance article {
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--glow-line);
    text-align: left;
  }

  .glow-reassurance article:last-child {
    border-bottom: 0;
  }

  .glow-package-card {
    grid-template-rows: 210px 1fr;
  }

  .glow-studio__copy::after {
    display: none;
  }

  .glow-result-grid figure {
    min-height: 210px;
  }

  .glow-final-cta {
    text-align: center;
  }

  .glow-final-cta img {
    position: relative;
    width: 100%;
    max-height: 220px;
    border-radius: 8px;
  }

  .glow-final-cta .glow-btn {
    width: 100%;
  }

  .glow-footer,
  .glow-footer nav,
  .glow-footer > div {
    text-align: center;
  }

  .glow-footer > small {
    justify-content: center;
  }
}

/* LaunchPad Consulting showcase */
.launchpad-page {
  --lp-navy: #061527;
  --lp-navy-2: #0b2239;
  --lp-orange: #f58220;
  --lp-orange-dark: #d96813;
  --lp-ink: #071321;
  --lp-muted: #5c6673;
  --lp-line: #dce2e8;
  --lp-paper: #ffffff;
  --lp-soft: #f6f8fb;
  --lp-shadow: 0 18px 45px rgba(6, 21, 39, 0.12);
  margin: 0;
  color: var(--lp-ink);
  background: var(--lp-paper);
  font-family: "Inter", var(--sans);
}

.launchpad-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.launchpad-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 21, 39, 0.08);
}

.launchpad-showcase-note span,
.launchpad-eyebrow {
  color: var(--lp-orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launchpad-showcase-note p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.launchpad-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lp-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.launchpad-nav,
.launchpad-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.launchpad-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.launchpad-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--lp-orange);
}

.launchpad-brand strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.launchpad-brand small {
  display: block;
  color: var(--lp-orange);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.45em;
}

.launchpad-links {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.55rem);
}

.launchpad-links a,
.launchpad-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launchpad-links a:hover,
.launchpad-links a:focus-visible,
.launchpad-footer a:hover,
.launchpad-footer a:focus-visible {
  color: var(--lp-orange);
}

.launchpad-btn {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launchpad-btn--orange {
  color: white;
  background: linear-gradient(135deg, var(--lp-orange), #ff983c);
  box-shadow: 0 14px 28px rgba(245, 130, 32, 0.24);
}

.launchpad-btn--navy {
  color: white;
  background: var(--lp-navy);
}

.launchpad-btn--outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.launchpad-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  min-height: 620px;
  background: var(--lp-navy);
  color: white;
}

.launchpad-hero__copy {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 6vw, 5.8rem) clamp(1.5rem, 5vw, 4.8rem);
  display: grid;
  align-content: center;
  gap: 1.15rem;
  background:
    linear-gradient(90deg, rgba(6, 21, 39, 1), rgba(6, 21, 39, 0.93) 72%, rgba(6, 21, 39, 0));
}

.launchpad-hero h1,
.launchpad-section-heading h2,
.launchpad-about h2,
.launchpad-final-cta h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.launchpad-hero h1 {
  max-width: 570px;
  font-size: clamp(3.2rem, 5.6vw, 5.6rem);
}

.launchpad-hero h1 span {
  color: var(--lp-orange);
}

.launchpad-hero__copy > p:not(.launchpad-eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.launchpad-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.launchpad-trust {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 690px;
}

.launchpad-trust article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.launchpad-trust span {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  color: var(--lp-orange);
}

.launchpad-trust h2,
.launchpad-package-card h3,
.launchpad-process-line h3,
.launchpad-why h3,
.launchpad-footer h2 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.launchpad-trust p,
.launchpad-package-card p,
.launchpad-process-line p,
.launchpad-why p,
.launchpad-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.launchpad-hero__image {
  min-height: 620px;
  margin-left: -7vw;
}

.launchpad-hero__image img,
.launchpad-about__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.launchpad-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.4rem, 5.5vw, 5rem) 1.5rem;
}

.launchpad-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  text-align: center;
}

.launchpad-section-heading h2,
.launchpad-about h2,
.launchpad-final-cta h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.launchpad-section-heading h2::after,
.launchpad-about h2::after {
  content: "";
  width: 4.5rem;
  height: 2px;
  display: block;
  margin: 0.75rem auto 0;
  background: var(--lp-orange);
}

.launchpad-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.launchpad-package-card {
  position: relative;
  min-height: 100%;
  padding: 1.55rem 1.25rem 1.35rem;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  border: 1px solid var(--lp-line);
  border-radius: 6px;
  background: white;
  box-shadow: 0 10px 28px rgba(6, 21, 39, 0.06);
  text-align: center;
}

.launchpad-package-card.is-featured {
  border-color: var(--lp-orange);
  box-shadow: 0 20px 48px rgba(245, 130, 32, 0.16);
  transform: translateY(-0.35rem);
}

.launchpad-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.38rem 0.85rem;
  border-radius: 0 0 5px 5px;
  color: white;
  background: var(--lp-orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launchpad-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--lp-navy);
  font-size: 1.45rem;
}

.launchpad-package-card.is-featured .launchpad-card-icon {
  margin-top: 0.7rem;
  background: var(--lp-orange);
}

.launchpad-package-card p {
  min-height: 4.8rem;
  color: var(--lp-ink);
}

.launchpad-package-card strong {
  color: var(--lp-ink);
  font-size: 2rem;
  line-height: 1;
}

.launchpad-package-card strong span {
  font-size: 0.8rem;
  font-weight: 600;
}

.launchpad-package-card strong::after {
  content: "";
  width: 3rem;
  height: 2px;
  display: block;
  margin: 0.75rem auto 0;
  background: var(--lp-orange);
}

.launchpad-package-card ul {
  width: 100%;
  margin: 0;
  padding: 0.85rem 0 0;
  display: grid;
  gap: 0.52rem;
  border-top: 1px solid var(--lp-line);
  list-style: none;
  text-align: left;
}

.launchpad-package-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--lp-ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.launchpad-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.48rem;
  height: 0.26rem;
  border-left: 2px solid var(--lp-ink);
  border-bottom: 2px solid var(--lp-ink);
  transform: rotate(-45deg);
}

.launchpad-package-card .launchpad-btn {
  width: 100%;
  align-self: end;
  margin-top: 0.25rem;
}

.launchpad-process {
  padding-top: 0;
}

.launchpad-process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.4rem;
}

.launchpad-process-line article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
}

.launchpad-process-line article:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 1.25rem;
  right: -0.95rem;
  color: var(--lp-orange);
  font-size: 1.35rem;
  font-weight: 600;
}

.launchpad-process-line span {
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--lp-navy);
  background: #f0f2f5;
  font-weight: 900;
}

.launchpad-process-line p,
.launchpad-why p {
  color: var(--lp-ink);
}

.launchpad-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
  background: linear-gradient(90deg, #fff, #f7f2ee);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.launchpad-about__image {
  min-height: 400px;
}

.launchpad-about__copy {
  padding: clamp(3rem, 5.5vw, 5.4rem);
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.launchpad-about h2::after {
  margin-left: 0;
}

.launchpad-about__copy > p:not(.launchpad-eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--lp-ink);
  font-size: 1rem;
  line-height: 1.7;
}

.launchpad-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.7rem;
}

.launchpad-stats article {
  padding-right: 1rem;
  border-right: 1px solid rgba(245, 130, 32, 0.45);
}

.launchpad-stats article:last-child {
  border-right: 0;
}

.launchpad-stats strong {
  display: block;
  color: var(--lp-orange);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.launchpad-stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.launchpad-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.launchpad-why-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 0.85rem;
  align-items: start;
  padding: 0 1.45rem;
  border-right: 1px solid var(--lp-line);
}

.launchpad-why-grid article:last-child {
  border-right: 0;
}

.launchpad-why-grid span {
  grid-row: span 2;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  color: var(--lp-navy);
  font-size: 1.45rem;
}

.launchpad-final-cta {
  min-height: 290px;
  display: grid;
  place-items: center;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  color: white;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 21, 39, 0.32), rgba(6, 21, 39, 0.96)),
    linear-gradient(155deg, transparent 0 48%, rgba(255, 255, 255, 0.06) 48.2% 49%, transparent 49.2%),
    linear-gradient(165deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58.2% 59%, transparent 59.2%),
    linear-gradient(135deg, #122943, #061527 72%);
}

.launchpad-final-cta div {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.launchpad-final-cta p {
  margin: 0;
  color: var(--lp-orange);
  font-size: 1.05rem;
  font-weight: 800;
}

.launchpad-footer {
  max-width: none;
  padding: 2.3rem max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr 0.85fr;
  align-items: start;
  background: var(--lp-navy);
  color: white;
}

.launchpad-footer > div,
.launchpad-footer nav {
  display: grid;
  gap: 0.45rem;
}

.launchpad-footer h2 {
  color: white;
}

.launchpad-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.launchpad-footer > small {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.launchpad-footer > small span:last-child {
  display: inline-flex;
  gap: 1rem;
}

@media (max-width: 1120px) {
  .launchpad-showcase-note {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .launchpad-nav {
    flex-wrap: wrap;
  }

  .launchpad-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .launchpad-hero,
  .launchpad-about {
    grid-template-columns: 1fr;
  }

  .launchpad-hero__copy {
    background: var(--lp-navy);
  }

  .launchpad-hero__image {
    order: -1;
    min-height: 460px;
    margin-left: 0;
  }

  .launchpad-package-grid,
  .launchpad-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launchpad-process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .launchpad-process-line article:not(:last-child)::after {
    display: none;
  }

  .launchpad-why-grid article {
    padding: 1.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--lp-line);
  }

  .launchpad-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .launchpad-showcase-note,
  .launchpad-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .launchpad-brand {
    justify-self: center;
  }

  .launchpad-links {
    gap: 0.7rem 0.95rem;
  }

  .launchpad-links a {
    font-size: 0.68rem;
  }

  .launchpad-nav > .launchpad-btn,
  .launchpad-actions,
  .launchpad-actions .launchpad-btn {
    width: 100%;
  }

  .launchpad-hero {
    min-height: 0;
  }

  .launchpad-hero__copy,
  .launchpad-section,
  .launchpad-about__copy,
  .launchpad-final-cta,
  .launchpad-footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .launchpad-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .launchpad-trust,
  .launchpad-package-grid,
  .launchpad-process-line,
  .launchpad-stats,
  .launchpad-why-grid,
  .launchpad-footer {
    grid-template-columns: 1fr;
  }

  .launchpad-package-card.is-featured {
    transform: none;
  }

  .launchpad-about__image {
    min-height: 300px;
  }

  .launchpad-stats article,
  .launchpad-why-grid article {
    border-right: 0;
  }

  .launchpad-stats article {
    padding: 0 0 0.8rem;
    border-bottom: 1px solid rgba(245, 130, 32, 0.35);
  }

  .launchpad-stats article:last-child,
  .launchpad-why-grid article:last-child {
    border-bottom: 0;
  }

  .launchpad-footer,
  .launchpad-footer nav,
  .launchpad-footer > div {
    text-align: center;
  }

  .launchpad-footer > small {
    justify-content: center;
  }
}

/* FreshFork Meal Prep showcase */
.freshfork-page {
  --ff-green: #276b32;
  --ff-green-dark: #0f4a24;
  --ff-green-soft: #eaf4e6;
  --ff-ink: #242426;
  --ff-muted: #5f665f;
  --ff-line: #dfe7dc;
  --ff-cream: #fffaf1;
  --ff-warm: #f6efe3;
  --ff-red: #e14a32;
  margin: 0;
  background: #fffdf8;
  background-image: none;
  color: var(--ff-ink);
  font-family: Inter, system-ui, sans-serif;
}

.freshfork-page::before { display: none; }
.freshfork-page svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.freshfork-page h1,
.freshfork-page h2,
.freshfork-page h3,
.freshfork-page strong,
.freshfork-page a,
.freshfork-page button,
.freshfork-page input { font-family: Inter, system-ui, sans-serif; }

.freshfork-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(39, 107, 50, 0.18);
  border-radius: 8px;
  background: #f7fbf5;
  color: #203a25;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.freshfork-showcase-note span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--ff-green);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.7rem;
  text-transform: uppercase;
}

.freshfork-showcase-note p { margin: 0; color: #4c5d4f; font-size: 0.95rem; line-height: 1.5; }

.freshfork-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--ff-line);
  backdrop-filter: blur(16px);
}

.freshfork-nav {
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.freshfork-brand {
  color: var(--ff-green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.freshfork-brand strong {
  display: grid;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.freshfork-brand small { color: #5c7b56; font-size: 0.52em; font-weight: 700; letter-spacing: 0.03em; }

.freshfork-mark {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(39, 107, 50, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.freshfork-mark svg { width: 32px; height: 32px; }

.freshfork-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  font-size: 0.95rem;
  font-weight: 700;
}

.freshfork-links a {
  color: #252a25;
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 2px solid transparent;
}

.freshfork-links a:hover,
.freshfork-links a:focus-visible { color: var(--ff-green-dark); border-color: var(--ff-green); }

.freshfork-btn {
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 44px;
  padding: 0.78rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ff-green-dark);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.freshfork-btn:hover,
.freshfork-btn:focus-visible { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(31, 79, 36, 0.16); }
.freshfork-btn--primary { background: var(--ff-green); color: white; }
.freshfork-btn--outline,
.freshfork-btn--card { background: white; border-color: rgba(15, 74, 36, 0.45); }
.freshfork-btn--accent { background: var(--ff-red); color: white; }

.freshfork-hero {
  max-width: 1180px;
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  align-items: stretch;
  background: var(--ff-cream);
  overflow: hidden;
}

.freshfork-hero__copy {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 3.3rem);
  display: grid;
  align-content: center;
}

.freshfork-hero h1 {
  max-width: 570px;
  color: var(--ff-ink);
  font-size: clamp(3rem, 6.3vw, 5.55rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.93;
  margin: 0 0 1rem;
}

.freshfork-hero h1::first-line { color: var(--ff-green-dark); }
.freshfork-hero p { max-width: 500px; color: #4d554f; font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.55; margin: 0; }
.freshfork-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; }
.freshfork-hero__image { min-height: 430px; position: relative; }
.freshfork-hero__image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.freshfork-section-title {
  max-width: 1180px;
  margin: 0 auto 1.4rem;
  padding: 0 1rem;
  text-align: center;
}

.freshfork-section-title h2 {
  color: var(--ff-green-dark);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.freshfork-section-title--line { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.freshfork-section-title--line::before,
.freshfork-section-title--line::after { content: ""; width: min(105px, 18vw); height: 1px; background: rgba(39, 107, 50, 0.45); }

.freshfork-how,
.freshfork-plans,
.freshfork-menu,
.freshfork-benefits,
.freshfork-final,
.freshfork-footer { max-width: 1180px; margin-left: auto; margin-right: auto; }

.freshfork-how { padding: 1.2rem 1rem 0; }
.freshfork-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.freshfork-step-grid article { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 0.85rem; }
.freshfork-step-icon { width: 72px; height: 72px; border: 1px solid rgba(39, 107, 50, 0.55); border-radius: 50%; background: #f5faf2; color: var(--ff-green); display: grid; place-items: center; }
.freshfork-step-icon svg { width: 34px; height: 34px; }
.freshfork-step-number { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--ff-green); color: white; font-size: 0.78rem; font-weight: 900; }

.freshfork-step-grid h3,
.freshfork-plan-card h3,
.freshfork-menu-card h3,
.freshfork-benefits h3 { margin: 0; color: #273129; font-weight: 900; letter-spacing: -0.015em; }

.freshfork-step-grid p,
.freshfork-plan-card p,
.freshfork-menu-card p,
.freshfork-benefits p,
.freshfork-footer p { margin: 0; color: var(--ff-muted); line-height: 1.45; }

.freshfork-plans { padding: 1.5rem 1rem 0; }
.freshfork-plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }

.freshfork-plan-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 1.15rem;
  padding: 0.85rem;
  border: 1px solid var(--ff-line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 12px 30px rgba(33, 55, 36, 0.08);
}

.freshfork-plan-card.is-featured { border-color: var(--ff-green); box-shadow: 0 18px 36px rgba(31, 79, 36, 0.16); transform: translateY(-4px); }
.freshfork-plan-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; border-radius: 8px; }
.freshfork-plan-card > div { display: grid; align-content: center; gap: 0.65rem; padding: 0.5rem 0.35rem; }
.freshfork-plan-card h3 { color: var(--ff-green); font-size: 1.35rem; }
.freshfork-price { color: #1f2522 !important; font-size: clamp(2rem, 3vw, 2.7rem); font-weight: 900; letter-spacing: -0.04em; line-height: 0.95; }
.freshfork-price span { color: var(--ff-green); font-size: 0.38em; letter-spacing: 0; margin-left: 0.25rem; }
.freshfork-plan-card ul { list-style: none; display: grid; gap: 0.45rem; padding: 0; margin: 0.2rem 0; color: #38453b; font-size: 0.88rem; }
.freshfork-plan-card li { display: flex; align-items: flex-start; gap: 0.45rem; }
.freshfork-plan-card li::before { content: ""; width: 0.72rem; height: 0.72rem; flex: 0 0 auto; margin-top: 0.2rem; border-radius: 50%; background: var(--ff-green); box-shadow: inset 0 0 0 3px #cfe7c8; }
.freshfork-plan-badge { position: absolute; z-index: 2; top: -0.75rem; left: 50%; transform: translateX(-50%); padding: 0.45rem 1.2rem; border-radius: 999px; background: var(--ff-red); color: white; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

.freshfork-menu { padding: 1.5rem 1rem 0; }
.freshfork-menu-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.freshfork-menu-card { overflow: hidden; border: 1px solid var(--ff-line); border-radius: 9px; background: white; box-shadow: 0 10px 24px rgba(33, 55, 36, 0.07); }
.freshfork-menu-card img { width: 100%; aspect-ratio: 1.34; display: block; object-fit: cover; }
.freshfork-menu-card div { padding: 0.85rem; }
.freshfork-menu-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.freshfork-menu-card p { min-height: 4.2em; font-size: 0.82rem; }
.freshfork-menu-card span { display: inline-flex; align-items: center; margin: 0.6rem 0.25rem 0 0; padding: 0.28rem 0.45rem; border-radius: 999px; background: #dcefd6; color: var(--ff-green-dark); font-size: 0.66rem; font-weight: 900; text-transform: uppercase; }
.freshfork-menu-card span:nth-of-type(2) { background: #ffe2ce; color: #bd4a23; }

.freshfork-benefits {
  margin-top: 1.3rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef8eb, #fff8ed);
}

.freshfork-benefits article { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: center; border-right: 1px solid rgba(39, 107, 50, 0.18); }
.freshfork-benefits article:last-child { border-right: 0; }
.freshfork-benefits span { width: 58px; height: 58px; border-radius: 50%; background: var(--ff-green); color: white; display: grid; place-items: center; }
.freshfork-benefits svg { width: 31px; height: 31px; }
.freshfork-benefits h3 { font-size: 1.03rem; margin-bottom: 0.2rem; }
.freshfork-benefits p { font-size: 0.82rem; }

.freshfork-final {
  min-height: 150px;
  margin-top: 1.35rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ff-warm);
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1fr 0.72fr;
  align-items: center;
  gap: 1rem;
}

.freshfork-final__ingredients {
  min-height: 112px;
  background:
    radial-gradient(circle at 30% 45%, #d63e2a 0 18px, transparent 19px),
    radial-gradient(circle at 52% 32%, #e85435 0 15px, transparent 16px),
    radial-gradient(circle at 44% 62%, #bd2f22 0 12px, transparent 13px),
    radial-gradient(ellipse at 72% 48%, #2f7c38 0 13px, transparent 14px),
    radial-gradient(ellipse at 68% 33%, #65a044 0 8px, transparent 9px);
}

.freshfork-final h2 { max-width: 600px; margin: 0; color: var(--ff-green-dark); font-size: clamp(2rem, 4vw, 3.05rem); font-weight: 900; letter-spacing: -0.035em; line-height: 0.98; text-align: center; }
.freshfork-final h2::first-line { color: var(--ff-green); }
.freshfork-final p { margin: 0.65rem 0 1rem; color: #4d554f; font-weight: 600; text-align: center; }
.freshfork-final > div:nth-child(2) { display: grid; justify-items: center; }
.freshfork-final img { width: 100%; max-height: 160px; object-fit: cover; border-radius: 999px 0 0 999px; }

.freshfork-footer {
  padding: 1.6rem 1rem 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(120px, 0.75fr)) minmax(220px, 1.05fr);
  gap: 1.5rem;
}

.freshfork-footer h2 { margin: 0 0 0.65rem; color: #223228; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.freshfork-footer a { color: #526055; text-decoration: none; line-height: 1.9; }
.freshfork-footer nav { display: grid; align-content: start; }
.freshfork-footer > div > p { max-width: 260px; margin-top: 0.8rem; font-size: 0.84rem; }
.freshfork-signup label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.freshfork-signup p { margin-bottom: 0.85rem; font-size: 0.84rem; }
.freshfork-signup div { display: grid; grid-template-columns: 1fr auto; border: 1px solid rgba(39, 107, 50, 0.35); border-radius: 8px; background: white; overflow: hidden; }
.freshfork-signup input { min-width: 0; border: 0; padding: 0.85rem; font: inherit; }
.freshfork-signup button { width: 44px; border: 0; background: var(--ff-green); color: white; display: grid; place-items: center; }
.freshfork-signup svg { width: 19px; height: 19px; }
.freshfork-footer > small { grid-column: 1 / -1; color: #7a837b; text-align: center; }

@media (max-width: 1080px) {
  .freshfork-links { display: none; }
  .freshfork-hero { grid-template-columns: 1fr; }
  .freshfork-hero__image { min-height: 360px; }
  .freshfork-plan-grid { grid-template-columns: 1fr; }
  .freshfork-plan-card { grid-template-columns: minmax(220px, 0.7fr) 1fr; }
  .freshfork-plan-card.is-featured { transform: none; }
  .freshfork-menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .freshfork-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .freshfork-benefits article:nth-child(2) { border-right: 0; }
  .freshfork-final { grid-template-columns: 1fr 1.35fr; }
  .freshfork-final__ingredients { display: none; }
  .freshfork-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .freshfork-showcase-note { margin: 0.75rem; align-items: flex-start; flex-direction: column; }
  .freshfork-nav { min-height: auto; padding: 0.9rem 1rem; }
  .freshfork-brand strong { font-size: 1.35rem; }
  .freshfork-mark { width: 42px; height: 42px; }
  .freshfork-nav > .freshfork-btn { display: none; }
  .freshfork-hero { margin: 0 0.75rem; border-radius: 14px; }
  .freshfork-hero__copy { padding: 2rem 1.1rem; }
  .freshfork-hero h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .freshfork-actions,
  .freshfork-actions .freshfork-btn { width: 100%; }
  .freshfork-step-grid,
  .freshfork-plan-card,
  .freshfork-menu-grid,
  .freshfork-benefits,
  .freshfork-final,
  .freshfork-footer { grid-template-columns: 1fr; }
  .freshfork-step-grid article { grid-template-columns: auto auto 1fr; }
  .freshfork-plan-card img { min-height: auto; aspect-ratio: 1.25; }
  .freshfork-benefits article { border-right: 0; border-bottom: 1px solid rgba(39, 107, 50, 0.18); padding-bottom: 1rem; }
  .freshfork-benefits article:last-child { border-bottom: 0; padding-bottom: 0; }
  .freshfork-menu-card p { min-height: auto; }
  .freshfork-final { margin-left: 0.75rem; margin-right: 0.75rem; padding: 1.3rem; }
  .freshfork-final img { border-radius: 12px; max-height: 260px; }
  .freshfork-final h2,
  .freshfork-final p { text-align: left; }
  .freshfork-final > div:nth-child(2) { justify-items: start; }
}

/* Form & Field Studios showcase */
.formfield-page {
  --ff-ink: #171717;
  --ff-charcoal: #111111;
  --ff-paper: #f6f2ec;
  --ff-soft: #ebe5dc;
  --ff-muted: #6f6a63;
  --ff-line: rgba(23, 23, 23, 0.18);
  margin: 0;
  color: var(--ff-ink);
  background: var(--ff-paper);
  font-family: "Inter", var(--sans);
}

.formfield-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.formfield-page img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.formfield-page h1,
.formfield-page h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.formfield-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--ff-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.07);
}

.formfield-showcase-note span,
.formfield-eyebrow {
  color: var(--ff-ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.formfield-showcase-note p {
  margin: 0;
  color: var(--ff-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.formfield-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 236, 0.94);
  border-bottom: 1px solid var(--ff-line);
  backdrop-filter: blur(14px);
}

.formfield-nav,
.formfield-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  align-items: center;
  gap: 1.3rem;
}

.formfield-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.formfield-brand {
  color: var(--ff-ink);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.formfield-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 0.9;
}

.formfield-brand small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.52em;
}

.formfield-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.formfield-links a,
.formfield-footer a,
.formfield-text-link {
  color: var(--ff-ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.formfield-links a:hover,
.formfield-links a:focus-visible,
.formfield-footer a:hover,
.formfield-footer a:focus-visible,
.formfield-text-link:hover,
.formfield-text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.formfield-btn {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--ff-ink);
  background: transparent;
  color: var(--ff-ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.formfield-btn--dark {
  background: var(--ff-ink);
  color: white;
}

.formfield-btn--light {
  background: white;
  color: var(--ff-ink);
}

.formfield-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--ff-charcoal);
}

.formfield-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.formfield-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0 34%, rgba(17, 17, 17, 0.28) 58%, transparent);
}

.formfield-hero__panel {
  position: relative;
  z-index: 1;
  max-width: 440px;
  padding: clamp(4rem, 7vw, 6.8rem) clamp(1.5rem, 5vw, 4.2rem);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.15rem;
  color: white;
}

.formfield-hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  line-height: 0.95;
}

.formfield-hero__panel > p:not(.formfield-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.75;
}

.formfield-project-types {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 3fr);
  border-bottom: 1px solid var(--ff-line);
  background: rgba(255, 255, 255, 0.45);
}

.formfield-type-intro {
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  align-content: space-between;
  gap: 2rem;
  border-right: 1px solid var(--ff-line);
}

.formfield-type-intro p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: uppercase;
}

.formfield-type-intro p::after,
.formfield-eyebrow::after {
  content: "";
  width: 2.3rem;
  height: 1px;
  display: block;
  margin-top: 0.75rem;
  background: currentColor;
}

.formfield-type-intro a,
.formfield-type-grid a {
  color: var(--ff-ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.formfield-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.formfield-type-grid article {
  min-height: 210px;
  padding: 1.8rem 1.25rem;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.55rem;
  border-right: 1px solid var(--ff-line);
  text-align: center;
}

.formfield-type-grid article:last-child {
  border-right: 0;
}

.formfield-type-grid span {
  margin-bottom: 0.35rem;
  color: var(--ff-ink);
  font-size: 2.45rem;
}

.formfield-type-grid h2,
.formfield-process-grid h3,
.formfield-footer h2 {
  margin: 0;
  font-family: "Inter", var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.formfield-type-grid p {
  min-height: 2.7rem;
  margin: 0;
  color: var(--ff-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.formfield-type-grid a::after,
.formfield-type-intro a::after,
.formfield-text-link::after {
  content: " ->";
}

.formfield-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr) minmax(210px, 0.58fr);
  border-bottom: 1px solid var(--ff-line);
  background: rgba(255, 255, 255, 0.42);
}

.formfield-featured__main {
  min-height: 430px;
  height: 100%;
}

.formfield-featured__copy {
  padding: clamp(2.8rem, 5vw, 5rem);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
  border-right: 1px solid var(--ff-line);
}

.formfield-featured__copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.1rem);
  line-height: 0.95;
}

.formfield-featured__copy > p:not(.formfield-eyebrow) {
  margin: 0;
  color: #3e3a35;
  font-size: 0.95rem;
  line-height: 1.7;
}

.formfield-featured__stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  background: #ded8ce;
}

.formfield-featured__stack img {
  height: 100%;
  min-height: 130px;
}

.formfield-work {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.formfield-work__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.formfield-work__header .formfield-eyebrow {
  margin: 0;
  white-space: nowrap;
}

.formfield-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.formfield-tabs button {
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0.25rem 0;
  background: transparent;
  color: var(--ff-muted);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.formfield-tabs button.is-active,
.formfield-tabs button:hover,
.formfield-tabs button:focus-visible {
  color: var(--ff-ink);
  border-color: var(--ff-ink);
}

.formfield-gallery {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  grid-auto-rows: 160px;
  gap: 0.55rem;
}

.formfield-gallery a {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: white;
  text-decoration: none;
  background: #ded8ce;
}

.formfield-gallery a.is-tall {
  grid-row: span 2;
}

.formfield-gallery img {
  height: 100%;
  transition: transform 0.35s ease;
}

.formfield-gallery a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
}

.formfield-gallery a:hover img,
.formfield-gallery a:focus-visible img {
  transform: scale(1.035);
}

.formfield-gallery span,
.formfield-gallery small {
  position: absolute;
  z-index: 1;
  left: 0.8rem;
}

.formfield-gallery span {
  bottom: 1.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.formfield-gallery small {
  bottom: 0.7rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.formfield-text-link {
  width: max-content;
  display: flex;
  margin: 1.2rem auto 0;
}

.formfield-process {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(0, 2.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3rem, 5.5vw, 4.7rem) max(1.5rem, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--ff-charcoal);
}

.formfield-process .formfield-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.formfield-process h2 {
  max-width: 300px;
  margin: 0.9rem 0 0;
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1;
}

.formfield-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.formfield-process-grid article {
  min-height: 170px;
  padding: 0.5rem 1.25rem;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.formfield-process-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.formfield-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.45;
}

.formfield-final {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.6fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: 1rem max(1.5rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--ff-line);
  background: #f8f5ef;
}

.formfield-final img {
  height: 120px;
}

.formfield-final h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.formfield-final p {
  margin: 0.15rem 0 0;
  color: var(--ff-muted);
}

.formfield-footer {
  padding: 2.4rem max(1.5rem, calc((100vw - 1180px) / 2)) 1.4rem;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.75fr) 1.05fr;
  align-items: start;
  background: var(--ff-paper);
  border-bottom: 1px solid var(--ff-line);
}

.formfield-footer nav,
.formfield-footer > div {
  display: grid;
  gap: 0.35rem;
}

.formfield-footer h2 {
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.formfield-footer p {
  margin: 0;
  color: var(--ff-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.formfield-footer > div:first-child p {
  max-width: 250px;
  margin-top: 0.9rem;
}

.formfield-footer > small {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ff-line);
  color: var(--ff-muted);
}

@media (max-width: 1120px) {
  .formfield-showcase-note { margin-left: 1rem; margin-right: 1rem; }
  .formfield-nav { display: flex; flex-wrap: wrap; }
  .formfield-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .formfield-project-types,
  .formfield-featured,
  .formfield-process,
  .formfield-final {
    grid-template-columns: 1fr;
  }
  .formfield-type-intro,
  .formfield-featured__copy {
    border-right: 0;
    border-bottom: 1px solid var(--ff-line);
  }
  .formfield-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .formfield-type-grid article:nth-child(2n) { border-right: 0; }
  .formfield-featured__stack { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; }
  .formfield-process-grid { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; }
  .formfield-final { text-align: center; justify-items: center; }
  .formfield-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .formfield-showcase-note,
  .formfield-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .formfield-nav > .formfield-btn { display: none; }
  .formfield-links { gap: 0.75rem 1rem; }
  .formfield-hero { min-height: 0; }
  .formfield-hero > img { position: relative; min-height: 330px; }
  .formfield-hero::after { display: none; }
  .formfield-hero__panel { max-width: none; padding: 2.2rem 1rem; background: var(--ff-charcoal); }
  .formfield-hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .formfield-hero .formfield-btn,
  .formfield-final .formfield-btn { width: 100%; }
  .formfield-type-grid,
  .formfield-featured__stack,
  .formfield-gallery,
  .formfield-footer {
    grid-template-columns: 1fr;
  }
  .formfield-type-grid article,
  .formfield-type-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--ff-line);
  }
  .formfield-work { padding-left: 0.75rem; padding-right: 0.75rem; }
  .formfield-work__header { align-items: flex-start; flex-direction: column; }
  .formfield-tabs { gap: 0.35rem 0.9rem; }
  .formfield-gallery { grid-auto-rows: auto; }
  .formfield-gallery a,
  .formfield-gallery a.is-tall { grid-row: auto; min-height: 230px; }
  .formfield-gallery img { height: 260px; }
  .formfield-process { padding-left: 1rem; padding-right: 1rem; }
  .formfield-process-grid { grid-template-columns: 1fr; overflow: visible; }
  .formfield-process-grid article { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.22); }
  .formfield-final { padding: 1rem; }
  .formfield-final img { height: 180px; }
  .formfield-footer,
  .formfield-footer nav,
  .formfield-footer > div { text-align: center; justify-items: center; }
  .formfield-footer > small { justify-content: center; flex-wrap: wrap; }
}

/* Mossline Studio showcase */
.mossline-page {
  --ms-paper: #f5eedc;
  --ms-paper-2: #fbf5e8;
  --ms-ink: #242819;
  --ms-green: #59632d;
  --ms-green-dark: #424a22;
  --ms-ochre: #bf733c;
  --ms-gold: #bd8b39;
  --ms-muted: #6f6755;
  --ms-line: rgba(55, 58, 35, 0.18);
  margin: 0;
  color: var(--ms-ink);
  background:
    linear-gradient(rgba(87, 82, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 82, 52, 0.03) 1px, transparent 1px),
    var(--ms-paper);
  background-size: 38px 38px;
  font-family: "Inter", var(--sans);
}

.mossline-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background:
    radial-gradient(circle at 12% 16%, rgba(89, 99, 45, 0.08), transparent 14rem),
    radial-gradient(circle at 85% 18%, rgba(191, 115, 60, 0.08), transparent 17rem),
    repeating-radial-gradient(circle at 50% 30%, rgba(36, 40, 25, 0.035) 0 1px, transparent 1px 5px);
}

.mossline-page img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.mossline-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.mossline-page h1,
.mossline-page h2,
.mossline-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.mossline-showcase-note {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--ms-line);
  border-radius: 8px;
  background: rgba(255, 249, 236, 0.86);
  box-shadow: 0 12px 30px rgba(55, 58, 35, 0.07);
}

.mossline-showcase-note span,
.mossline-eyebrow {
  color: var(--ms-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mossline-showcase-note p {
  margin: 0;
  color: var(--ms-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mossline-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 238, 220, 0.92);
  border-bottom: 1px solid var(--ms-line);
  backdrop-filter: blur(14px);
}

.mossline-nav {
  max-width: 1180px;
  min-height: 74px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.mossline-brand {
  color: var(--ms-ink);
  text-decoration: none;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1;
}

.mossline-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.7vw, 2.8rem);
}

.mossline-links a,
.mossline-footer a,
.mossline-section-line a,
.mossline-text-link {
  color: var(--ms-ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mossline-links a:hover,
.mossline-links a:focus-visible,
.mossline-footer a:hover,
.mossline-footer a:focus-visible,
.mossline-section-line a:hover,
.mossline-section-line a:focus-visible,
.mossline-text-link:hover,
.mossline-text-link:focus-visible {
  color: var(--ms-ochre);
}

.mossline-leaf {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--ms-green);
  font-size: 2rem;
}

.mossline-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem 2.4rem;
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.mossline-hero__copy {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 1.05rem;
}

.mossline-hero__copy::before {
  content: "";
  position: absolute;
  left: -3.1rem;
  top: 8rem;
  width: 2.8rem;
  height: 9rem;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 46% 12%, transparent 0 28%, var(--ms-green) 29% 31%, transparent 32%),
    radial-gradient(ellipse at 34% 36%, transparent 0 28%, var(--ms-green) 29% 31%, transparent 32%),
    radial-gradient(ellipse at 60% 60%, transparent 0 28%, var(--ms-green) 29% 31%, transparent 32%),
    linear-gradient(100deg, transparent 47%, var(--ms-green) 48% 50%, transparent 51%);
}

.mossline-script {
  margin: 0;
  color: var(--ms-ochre);
  font-family: "Kalam", cursive;
  font-size: 1.15rem;
}

.mossline-script::after {
  content: "";
  width: 7rem;
  height: 1px;
  display: inline-block;
  margin-left: 0.9rem;
  vertical-align: middle;
  background: rgba(191, 115, 60, 0.42);
}

.mossline-hero h1 {
  max-width: 530px;
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  line-height: 0.94;
}

.mossline-hero__copy > p:not(.mossline-script) {
  max-width: 455px;
  margin: 0;
  color: var(--ms-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.mossline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.55rem;
}

.mossline-btn {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--ms-green);
  color: var(--ms-ink);
  background: transparent;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mossline-btn--green {
  color: white;
  background: var(--ms-green);
}

.mossline-btn--outline {
  border-color: var(--ms-ochre);
}

.mossline-btn--paper {
  border-color: rgba(255, 249, 236, 0.78);
  background: rgba(255, 249, 236, 0.88);
}

.mossline-hero__art {
  position: relative;
  margin: 0;
  border-radius: 26px 26px 14px 14px;
}

.mossline-hero__art img {
  max-height: 610px;
  border-radius: 26px 26px 14px 14px;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(55, 58, 35, 0.14);
}

.mossline-featured,
.mossline-work,
.mossline-about {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.2rem) 1.5rem;
}

.mossline-section-line,
.mossline-work__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
  border-top: 1px solid var(--ms-line);
  padding-top: 1rem;
}

.mossline-section-line .mossline-eyebrow,
.mossline-work__header .mossline-eyebrow {
  margin: 0;
}

.mossline-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
}

.mossline-feature-grid a {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1rem;
  border: 1px solid var(--ms-line);
  color: var(--ms-ink);
  background: rgba(255, 249, 236, 0.72);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(55, 58, 35, 0.07);
}

.mossline-feature-grid img {
  grid-column: 1 / -1;
  aspect-ratio: 1.45;
}

.mossline-feature-grid span,
.mossline-masonry span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.mossline-feature-grid span {
  padding: 0.8rem 0 0 1rem;
}

.mossline-feature-grid small,
.mossline-masonry small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mossline-feature-grid small {
  grid-column: 1;
  padding: 0 0 0.9rem 1rem;
}

.mossline-feature-grid a::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  align-self: end;
  margin: 0 0.9rem 0.9rem 0;
  opacity: 0.45;
  background:
    radial-gradient(ellipse at 50% 14%, transparent 0 28%, var(--ms-green) 29% 31%, transparent 32%),
    linear-gradient(120deg, transparent 48%, var(--ms-green) 49% 51%, transparent 52%);
}

.mossline-work {
  padding-top: 1rem;
}

.mossline-work__header {
  align-items: start;
}

.mossline-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}

.mossline-filters button {
  min-height: 2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  background: transparent;
  color: var(--ms-ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.mossline-filters button.is-active,
.mossline-filters button:hover,
.mossline-filters button:focus-visible {
  color: white;
  background: var(--ms-green);
}

.mossline-masonry {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 148px;
  gap: 0.8rem;
  align-items: stretch;
}

.mossline-masonry a {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(55, 58, 35, 0.13);
  color: white;
  background: #e9dfc9;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(55, 58, 35, 0.08);
}

.mossline-masonry a.is-tall {
  grid-row: span 2;
}

.mossline-masonry a.is-wide {
  grid-column: span 2;
}

.mossline-masonry img {
  height: 100%;
  transition: transform 0.35s ease;
}

.mossline-masonry a:hover img,
.mossline-masonry a:focus-visible img {
  transform: scale(1.035);
}

.mossline-masonry a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(31, 31, 20, 0.66));
}

.mossline-masonry span,
.mossline-masonry small {
  position: absolute;
  z-index: 1;
  left: 0.7rem;
}

.mossline-masonry span {
  bottom: 1.55rem;
}

.mossline-masonry small {
  bottom: 0.55rem;
}

.mossline-about {
  display: grid;
  grid-template-columns: 160px minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
  border-top: 1px solid var(--ms-line);
}

.mossline-about aside {
  min-height: 210px;
  display: grid;
  place-items: center;
  color: var(--ms-green);
  background:
    radial-gradient(circle at 50% 30%, rgba(89, 99, 45, 0.16), transparent 3rem),
    rgba(255, 249, 236, 0.48);
}

.mossline-about aside span {
  max-width: 90px;
  color: var(--ms-ochre);
  font-family: "Kalam", cursive;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
}

.mossline-about img {
  min-height: 360px;
  border: 1px solid var(--ms-line);
}

.mossline-about h2 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(3rem, 5.5vw, 4.7rem);
  line-height: 0.9;
}

.mossline-about p:not(.mossline-eyebrow) {
  margin: 0 0 0.85rem;
  color: #4f4b3e;
  line-height: 1.65;
}

.mossline-text-link::after {
  content: " ->";
}

.mossline-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
}

.mossline-split article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: clamp(2.4rem, 5vw, 4rem) 1.5rem;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.65rem;
  text-align: center;
}

.mossline-split article:first-child {
  background: var(--ms-green);
}

.mossline-split article:last-child {
  background: var(--ms-ochre);
}

.mossline-split article::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 9rem;
  height: 9rem;
  opacity: 0.18;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.mossline-split .mossline-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.mossline-split h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 4.6rem);
  line-height: 0.9;
}

.mossline-split p:not(.mossline-eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.mossline-split .mossline-btn {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  border-color: transparent;
}

.mossline-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: clamp(1.2rem, 4vw, 3rem);
}

.mossline-footer nav,
.mossline-footer > div {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.mossline-footer h2 {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mossline-footer p {
  margin: 0;
  color: var(--ms-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.mossline-footer > small {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ms-line);
  color: var(--ms-muted);
}

@media (max-width: 1120px) {
  .mossline-showcase-note { margin-left: 1rem; margin-right: 1rem; }
  .mossline-nav { grid-template-columns: 1fr auto; }
  .mossline-links { grid-column: 1 / -1; justify-content: center; flex-wrap: wrap; }
  .mossline-hero,
  .mossline-about {
    grid-template-columns: 1fr;
  }
  .mossline-hero__copy::before,
  .mossline-about aside { display: none; }
  .mossline-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mossline-masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mossline-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .mossline-showcase-note,
  .mossline-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mossline-brand { text-align: center; }
  .mossline-leaf { display: none; }
  .mossline-links {
    gap: 0.7rem 1rem;
  }
  .mossline-hero,
  .mossline-featured,
  .mossline-work,
  .mossline-about,
  .mossline-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mossline-hero h1 {
    font-size: clamp(3rem, 13vw, 4.1rem);
  }
  .mossline-actions,
  .mossline-actions .mossline-btn {
    width: 100%;
  }
  .mossline-section-line,
  .mossline-work__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .mossline-filters {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }
  .mossline-filters button {
    white-space: nowrap;
  }
  .mossline-feature-grid,
  .mossline-masonry,
  .mossline-split,
  .mossline-footer {
    grid-template-columns: 1fr;
  }
  .mossline-masonry {
    grid-auto-rows: auto;
  }
  .mossline-masonry a,
  .mossline-masonry a.is-wide,
  .mossline-masonry a.is-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }
  .mossline-masonry img {
    height: 290px;
  }
  .mossline-about img {
    min-height: 280px;
  }
  .mossline-split article {
    min-height: 250px;
  }
  .mossline-split .mossline-btn {
    width: 100%;
  }
  .mossline-footer,
  .mossline-footer nav,
  .mossline-footer > div {
    text-align: center;
    justify-items: center;
  }
}

/* Lauren May Photography showcase */
.lauren-page {
  --lm-bg: #fbf8f2;
  --lm-paper: #fffdf8;
  --lm-ink: #171717;
  --lm-muted: #5f5a54;
  --lm-soft: #eee7dc;
  --lm-line: rgba(23, 23, 23, 0.16);
  --lm-serif: "Cormorant Garamond", Georgia, serif;
  --lm-sans: Inter, Arial, sans-serif;
  margin: 0;
  background: var(--lm-bg);
  background-image: none;
  color: var(--lm-ink);
  font-family: var(--lm-sans);
  line-height: 1.6;
}

.lauren-page::before { display: none; }
.lauren-page h1,
.lauren-page h2 { font-family: var(--lm-serif); font-weight: 500; letter-spacing: -0.015em; }
.lauren-page img { width: 100%; display: block; object-fit: cover; }

.lauren-showcase-note {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.86);
  color: #292622;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lauren-showcase-note span {
  flex: 0 0 auto;
  border: 1px solid var(--lm-line);
  color: var(--lm-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.42rem 0.7rem;
  text-transform: uppercase;
}

.lauren-showcase-note p { margin: 0; color: var(--lm-muted); font-size: 0.92rem; }

.lauren-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
}

.lauren-nav {
  max-width: 1200px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lauren-brand {
  color: var(--lm-ink);
  display: grid;
  gap: 0.08rem;
  text-decoration: none;
  text-transform: uppercase;
}

.lauren-brand strong {
  font-family: var(--lm-serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 0.9;
}

.lauren-brand small {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  padding-left: 0.18rem;
}

.lauren-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lauren-links a,
.lauren-footer a {
  color: inherit;
  text-decoration: none;
}

.lauren-links a:hover,
.lauren-links a:focus-visible,
.lauren-footer a:hover,
.lauren-footer a:focus-visible { text-decoration: underline; text-underline-offset: 0.3em; }

.lauren-btn {
  min-height: 42px;
  padding: 0.82rem 1.65rem;
  border: 1px solid var(--lm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lm-ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.lauren-btn--dark {
  background: var(--lm-ink);
  color: white;
}

.lauren-btn:hover,
.lauren-btn:focus-visible { background: #2a2825; color: white; }

.lauren-hero {
  max-width: 1200px;
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(440px, 1.18fr);
  align-items: stretch;
  background: var(--lm-bg);
}

.lauren-hero__copy {
  padding: clamp(3.5rem, 8vw, 6.4rem) clamp(1.5rem, 5vw, 3.6rem);
  display: grid;
  align-content: center;
}

.lauren-eyebrow {
  margin: 0 0 1.25rem;
  color: #5e5750;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lauren-eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(23, 23, 23, 0.32);
}

.lauren-hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 5.45rem);
  line-height: 0.94;
}

.lauren-hero__copy > p:not(.lauren-eyebrow) {
  max-width: 450px;
  margin: 1.7rem 0 0;
  color: #373431;
  font-size: 1rem;
}

.lauren-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.lauren-press {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
}

.lauren-press span {
  color: #6b645d;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lauren-press span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(23, 23, 23, 0.26);
}

.lauren-press strong {
  font-family: var(--lm-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: #4e4943;
}

.lauren-hero > img {
  height: 100%;
  min-height: 560px;
}

.lauren-section-heading {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  padding: 0 1rem;
  text-align: center;
}

.lauren-section-heading .lauren-eyebrow {
  justify-content: center;
  margin-bottom: 0.35rem;
}

.lauren-section-heading .lauren-eyebrow::after { display: none; }
.lauren-section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  line-height: 1;
}

.lauren-galleries,
.lauren-about,
.lauren-featured,
.lauren-testimonial,
.lauren-final,
.lauren-footer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.lauren-galleries {
  padding: clamp(3rem, 7vw, 4.8rem) 1.5rem 3.6rem;
  background: var(--lm-paper);
}

.lauren-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.lauren-gallery-grid a {
  color: var(--lm-ink);
  display: grid;
  justify-items: center;
  text-align: center;
  text-decoration: none;
}

.lauren-gallery-grid img {
  aspect-ratio: 1.28;
  margin-bottom: 1rem;
}

.lauren-gallery-grid span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lauren-gallery-grid p {
  margin: 0.25rem 0 0;
  color: var(--lm-muted);
  font-size: 0.82rem;
}

.lauren-about {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 8vw, 8rem);
  background:
    radial-gradient(ellipse at 92% 50%, rgba(180, 168, 150, 0.18), transparent 36%),
    var(--lm-soft);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.92fr);
  gap: clamp(2rem, 6vw, 4.8rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lauren-about::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 110px;
  height: 180px;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 48% 20%, #756d62 0 8px, transparent 9px),
    radial-gradient(ellipse at 70% 38%, #756d62 0 10px, transparent 11px),
    radial-gradient(ellipse at 38% 55%, #756d62 0 9px, transparent 10px),
    linear-gradient(70deg, transparent 0 48%, #756d62 49% 51%, transparent 52%);
}

.lauren-about img {
  aspect-ratio: 1.9;
}

.lauren-about div {
  position: relative;
  z-index: 1;
}

.lauren-about h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
}

.lauren-about div > p:not(.lauren-eyebrow) {
  max-width: 520px;
  margin: 0 0 1.35rem;
  color: #3d3934;
}

.lauren-text-link {
  color: var(--lm-ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.lauren-text-link::after {
  content: " ->";
}

.lauren-featured {
  padding: clamp(3rem, 7vw, 4.8rem) 1.5rem;
  background: var(--lm-paper);
  text-align: center;
}

.lauren-feature-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.1fr 1.15fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.lauren-feature-strip img {
  aspect-ratio: 1.33;
}

.lauren-testimonial {
  padding: clamp(2.5rem, 6vw, 4.2rem) clamp(1.5rem, 9vw, 9rem);
  background: var(--lm-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.lauren-testimonial blockquote {
  margin: 0;
  position: relative;
}

.lauren-testimonial blockquote::before {
  content: "“";
  position: absolute;
  left: -3.1rem;
  top: -1.6rem;
  color: rgba(23, 23, 23, 0.18);
  font-family: var(--lm-serif);
  font-size: 6rem;
  line-height: 1;
}

.lauren-testimonial p {
  margin: 0;
  color: #36312d;
  font-family: var(--lm-serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.lauren-testimonial > div {
  padding-left: 2.4rem;
  border-left: 1px solid rgba(23, 23, 23, 0.22);
  display: grid;
  gap: 0.2rem;
}

.lauren-testimonial strong {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lauren-testimonial span {
  color: var(--lm-muted);
  font-size: 0.78rem;
}

.lauren-testimonial div p {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.lauren-testimonial button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--lm-ink);
  font-size: 1.6rem;
}

.lauren-final {
  min-height: 220px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.lauren-final img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.75);
}

.lauren-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 248, 242, 0.52);
}

.lauren-final div {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem;
}

.lauren-final h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1;
}

.lauren-footer {
  padding: 2.2rem 1.5rem 1rem;
  background: var(--lm-paper);
  display: grid;
  grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(120px, 0.75fr)) minmax(210px, 1fr);
  gap: 1.5rem;
}

.lauren-footer h2 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lauren-footer nav,
.lauren-footer > div {
  display: grid;
  align-content: start;
}

.lauren-footer p,
.lauren-footer a {
  color: #4f4943;
  font-size: 0.85rem;
  line-height: 1.55;
}

.lauren-footer > div:first-child p {
  max-width: 260px;
}

.lauren-footer > small {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  color: #706a63;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .lauren-links { display: none; }
  .lauren-hero { grid-template-columns: 1fr; }
  .lauren-hero > img { min-height: 460px; }
  .lauren-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lauren-feature-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lauren-testimonial { grid-template-columns: 1fr; }
  .lauren-testimonial > div { border-left: 0; padding-left: 0; }
  .lauren-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .lauren-showcase-note { margin: 0.75rem; align-items: flex-start; flex-direction: column; }
  .lauren-nav { min-height: auto; padding: 1rem; }
  .lauren-nav > .lauren-btn { display: none; }
  .lauren-brand strong { font-size: 1.55rem; }
  .lauren-hero { margin: 0 0.75rem; }
  .lauren-hero__copy { padding: 2.6rem 1rem; }
  .lauren-hero h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .lauren-actions,
  .lauren-actions .lauren-btn { width: 100%; }
  .lauren-hero > img { min-height: 360px; }
  .lauren-gallery-grid,
  .lauren-about,
  .lauren-feature-strip,
  .lauren-footer { grid-template-columns: 1fr; }
  .lauren-galleries,
  .lauren-featured { padding-left: 1rem; padding-right: 1rem; }
  .lauren-about { padding: 2.6rem 1rem; }
  .lauren-about img { aspect-ratio: 1.25; }
  .lauren-testimonial { padding: 2.5rem 1.5rem; }
  .lauren-testimonial blockquote::before { position: static; display: block; font-size: 4rem; height: 2.3rem; }
  .lauren-footer > small { flex-direction: column; }
}

/* Avery Stone Creative showcase */
.avery-page {
  --av-black: #080608;
  --av-plum: #1b0712;
  --av-plum-2: #2a101f;
  --av-cream: #f4eddf;
  --av-cream-2: #fbf4e8;
  --av-gold: #e4c37a;
  --av-gold-deep: #b58b45;
  --av-ink: #160d12;
  --av-muted: #b9ad9e;
  --av-line: rgba(228, 195, 122, 0.35);
  --av-serif: "Cormorant Garamond", Georgia, serif;
  --av-sans: Inter, Arial, sans-serif;
  margin: 0;
  background: var(--av-black);
  background-image: none;
  color: var(--av-cream);
  font-family: var(--av-sans);
}

.avery-page::before { display: none; }
.avery-page h1,
.avery-page h2,
.avery-page h3 {
  font-family: var(--av-serif);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.avery-page img { width: 100%; display: block; object-fit: cover; }
.avery-page svg { fill: currentColor; stroke: none; }

.avery-showcase-note {
  max-width: 1220px;
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(228, 195, 122, 0.28);
  background: #120910;
  color: var(--av-cream);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avery-showcase-note span {
  flex: 0 0 auto;
  border: 1px solid var(--av-gold);
  color: var(--av-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0.42rem 0.65rem;
  text-transform: uppercase;
}

.avery-showcase-note p { margin: 0; color: rgba(244, 237, 223, 0.78); font-size: 0.92rem; line-height: 1.5; }

.avery-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 6, 8, 0.9);
  border-bottom: 1px solid rgba(228, 195, 122, 0.18);
  backdrop-filter: blur(18px);
}

.avery-nav {
  max-width: 1220px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.avery-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--av-cream);
  text-decoration: none;
  text-transform: uppercase;
}

.avery-brand > span {
  color: var(--av-gold);
  font-size: 1.15rem;
  line-height: 1;
}

.avery-brand strong {
  display: grid;
  font-family: var(--av-serif);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.avery-brand small {
  color: var(--av-gold);
  font-family: var(--av-sans);
  font-size: 0.43em;
  font-weight: 700;
  letter-spacing: 0.42em;
  padding-left: 0.15rem;
}

.avery-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.7vw, 2.55rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.avery-links a,
.avery-footer a {
  color: inherit;
  text-decoration: none;
}

.avery-links a:hover,
.avery-links a:focus-visible {
  color: var(--av-gold);
}

.avery-btn {
  min-height: 44px;
  padding: 0.88rem 1.7rem;
  border: 1px solid var(--av-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--av-cream);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.avery-btn svg { width: 0.9rem; height: 0.9rem; }
.avery-btn--gold { background: var(--av-gold); color: var(--av-ink); }
.avery-btn--dark { background: var(--av-plum); border-color: var(--av-plum); color: var(--av-cream); }
.avery-btn:hover,
.avery-btn:focus-visible { background: var(--av-gold); color: var(--av-ink); }

.avery-hero {
  max-width: 1220px;
  min-height: 650px;
  margin: 0 auto;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.avery-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: 68% center;
}

.avery-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,6,8,0.98) 0 35%, rgba(8,6,8,0.68) 48%, rgba(8,6,8,0.08) 78%),
    linear-gradient(0deg, rgba(8,6,8,0.42), transparent 38%);
}

.avery-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: clamp(4rem, 8vw, 6.7rem) clamp(1.5rem, 5vw, 3.6rem);
}

.avery-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--av-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.avery-eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.avery-eyebrow--dark { color: #4e241e; }

.avery-hero h1 {
  margin: 0;
  color: var(--av-cream);
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 0.92;
}

.avery-hero h1 em {
  color: var(--av-gold);
  font-style: italic;
}

.avery-hero__copy > p:not(.avery-eyebrow) {
  max-width: 420px;
  margin: 1.5rem 0 0;
  color: rgba(244, 237, 223, 0.86);
  line-height: 1.7;
}

.avery-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.avery-scroll {
  position: absolute;
  z-index: 1;
  right: 2.6rem;
  bottom: 2.1rem;
  color: var(--av-gold);
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.avery-scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: var(--av-gold);
}

.avery-profile {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--av-cream-2);
  color: var(--av-ink);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.95fr) minmax(220px, 0.72fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}

.avery-profile > img {
  aspect-ratio: 1.5;
}

.avery-profile h2,
.avery-credits h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 0.98;
}

.avery-profile__story > p:not(.avery-eyebrow) {
  margin: 0 0 1.25rem;
  color: #392d2b;
  line-height: 1.7;
}

.avery-specs {
  margin: 0;
  display: grid;
}

.avery-specs div {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(22, 13, 18, 0.14);
}

.avery-specs dt {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.avery-specs dd {
  margin: 0.2rem 0 0;
  color: #4f4240;
  font-size: 0.9rem;
}

.avery-reel {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.2rem, 4vw, 3rem);
  background: radial-gradient(circle at 26% 30%, rgba(88, 34, 57, 0.7), transparent 34%), var(--av-plum);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.6fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.avery-reel h2,
.avery-media h2,
.avery-final h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  line-height: 0.95;
}

.avery-reel p:not(.avery-eyebrow),
.avery-media p,
.avery-final p {
  color: rgba(244, 237, 223, 0.78);
  line-height: 1.65;
}

.avery-reel__thumb {
  min-height: 215px;
  position: relative;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  text-decoration: none;
}

.avery-reel__thumb img {
  height: 100%;
  min-height: 215px;
}

.avery-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8,6,8,0.22);
}

.avery-play svg { width: 27px; height: 27px; margin-left: 4px; }
.avery-duration {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.avery-credits {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 3.8rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--av-cream-2);
  color: var(--av-ink);
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.avery-text-link {
  color: var(--av-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.avery-text-link::after { content: "->"; }
.avery-text-link--gold { color: var(--av-gold); }

.avery-timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.avery-timeline::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(22, 13, 18, 0.28);
}

.avery-timeline li {
  position: relative;
  padding-top: 3.25rem;
  text-align: center;
}

.avery-timeline li::before {
  content: "";
  position: absolute;
  top: 1.88rem;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--av-ink);
}

.avery-timeline time,
.avery-timeline strong,
.avery-timeline span,
.avery-timeline small {
  display: block;
}

.avery-timeline time {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.8rem;
}

.avery-timeline strong {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.avery-timeline span,
.avery-timeline small {
  color: #514441;
  font-size: 0.78rem;
}

.avery-media {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--av-plum);
  border-top: 1px solid var(--av-line);
  border-bottom: 1px solid var(--av-line);
}

.avery-media article {
  min-height: 330px;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.avery-press-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(220px, 1fr);
  gap: 1.5rem;
  align-items: center;
  border-right: 1px solid var(--av-line);
}

.avery-press-card img {
  aspect-ratio: 1.35;
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

.avery-gallery-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(260px, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.avery-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.avery-gallery-grid img {
  aspect-ratio: 1;
  border: 1px solid rgba(228, 195, 122, 0.25);
}

.avery-final {
  max-width: 1220px;
  min-height: 250px;
  margin: 0 auto;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.avery-final > img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.8) brightness(0.55);
}

.avery-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,7,18,0.15), rgba(8,6,8,0.68));
}

.avery-final div {
  position: relative;
  z-index: 1;
  padding: 2.4rem 1rem;
}

.avery-final p { margin: 0 0 1.3rem; }

.avery-footer {
  max-width: 1220px;
  margin: 0 auto;
  padding: 2.4rem clamp(1.2rem, 4vw, 3rem) 1rem;
  background: #090608;
  border-top: 1px solid rgba(228, 195, 122, 0.22);
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(140px, 0.7fr) minmax(140px, 0.7fr) minmax(240px, 1fr);
  gap: 2rem;
}

.avery-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--av-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.avery-footer p,
.avery-footer a {
  color: rgba(244, 237, 223, 0.78);
  font-size: 0.85rem;
  line-height: 1.65;
}

.avery-footer nav,
.avery-footer > div {
  display: grid;
  align-content: start;
}

.avery-footer > div:first-child p {
  max-width: 270px;
}

.avery-footer > small {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(228, 195, 122, 0.18);
  color: rgba(244, 237, 223, 0.58);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .avery-links { display: none; }
  .avery-profile,
  .avery-reel,
  .avery-credits,
  .avery-media,
  .avery-footer { grid-template-columns: 1fr; }
  .avery-press-card,
  .avery-gallery-card { grid-template-columns: 1fr; border-right: 0; }
  .avery-timeline { grid-template-columns: 1fr; gap: 1rem; margin-top: 0; }
  .avery-timeline::before { display: none; }
  .avery-timeline li {
    padding: 0 0 0 1.4rem;
    text-align: left;
  }
  .avery-timeline li::before {
    top: 0.35rem;
    left: 0;
    transform: none;
  }
  .avery-timeline time {
    position: static;
    margin-bottom: 0.2rem;
    color: var(--av-gold-deep);
    font-weight: 800;
  }
}

@media (max-width: 720px) {
  .avery-showcase-note {
    margin: 0.75rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .avery-nav {
    min-height: auto;
    padding: 1rem;
  }
  .avery-nav > .avery-btn { display: none; }
  .avery-brand strong { font-size: 1.35rem; }
  .avery-hero { min-height: auto; }
  .avery-hero > img {
    position: relative;
    min-height: 390px;
    order: 2;
    object-position: 58% center;
  }
  .avery-hero__shade {
    background: linear-gradient(180deg, rgba(8,6,8,0.94), rgba(8,6,8,0.14) 62%, rgba(8,6,8,0.72));
  }
  .avery-hero__copy {
    padding: 3rem 1rem 2rem;
  }
  .avery-hero h1 { font-size: clamp(3.4rem, 16vw, 4.6rem); }
  .avery-actions,
  .avery-actions .avery-btn,
  .avery-reel .avery-btn,
  .avery-final .avery-btn { width: 100%; }
  .avery-scroll { display: none; }
  .avery-profile,
  .avery-reel,
  .avery-credits,
  .avery-media article,
  .avery-footer { padding-left: 1rem; padding-right: 1rem; }
  .avery-reel__thumb { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avery-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avery-footer > small {
    flex-direction: column;
  }
}

/* NorthStar Motion showcase */
.northstar-page {
  --ns-bg: #050504;
  --ns-panel: #0d0b09;
  --ns-panel-2: #14100c;
  --ns-ink: #f8f3e8;
  --ns-muted: rgba(248, 243, 232, 0.68);
  --ns-soft: rgba(248, 243, 232, 0.1);
  --ns-line: rgba(226, 177, 96, 0.22);
  --ns-gold: #d4a45f;
  --ns-gold-2: #f0cf91;
  --ns-condensed: "Barlow Condensed", Impact, sans-serif;
  --ns-sans: Inter, Arial, sans-serif;
  margin: 0;
  background: var(--ns-bg);
  background-image: none;
  color: var(--ns-ink);
  font-family: var(--ns-sans);
  line-height: 1.5;
}

.northstar-page::before { display: none; }
.northstar-page img { width: 100%; display: block; object-fit: cover; }
.northstar-page a { color: inherit; }

.northstar-showcase-note {
  max-width: 1260px;
  margin: 1rem auto;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 164, 95, 0.24);
  background: #0f0e0d;
  color: var(--ns-ink);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.northstar-showcase-note span {
  flex: 0 0 auto;
  border: 1px solid var(--ns-line);
  color: var(--ns-gold-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.42rem 0.7rem;
  text-transform: uppercase;
}

.northstar-showcase-note p { margin: 0; color: var(--ns-muted); font-size: 0.92rem; }

.northstar-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 4, 0.86);
  border-bottom: 1px solid rgba(226, 177, 96, 0.12);
  backdrop-filter: blur(18px);
}

.northstar-nav {
  max-width: 1260px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.northstar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ns-ink);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.northstar-mark {
  color: var(--ns-gold);
  font-size: 1.45rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 164, 95, 0.45);
}

.northstar-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.4rem);
  color: rgba(248, 243, 232, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.northstar-links a,
.northstar-footer a {
  text-decoration: none;
}

.northstar-links a:hover,
.northstar-links a:focus-visible,
.northstar-footer a:hover,
.northstar-footer a:focus-visible {
  color: var(--ns-gold-2);
}

.northstar-btn {
  min-height: 42px;
  padding: 0.78rem 1.35rem;
  border: 1px solid rgba(212, 164, 95, 0.58);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--ns-ink);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.northstar-btn--gold {
  background: linear-gradient(135deg, var(--ns-gold-2), var(--ns-gold));
  color: #140f0a;
  border-color: transparent;
}

.northstar-btn--ghost {
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(212, 164, 95, 0.52);
}

.northstar-btn:hover,
.northstar-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.northstar-hero {
  min-height: min(760px, calc(100vh - 72px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.northstar-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.65) contrast(1.16) brightness(0.58);
}

.northstar-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.94) 0%, rgba(5, 5, 4, 0.72) 33%, rgba(5, 5, 4, 0.1) 72%),
    linear-gradient(0deg, #050504 0%, transparent 30%, rgba(0, 0, 0, 0.18) 100%);
}

.northstar-hero__copy {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
  position: relative;
  z-index: 1;
}

.northstar-hero__copy::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 1px;
  height: min(210px, 38vw);
  background: rgba(248, 243, 232, 0.34);
  transform: translateY(-50%);
}

.northstar-hero h1 {
  max-width: 720px;
  margin: 0 0 1rem 3.2rem;
  font-family: var(--ns-condensed);
  font-size: clamp(4.2rem, 11vw, 8.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.northstar-hero h1 span { color: var(--ns-gold); }

.northstar-hero p {
  max-width: 560px;
  margin: 0 0 0 3.2rem;
  color: rgba(248, 243, 232, 0.83);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.northstar-actions {
  margin: 1.7rem 0 0 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.northstar-play-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #120f0c;
  display: inline-grid;
  place-items: center;
  font-size: 0.55rem;
}

.northstar-scroll {
  position: absolute;
  right: 2.5rem;
  bottom: 4.4rem;
  z-index: 1;
  color: var(--ns-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.northstar-scroll::after {
  content: "";
  width: 1px;
  height: 58px;
  margin: 0.7rem auto 0;
  display: block;
  background: var(--ns-gold);
}

.northstar-work,
.northstar-process,
.northstar-final,
.northstar-footer {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.northstar-work {
  padding: 1rem 1.4rem 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 164, 95, 0.12), transparent 22%),
    linear-gradient(180deg, #0b0907, #060504);
}

.northstar-work__bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.northstar-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.northstar-filters button,
.northstar-sort {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 243, 232, 0.78);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.48rem 0.92rem;
}

.northstar-filters button.is-active,
.northstar-filters button:hover,
.northstar-filters button:focus-visible {
  border-color: var(--ns-line);
  color: var(--ns-ink);
  box-shadow: inset 0 0 0 1px rgba(212, 164, 95, 0.14);
}

.northstar-sort {
  flex: 0 0 auto;
  border-radius: 0;
  color: rgba(248, 243, 232, 0.6);
}

.northstar-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.northstar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.18fr) minmax(240px, 0.6fr);
  grid-auto-rows: 116px;
  gap: 0.75rem;
}

.northstar-video-card {
  min-height: 0;
  border: 1px solid rgba(248, 243, 232, 0.12);
  border-radius: 7px;
  color: var(--ns-ink);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: #111;
}

.northstar-video-card--large { grid-row: span 2; }
.northstar-video-card--tall { grid-row: span 3; }

.northstar-video-card img,
.northstar-featured__media img {
  height: 100%;
  min-height: 100%;
  filter: saturate(0.8) contrast(1.1) brightness(0.7);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.northstar-video-card::after,
.northstar-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 58%),
    radial-gradient(circle at 50% 45%, transparent 0 36px, rgba(0, 0, 0, 0.1) 37px);
}

.northstar-video-card:hover img,
.northstar-video-card:focus-visible img,
.northstar-featured__media:hover img,
.northstar-featured__media:focus-visible img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.14) brightness(0.78);
}

.northstar-duration {
  position: absolute;
  right: 0.65rem;
  top: 0.55rem;
  z-index: 2;
  border-radius: 5px;
  background: rgba(5, 5, 4, 0.78);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.4rem;
}

.northstar-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  color: white;
  font-size: 0.82rem;
  transform: translate(-50%, -50%);
}

.northstar-card-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.72rem;
  z-index: 2;
  display: grid;
  gap: 0.04rem;
}

.northstar-card-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.northstar-card-copy small {
  color: rgba(248, 243, 232, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.northstar-featured {
  margin-top: 0.75rem;
  border: 1px solid rgba(248, 243, 232, 0.13);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(212, 164, 95, 0.08), transparent),
    rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  overflow: hidden;
}

.northstar-featured__media {
  min-height: 260px;
  display: block;
  overflow: hidden;
  position: relative;
}

.northstar-featured > div {
  padding: clamp(1.3rem, 4vw, 2.6rem);
  align-self: center;
}

.northstar-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--ns-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.northstar-featured h2,
.northstar-final h2 {
  margin: 0;
  font-family: var(--ns-condensed);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.northstar-featured p:not(.northstar-eyebrow):not(.northstar-meta) {
  max-width: 510px;
  margin: 0.8rem 0 1rem;
  color: var(--ns-muted);
}

.northstar-meta {
  margin: 0.32rem 0 0;
  color: rgba(248, 243, 232, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.northstar-text-link {
  color: var(--ns-gold-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.northstar-clients {
  padding: 1.15rem 0.8rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(248, 243, 232, 0.12);
  color: rgba(248, 243, 232, 0.42);
  text-align: center;
}

.northstar-clients span {
  font-family: var(--ns-condensed);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.northstar-process {
  padding: 1.1rem 1.4rem 1.45rem;
  background: #080706;
  border-bottom: 1px solid rgba(248, 243, 232, 0.1);
}

.northstar-process > .northstar-eyebrow {
  text-align: center;
  margin-bottom: 0.7rem;
}

.northstar-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.northstar-process li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.75rem;
  position: relative;
}

.northstar-process li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.9rem;
  top: 0.25rem;
  color: var(--ns-gold);
}

.northstar-process li > span {
  grid-row: span 2;
  color: var(--ns-gold);
  font-size: 1.35rem;
}

.northstar-process strong {
  color: var(--ns-gold-2);
  font-size: 0.78rem;
}

.northstar-process p {
  margin: 0;
  color: rgba(248, 243, 232, 0.68);
  font-size: 0.78rem;
  line-height: 1.28;
}

.northstar-final {
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.northstar-final img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.7) contrast(1.18) brightness(0.48);
}

.northstar-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 164, 95, 0.18), transparent 32%),
    rgba(5, 5, 4, 0.5);
}

.northstar-final div {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem;
}

.northstar-final p {
  margin: 0.45rem 0 1.2rem;
  color: rgba(248, 243, 232, 0.84);
}

.northstar-footer {
  padding: 1.45rem 1.4rem;
  background: #050504;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 1.5rem;
  align-items: center;
}

.northstar-footer nav,
.northstar-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: rgba(248, 243, 232, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.northstar-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(248, 243, 232, 0.16);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: rgba(248, 243, 232, 0.72);
}

.northstar-footer small {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 243, 232, 0.1);
  color: rgba(248, 243, 232, 0.48);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1020px) {
  .northstar-links { display: none; }
  .northstar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }
  .northstar-video-card--tall { grid-row: span 2; }
  .northstar-featured { grid-template-columns: 1fr; }
  .northstar-clients { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .northstar-process ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .northstar-process li:not(:last-child)::after { display: none; }
  .northstar-footer { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .northstar-showcase-note { margin: 0.75rem; align-items: flex-start; flex-direction: column; }
  .northstar-nav { min-height: auto; padding: 0.9rem 1rem; }
  .northstar-nav > .northstar-btn { display: none; }
  .northstar-brand strong { font-size: 0.98rem; }
  .northstar-hero { min-height: 620px; }
  .northstar-hero__copy { padding: 4rem 1rem; }
  .northstar-hero__copy::before { left: 1rem; height: 180px; }
  .northstar-hero h1 { margin-left: 2rem; font-size: clamp(4rem, 20vw, 5.8rem); }
  .northstar-hero p,
  .northstar-actions { margin-left: 2rem; }
  .northstar-actions,
  .northstar-actions .northstar-btn { width: calc(100% - 2rem); }
  .northstar-scroll { display: none; }
  .northstar-work { padding: 0.75rem; }
  .northstar-work__bar { align-items: stretch; flex-direction: column; }
  .northstar-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }
  .northstar-filters button { flex: 0 0 auto; }
  .northstar-sort { align-self: flex-start; padding-left: 0; }
  .northstar-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .northstar-video-card--large,
  .northstar-video-card--tall { grid-row: span 1; }
  .northstar-featured__media { min-height: 220px; }
  .northstar-featured > div { padding: 1.2rem; }
  .northstar-clients { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .northstar-process { padding: 1.3rem 1rem; }
  .northstar-process ol { grid-template-columns: 1fr; }
  .northstar-footer small { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .northstar-btn,
  .northstar-video-card img,
  .northstar-featured__media img {
    transition: none;
  }
  .northstar-btn:hover,
  .northstar-btn:focus-visible,
  .northstar-video-card:hover img,
  .northstar-video-card:focus-visible img,
  .northstar-featured__media:hover img,
  .northstar-featured__media:focus-visible img {
    transform: none;
  }
}

/* Oak & Ember Goods showcase */
.oak-page {
  --oak-ink: #15110c;
  --oak-muted: #61584d;
  --oak-cream: #f5efe4;
  --oak-paper: #fbf6ec;
  --oak-charcoal: #0d0b08;
  --oak-brown: #6b3f21;
  --oak-walnut: #3a2112;
  --oak-line: rgba(21, 17, 12, 0.15);
  --oak-light-line: rgba(245, 239, 228, 0.18);
  --oak-serif: "Cormorant Garamond", Georgia, serif;
  --oak-sans: Inter, Arial, sans-serif;
  margin: 0;
  background: var(--oak-paper);
  background-image: none;
  color: var(--oak-ink);
  font-family: var(--oak-sans);
  line-height: 1.55;
}

.oak-page::before { display: none; }
.oak-page img { width: 100%; display: block; object-fit: cover; }
.oak-page a { color: inherit; }
.oak-page .oak-brand { color: var(--oak-cream); }
.oak-page .oak-btn { color: var(--oak-ink); }
.oak-page .oak-btn:hover,
.oak-page .oak-btn:focus-visible { color: white; }
.oak-page .oak-text-link--light { color: var(--oak-cream); }
.oak-page .oak-footer .oak-brand { color: var(--oak-ink); }

.oak-showcase-note {
  max-width: 1240px;
  margin: 1rem auto;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(107, 63, 33, 0.18);
  background: #fffaf0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oak-showcase-note span {
  flex: 0 0 auto;
  border: 1px solid rgba(107, 63, 33, 0.24);
  color: var(--oak-brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.42rem 0.7rem;
  text-transform: uppercase;
}

.oak-showcase-note p { margin: 0; color: var(--oak-muted); font-size: 0.92rem; }

.oak-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 11, 8, 0.92);
  border-bottom: 1px solid rgba(245, 239, 228, 0.08);
  backdrop-filter: blur(18px);
}

.oak-nav {
  max-width: 1240px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.oak-brand {
  color: var(--oak-cream);
  display: inline-grid;
  justify-items: center;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.oak-brand strong {
  font-family: var(--oak-serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.oak-brand small {
  margin-top: 0.2rem;
  color: rgba(245, 239, 228, 0.82);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.54em;
  padding-left: 0.5em;
  position: relative;
}

.oak-brand small::before,
.oak-brand small::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: rgba(245, 239, 228, 0.34);
}

.oak-brand small::before { right: calc(100% + 0.7rem); }
.oak-brand small::after { left: calc(100% + 0.2rem); }

.oak-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.35rem);
  color: rgba(245, 239, 228, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oak-links a,
.oak-footer a {
  text-decoration: none;
}

.oak-links a:hover,
.oak-links a:focus-visible,
.oak-footer a:hover,
.oak-footer a:focus-visible {
  color: #b9895d;
}

.oak-btn {
  min-height: 42px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--oak-ink);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 0.9rem 1.35rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.oak-btn--light {
  border-color: var(--oak-cream);
  background: var(--oak-cream);
}

.oak-btn--outline {
  border-color: rgba(21, 17, 12, 0.62);
  background: transparent;
}

.oak-btn:hover,
.oak-btn:focus-visible {
  background: var(--oak-brown);
  border-color: var(--oak-brown);
  color: white;
}

.oak-text-link {
  color: var(--oak-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.oak-text-link::after { content: "->"; }
.oak-text-link--light { color: var(--oak-cream); }

.oak-hero {
  max-width: 1240px;
  min-height: 560px;
  margin: 0 auto;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--oak-charcoal);
}

.oak-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: 68% center;
  filter: saturate(0.78) contrast(1.1) brightness(0.6);
}

.oak-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.95) 0%, rgba(13, 11, 8, 0.82) 32%, rgba(13, 11, 8, 0.16) 72%),
    radial-gradient(circle at 74% 48%, rgba(147, 86, 42, 0.24), transparent 28%);
}

.oak-hero__copy {
  max-width: 520px;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.4rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
  color: var(--oak-cream);
}

.oak-eyebrow {
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oak-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.36;
}

.oak-hero h1 {
  margin: 0;
  font-family: var(--oak-serif);
  font-size: clamp(3rem, 6.6vw, 5.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

.oak-hero h1 em {
  display: block;
  font-weight: 500;
}

.oak-hero__copy > p:not(.oak-eyebrow) {
  max-width: 430px;
  margin: 1.3rem 0 0;
  color: rgba(245, 239, 228, 0.82);
}

.oak-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
}

.oak-collections,
.oak-featured,
.oak-materials,
.oak-final,
.oak-footer {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.oak-anchor {
  display: block;
  height: 0;
}

.oak-collections {
  padding: clamp(3rem, 6vw, 4.4rem) clamp(1.2rem, 5vw, 4rem);
  background: var(--oak-paper);
}

.oak-section-heading {
  margin-bottom: 1.45rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.4rem;
}

.oak-section-heading .oak-eyebrow,
.oak-materials .oak-eyebrow,
.oak-featured .oak-eyebrow { color: var(--oak-ink); }

.oak-section-heading h2,
.oak-process h2,
.oak-featured h2,
.oak-materials h2,
.oak-final h2 {
  margin: 0;
  font-family: var(--oak-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.oak-section-heading h2 { max-width: 460px; }

.oak-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.oak-collection-card {
  min-width: 0;
  color: var(--oak-ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.8rem;
  text-decoration: none;
}

.oak-collection-card img {
  grid-column: 1 / -1;
  aspect-ratio: 1.42;
  margin-bottom: 0.5rem;
  filter: saturate(0.84) contrast(1.04);
}

.oak-collection-card strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oak-collection-card p {
  grid-column: 1;
  margin: 0;
  color: var(--oak-muted);
  font-size: 0.88rem;
}

.oak-collection-card span {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
}

.oak-collection-card:hover img,
.oak-collection-card:focus-visible img {
  filter: saturate(1) contrast(1.08);
}

.oak-process {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 30% 0%, rgba(146, 88, 42, 0.18), transparent 28%),
    #100d09;
  color: var(--oak-cream);
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 2.2fr);
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: start;
}

.oak-process__intro > p:not(.oak-eyebrow) {
  max-width: 320px;
  margin: 1rem 0 1.4rem;
  color: rgba(245, 239, 228, 0.72);
}

.oak-process-strip {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 0.8rem;
}

.oak-process-strip li {
  min-width: 0;
  color: rgba(245, 239, 228, 0.78);
}

.oak-process-strip img {
  aspect-ratio: 1.35;
  margin-bottom: 0.65rem;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

.oak-process-strip strong {
  color: var(--oak-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oak-process-strip strong::after {
  content: "->";
  color: rgba(245, 239, 228, 0.5);
  font-weight: 500;
}

.oak-process-strip li:last-child strong::after { display: none; }

.oak-process-strip p {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.oak-featured {
  padding: clamp(2.2rem, 5vw, 3.7rem) clamp(1.2rem, 5vw, 4rem) 1rem;
  background: var(--oak-paper);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.72fr) minmax(190px, 0.6fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.oak-featured__main {
  min-height: 330px;
  height: 100%;
  filter: saturate(0.9) contrast(1.04);
}

.oak-featured__copy p:not(.oak-eyebrow):not(.oak-details) {
  margin: 0.95rem 0 1.4rem;
  color: var(--oak-muted);
}

.oak-details {
  margin: 0.55rem 0 0;
  color: var(--oak-walnut);
  font-size: 0.88rem;
  font-weight: 700;
}

.oak-featured__details {
  display: grid;
  gap: 0.8rem;
}

.oak-featured__details img {
  aspect-ratio: 1.45;
  filter: saturate(0.95) contrast(1.08);
}

.oak-materials {
  padding: 1rem clamp(1.2rem, 5vw, 4rem) clamp(2.8rem, 6vw, 4.4rem);
  background: var(--oak-paper);
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 2.25fr);
  gap: clamp(1.5rem, 4vw, 2.6rem);
  align-items: end;
}

.oak-materials__intro p:not(.oak-eyebrow) {
  max-width: 360px;
  margin: 0.9rem 0 1.3rem;
  color: var(--oak-muted);
}

.oak-material-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.oak-material-grid article {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.oak-swatch {
  min-height: 126px;
  display: block;
  border: 1px solid rgba(21, 17, 12, 0.08);
  background-color: #8a5c37;
  background-image:
    repeating-linear-gradient(100deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 13px),
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.22), transparent 30%),
    radial-gradient(ellipse at 70% 60%, rgba(0,0,0,0.18), transparent 34%);
}

.oak-swatch--walnut { background-color: #51311f; }
.oak-swatch--white-oak { background-color: #c49a68; }
.oak-swatch--maple { background-color: #e4c8a4; }
.oak-swatch--cherry { background-color: #974b27; }
.oak-swatch--ash { background-color: #d1b17d; }

.oak-material-grid h3 {
  margin: 0.15rem 0 0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oak-material-grid p {
  margin: 0;
  color: var(--oak-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.oak-final {
  min-height: 250px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.oak-final img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.82) contrast(1.15) brightness(0.42);
}

.oak-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.78), rgba(13, 11, 8, 0.36), rgba(13, 11, 8, 0.78)),
    rgba(70, 39, 18, 0.2);
}

.oak-final div {
  max-width: 760px;
  position: relative;
  z-index: 1;
  padding: 2.2rem 1rem;
  color: var(--oak-cream);
}

.oak-final p {
  margin: 0.45rem 0 1rem;
  color: rgba(245, 239, 228, 0.82);
}

.oak-footer {
  padding: 1.55rem clamp(1.2rem, 5vw, 4rem) 1rem;
  background: #f3eadc;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(2, minmax(150px, 0.7fr)) minmax(230px, 0.9fr);
  gap: 1.5rem;
}

.oak-footer .oak-brand {
  color: var(--oak-ink);
  justify-items: start;
}

.oak-footer .oak-brand small::before { display: none; }
.oak-footer .oak-brand small::after { background: rgba(21, 17, 12, 0.34); }

.oak-footer h2 {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oak-footer nav,
.oak-footer > div {
  display: grid;
  align-content: start;
}

.oak-footer p,
.oak-footer a {
  color: var(--oak-muted);
  font-size: 0.84rem;
}

.oak-footer > div:first-child p {
  max-width: 290px;
}

.oak-social {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.75rem;
}

.oak-social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(21, 17, 12, 0.18);
  display: inline-grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}

.oak-footer > small {
  grid-column: 1 / -1;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(21, 17, 12, 0.1);
  color: #756b5e;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
}

@media (max-width: 1060px) {
  .oak-links { display: none; }
  .oak-collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oak-process { grid-template-columns: 1fr; }
  .oak-process-strip {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }
  .oak-featured { grid-template-columns: 1fr 1fr; }
  .oak-featured__main { grid-column: 1 / -1; }
  .oak-materials { grid-template-columns: 1fr; }
  .oak-material-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .oak-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .oak-showcase-note { margin: 0.75rem; align-items: flex-start; flex-direction: column; }
  .oak-nav { min-height: auto; padding: 1rem; }
  .oak-nav > .oak-btn { display: none; }
  .oak-brand { justify-items: start; }
  .oak-brand small::before { display: none; }
  .oak-hero {
    min-height: 610px;
    margin: 0 0.75rem;
  }
  .oak-hero::after {
    background: linear-gradient(90deg, rgba(13, 11, 8, 0.93), rgba(13, 11, 8, 0.5));
  }
  .oak-hero__copy { padding: 4rem 1rem; }
  .oak-actions,
  .oak-actions .oak-btn { width: 100%; }
  .oak-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .oak-collections,
  .oak-process,
  .oak-featured,
  .oak-materials,
  .oak-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .oak-collection-grid,
  .oak-featured,
  .oak-material-grid,
  .oak-footer {
    grid-template-columns: 1fr;
  }
  .oak-featured__main { min-height: 260px; }
  .oak-material-grid { gap: 1rem; }
  .oak-swatch { min-height: 150px; }
  .oak-footer > small { flex-direction: column; }
}

/* Ellis Rowe Advisory showcase */
.ellis-page {
  --ellis-navy: #06131c;
  --ellis-navy-2: #0b1b26;
  --ellis-ink: #15130f;
  --ellis-cream: #f5efe5;
  --ellis-paper: #fbf6ed;
  --ellis-muted: #615b52;
  --ellis-gold: #b98a50;
  --ellis-line: rgba(21, 19, 15, 0.14);
  --ellis-light-line: rgba(245, 239, 229, 0.16);
  --ellis-serif: "Cormorant Garamond", Georgia, serif;
  --ellis-sans: Inter, Arial, sans-serif;
  margin: 0;
  background: var(--ellis-paper);
  background-image: none;
  color: var(--ellis-ink);
  font-family: var(--ellis-sans);
  line-height: 1.58;
}

.ellis-page::before { display: none; }
.ellis-page img { width: 100%; display: block; object-fit: cover; }
.ellis-page a { color: inherit; }
.ellis-page .ellis-brand { color: var(--ellis-cream); }
.ellis-page .ellis-btn { color: var(--ellis-ink); }
.ellis-page .ellis-btn--gold,
.ellis-page .ellis-btn--dark,
.ellis-page .ellis-btn:hover,
.ellis-page .ellis-btn:focus-visible { color: white; }
.ellis-page .ellis-btn--outline-light { color: var(--ellis-cream); }

.ellis-showcase-note {
  max-width: 1240px;
  margin: 1rem auto;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(185, 138, 80, 0.22);
  background: #fffaf1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ellis-showcase-note span {
  flex: 0 0 auto;
  border: 1px solid rgba(185, 138, 80, 0.28);
  color: #8b6130;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.42rem 0.7rem;
  text-transform: uppercase;
}

.ellis-showcase-note p { margin: 0; color: var(--ellis-muted); font-size: 0.92rem; }

.ellis-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 19, 28, 0.94);
  border-bottom: 1px solid var(--ellis-light-line);
  backdrop-filter: blur(18px);
}

.ellis-nav {
  max-width: 1240px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.ellis-brand {
  color: var(--ellis-cream);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.ellis-monogram {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(245, 239, 229, 0.28);
  color: var(--ellis-cream);
  font-family: var(--ellis-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.ellis-brand strong {
  display: block;
  font-family: var(--ellis-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.ellis-brand small {
  color: var(--ellis-gold);
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  margin-top: 0.25rem;
}

.ellis-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.4vw, 1.8rem);
  color: rgba(245, 239, 229, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ellis-links a,
.ellis-footer a { text-decoration: none; }

.ellis-links a:hover,
.ellis-links a:focus-visible,
.ellis-links a.is-active,
.ellis-footer a:hover,
.ellis-footer a:focus-visible {
  color: var(--ellis-gold);
}

.ellis-btn {
  min-height: 42px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ellis-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 0.9rem 1.35rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.ellis-btn--gold {
  border-color: var(--ellis-gold);
  background: var(--ellis-gold);
  color: white;
}

.ellis-btn--outline-light {
  border-color: rgba(245, 239, 229, 0.52);
  color: var(--ellis-cream);
}

.ellis-btn--dark {
  border-color: var(--ellis-navy);
  background: var(--ellis-navy);
  color: white;
}

.ellis-btn:hover,
.ellis-btn:focus-visible {
  border-color: #8c6233;
  background: #8c6233;
  color: white;
}

.ellis-hero {
  max-width: 1240px;
  min-height: 620px;
  margin: 0 auto;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ellis-navy);
  color: var(--ellis-cream);
}

.ellis-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: 62% center;
  filter: saturate(0.74) contrast(1.1) brightness(0.56);
}

.ellis-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 23, 0.97) 0%, rgba(4, 15, 23, 0.84) 36%, rgba(4, 15, 23, 0.22) 74%),
    radial-gradient(circle at 74% 45%, rgba(185, 138, 80, 0.18), transparent 30%);
}

.ellis-hero__copy {
  max-width: 680px;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.ellis-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--ellis-gold);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ellis-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.ellis-hero h1,
.ellis-services h2,
.ellis-about h2,
.ellis-insights h2,
.ellis-final h2 {
  margin: 0;
  font-family: var(--ellis-serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.ellis-hero h1 {
  font-size: clamp(3rem, 5.2vw, 4.35rem);
  line-height: 1;
}

.ellis-hero h1 em {
  color: var(--ellis-gold);
  font-weight: 500;
}

.ellis-hero__copy > p:not(.ellis-eyebrow) {
  max-width: 470px;
  margin: 1.4rem 0 0;
  color: rgba(245, 239, 229, 0.82);
}

.ellis-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ellis-services,
.ellis-about,
.ellis-insights,
.ellis-final,
.ellis-footer {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.ellis-services {
  padding: clamp(3.2rem, 6vw, 4.8rem) clamp(1.2rem, 5vw, 4rem);
  background: var(--ellis-paper);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 2.2fr);
  gap: clamp(1.7rem, 4vw, 3.4rem);
}

.ellis-services h2,
.ellis-about h2,
.ellis-insights h2,
.ellis-final h2 {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.ellis-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ellis-service-grid article {
  min-width: 0;
  padding: 0 1.35rem;
  border-left: 1px solid var(--ellis-line);
}

.ellis-service-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  stroke: var(--ellis-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ellis-service-grid h3 {
  margin: 0 0 0.6rem;
  font-family: var(--ellis-serif);
  font-size: 1.22rem;
  font-weight: 600;
}

.ellis-service-grid p,
.ellis-about p,
.ellis-insights__intro p,
.ellis-footer p {
  color: var(--ellis-muted);
}

.ellis-service-grid p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.ellis-service-grid a,
.ellis-text-link,
.ellis-article-grid a {
  color: var(--ellis-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.ellis-service-grid a::after,
.ellis-text-link::after,
.ellis-article-grid a::after { content: "->"; }

.ellis-about {
  padding: 0 clamp(1.2rem, 5vw, 4rem) clamp(3.2rem, 6vw, 4.8rem);
  background: var(--ellis-paper);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.ellis-about > img {
  aspect-ratio: 1.82;
  filter: saturate(0.82) contrast(1.05);
}

.ellis-about p:not(.ellis-eyebrow) {
  margin: 1rem 0 1rem;
}

.ellis-about ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: #3f3931;
  font-size: 0.92rem;
}

.ellis-about li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--ellis-gold);
}

.ellis-results {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 18% 0%, rgba(185, 138, 80, 0.16), transparent 28%),
    var(--ellis-navy);
  color: var(--ellis-cream);
}

.ellis-results > .ellis-eyebrow {
  justify-content: center;
  margin-bottom: 1.7rem;
}

.ellis-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ellis-results-grid article {
  min-width: 0;
  padding: 0 1.5rem;
  border-left: 1px solid var(--ellis-light-line);
}

.ellis-results-grid article:first-child { border-left: 0; }

.ellis-results-grid span {
  color: var(--ellis-gold);
  display: block;
  font-family: var(--ellis-serif);
  font-size: 2.1rem;
  line-height: 1;
}

.ellis-results-grid h3 {
  margin: 0.4rem 0 0.4rem;
  font-size: 0.95rem;
}

.ellis-results-grid p {
  margin: 0;
  color: rgba(245, 239, 229, 0.74);
  font-size: 0.86rem;
}

.ellis-insights {
  padding: clamp(3rem, 6vw, 4.4rem) clamp(1.2rem, 5vw, 4rem);
  background: var(--ellis-paper);
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.ellis-insights__intro h2 {
  margin-bottom: 1.25rem;
}

.ellis-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.ellis-article-grid img {
  aspect-ratio: 1.75;
  margin-bottom: 0.85rem;
  filter: saturate(0.8) contrast(1.04);
}

.ellis-article-grid h3 {
  margin: 0 0 0.85rem;
  font-family: var(--ellis-serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.14;
}

.ellis-final {
  min-height: 270px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--ellis-cream);
}

.ellis-final img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.68) contrast(1.14) brightness(0.42);
}

.ellis-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 23, 0.58);
}

.ellis-final div {
  max-width: 780px;
  position: relative;
  z-index: 1;
  padding: 2.3rem 1rem;
}

.ellis-final p {
  margin: 0.55rem 0 1.15rem;
  color: rgba(245, 239, 229, 0.82);
}

.ellis-footer {
  padding: 2rem clamp(1.2rem, 5vw, 4rem) 1rem;
  background: #07131c;
  color: var(--ellis-cream);
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(140px, 0.6fr) minmax(180px, 0.7fr) minmax(260px, 1fr);
  gap: 1.6rem;
}

.ellis-footer h2 {
  margin: 0 0 0.7rem;
  color: var(--ellis-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ellis-footer nav,
.ellis-footer > div {
  display: grid;
  align-content: start;
}

.ellis-footer p,
.ellis-footer a {
  color: rgba(245, 239, 229, 0.72);
  font-size: 0.84rem;
}

.ellis-footer > div:first-child p {
  max-width: 300px;
}

.ellis-footer > small {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid var(--ellis-light-line);
  color: rgba(245, 239, 229, 0.5);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
}

.ellis-footer small span:last-child {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 1080px) {
  .ellis-links { display: none; }
  .ellis-services,
  .ellis-insights { grid-template-columns: 1fr; }
  .ellis-service-grid,
  .ellis-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 0; }
  .ellis-results-grid article:nth-child(odd) { border-left: 0; }
  .ellis-about { grid-template-columns: 1fr; }
  .ellis-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .ellis-showcase-note { margin: 0.75rem; align-items: flex-start; flex-direction: column; }
  .ellis-nav { min-height: auto; padding: 1rem; }
  .ellis-nav > .ellis-btn { display: none; }
  .ellis-brand strong { font-size: 1.05rem; }
  .ellis-monogram { width: 38px; height: 38px; font-size: 1.3rem; }
  .ellis-hero {
    min-height: 620px;
    margin: 0 0.75rem;
  }
  .ellis-hero::after {
    background: linear-gradient(90deg, rgba(4, 15, 23, 0.96), rgba(4, 15, 23, 0.58));
  }
  .ellis-hero__copy { padding: 4rem 1rem; }
  .ellis-hero h1 { font-size: clamp(3.1rem, 14vw, 4rem); }
  .ellis-actions,
  .ellis-actions .ellis-btn { width: 100%; }
  .ellis-services,
  .ellis-about,
  .ellis-insights,
  .ellis-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .ellis-service-grid,
  .ellis-results-grid,
  .ellis-article-grid,
  .ellis-footer {
    grid-template-columns: 1fr;
  }
  .ellis-service-grid article,
  .ellis-results-grid article {
    border-left: 0;
    border-top: 1px solid var(--ellis-line);
    padding: 1.1rem 0 0;
  }
  .ellis-results-grid article {
    border-top-color: var(--ellis-light-line);
  }
  .ellis-service-grid article:first-child,
  .ellis-results-grid article:first-child {
    border-top: 0;
  }
  .ellis-about > img { aspect-ratio: 1.2; }
  .ellis-footer > small,
  .ellis-footer small span:last-child {
    flex-direction: column;
  }
}
/* Sterling Vale Legal showcase */
.sterling-page {
  --sterling-black: #090807;
  --sterling-charcoal: #151412;
  --sterling-brown: #2a2018;
  --sterling-gold: #b9925a;
  --sterling-gold-light: #d3b27a;
  --sterling-paper: #f4eee5;
  --sterling-cream: #fbf8f1;
  --sterling-ink: #191511;
  --sterling-muted: #6e6357;
  margin: 0;
  background: var(--sterling-paper);
  color: var(--sterling-ink);
  font-family: Inter, Arial, sans-serif;
}

.sterling-page a { color: inherit; text-decoration: none; }
.sterling-page img { display: block; max-width: 100%; }
.sterling-page svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.sterling-page h1,
.sterling-page h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.sterling-showcase-note {
  display: grid;
  grid-template-columns: minmax(140px, max-content) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 72px);
  background: #f8f5ef;
  border-bottom: 1px solid rgba(24, 21, 17, 0.12);
  color: #1b1815;
}

.sterling-showcase-note span,
.sterling-kicker,
.sterling-eyebrow {
  color: #9b743d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sterling-showcase-note p {
  margin: 0;
  color: #5f574d;
  font-size: 0.94rem;
  line-height: 1.6;
}

.sterling-header {
  position: absolute;
  inset: auto 0 auto 0;
  z-index: 5;
  color: #fff8ec;
}

.sterling-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
}

.sterling-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.sterling-monogram {
  color: var(--sterling-gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 0.86;
}

.sterling-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.sterling-brand small {
  display: block;
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.58em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sterling-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.sterling-links a {
  color: rgba(255, 248, 236, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sterling-links a:hover,
.sterling-links a:focus-visible { color: var(--sterling-gold-light); }

.sterling-nav-cta,
.sterling-btn,
.sterling-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sterling-nav-cta,
.sterling-btn--gold {
  background: linear-gradient(135deg, #c6a064, #a9824d);
  color: #15110d;
}

.sterling-btn--outline {
  border-color: rgba(255, 248, 236, 0.42);
  color: #fff8ec;
}

.sterling-nav-cta:hover,
.sterling-btn:hover,
.sterling-footer-cta:hover { transform: translateY(-2px); }

.sterling-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--sterling-black);
  color: #fff8ec;
}

.sterling-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sterling-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.92) 0%, rgba(7, 7, 6, 0.76) 38%, rgba(7, 7, 6, 0.18) 72%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.5), rgba(7, 7, 6, 0.3));
}

.sterling-hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 90px;
}

.sterling-hero__content h1 {
  max-width: 560px;
  margin-top: 20px;
  color: #fffaf1;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.88;
}

.sterling-hero__content h1 em {
  color: var(--sterling-gold-light);
  font-style: italic;
}

.sterling-hero__content > p:not(.sterling-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: 1.02rem;
  line-height: 1.75;
}

.sterling-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.sterling-practice,
.sterling-about,
.sterling-why,
.sterling-resources {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.sterling-practice {
  padding: 70px 0 58px;
  text-align: center;
}

.sterling-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.sterling-eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.sterling-practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
}

.sterling-practice-grid article {
  padding: 8px clamp(18px, 2.5vw, 34px) 0;
  border-left: 1px solid rgba(25, 21, 17, 0.16);
}

.sterling-practice-grid article:first-child { border-left: 0; }

.sterling-practice-grid span,
.sterling-why-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  color: var(--sterling-gold);
}

.sterling-practice h2,
.sterling-why h2,
.sterling-resource-grid h2 {
  margin-top: 17px;
  color: #15110d;
  font-size: 1.52rem;
  line-height: 1.1;
}

.sterling-practice p,
.sterling-why p,
.sterling-resource-grid p {
  margin: 12px 0 0;
  color: var(--sterling-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.sterling-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 36px;
  color: #8d6936;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sterling-text-link::after { content: "->"; }

.sterling-about {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(40px, 7vw, 76px);
  align-items: center;
  padding: 36px 0 66px;
}

.sterling-about figure { margin: 0; }

.sterling-about img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.sterling-about h2 {
  max-width: 480px;
  margin-top: 18px;
  color: #18130f;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  line-height: 0.92;
}

.sterling-about p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #5f574d;
  line-height: 1.75;
}

.sterling-about ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  color: #4b433b;
}

.sterling-about li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.sterling-about li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 1.5px solid var(--sterling-gold);
  border-bottom: 1.5px solid var(--sterling-gold);
  transform: rotate(-45deg);
}

.sterling-why {
  padding: 34px 0 58px;
  border-top: 1px solid rgba(25, 21, 17, 0.14);
  text-align: center;
}

.sterling-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px;
  text-align: left;
}

.sterling-why-grid article {
  padding: 0 clamp(18px, 2.4vw, 30px);
  border-left: 1px solid rgba(25, 21, 17, 0.14);
}

.sterling-why-grid article:first-child { border-left: 0; }
.sterling-why h2 { font-size: 1.34rem; }

.sterling-proof {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: 54px max(24px, calc((100vw - 1080px) / 2));
  background: radial-gradient(circle at 80% 20%, rgba(185, 146, 90, 0.14), transparent 30%), #11100e;
  color: #fff8ec;
}

.sterling-proof blockquote {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
}

.sterling-proof blockquote > span {
  color: var(--sterling-gold-light);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.sterling-proof blockquote p {
  margin: 0;
  max-width: 530px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.22;
}

.sterling-proof cite {
  grid-column: 2;
  margin-top: 18px;
  color: var(--sterling-gold-light);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sterling-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding-left: clamp(30px, 5vw, 72px);
  border-left: 1px solid rgba(211, 178, 122, 0.48);
}

.sterling-stats p { margin: 0; }

.sterling-stats strong {
  display: block;
  color: var(--sterling-gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
}

.sterling-stats span {
  display: block;
  max-width: 150px;
  margin-top: 10px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
}

.sterling-resources {
  padding: 54px 0 58px;
  text-align: center;
}

.sterling-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 56px);
  margin-top: 28px;
  text-align: left;
}

.sterling-resource-grid article {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 22px;
  align-items: center;
}

.sterling-resource-grid img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.sterling-resource-grid h2 {
  margin: 0;
  font-size: 1.32rem;
}

.sterling-resource-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: #9b743d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sterling-resource-grid a::after { content: " ->"; }

.sterling-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 48px max(24px, calc((100vw - 1080px) / 2));
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.95), rgba(8, 8, 7, 0.82)),
    url("/assets/sterling-vale-hero.png") right 35% / cover;
  color: #fff8ec;
}

.sterling-final h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1;
}

.sterling-final p {
  margin: 10px 0 0;
  color: rgba(255, 248, 236, 0.78);
}

.sterling-footer {
  padding: 44px max(24px, calc((100vw - 1080px) / 2)) 24px;
  background: #090807;
  color: #fff8ec;
}

.sterling-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 62px);
}

.sterling-footer p {
  max-width: 250px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

.sterling-footer h2 {
  margin: 0 0 14px;
  color: var(--sterling-gold-light);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sterling-footer nav,
.sterling-footer address {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 248, 236, 0.76);
  font-style: normal;
  font-size: 0.88rem;
}

.sterling-footer-cta {
  width: fit-content;
  margin-top: 16px;
  border-color: var(--sterling-gold);
  color: #fff8ec;
}

.sterling-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 236, 0.12);
  color: rgba(255, 248, 236, 0.54);
  font-size: 0.82rem;
}

.sterling-footer-bottom p { margin: 0; max-width: none; }
.sterling-footer-bottom div { display: flex; gap: 22px; }

@media (max-width: 980px) {
  .sterling-nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .sterling-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    order: 3;
  }

  .sterling-hero { min-height: 720px; }
  .sterling-practice-grid,
  .sterling-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .sterling-practice-grid article:nth-child(odd),
  .sterling-why-grid article:nth-child(odd) { border-left: 0; }

  .sterling-about,
  .sterling-proof,
  .sterling-resource-grid,
  .sterling-footer-grid {
    grid-template-columns: 1fr;
  }

  .sterling-stats {
    padding-left: 0;
    border-left: 0;
  }

  .sterling-final {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .sterling-showcase-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sterling-header { position: relative; background: #090807; }
  .sterling-nav { width: min(100% - 32px, 1160px); grid-template-columns: 1fr; }
  .sterling-nav-cta { width: 100%; }
  .sterling-links { gap: 14px 18px; }
  .sterling-links a { font-size: 0.68rem; }

  .sterling-hero {
    min-height: auto;
    padding: 82px 0;
  }

  .sterling-hero__shade {
    background: linear-gradient(90deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.62));
  }

  .sterling-hero__content { padding-top: 0; }
  .sterling-actions,
  .sterling-actions .sterling-btn { width: 100%; }
  .sterling-btn { width: 100%; }

  .sterling-practice,
  .sterling-about,
  .sterling-why,
  .sterling-resources {
    width: min(100% - 32px, 1080px);
  }

  .sterling-practice-grid,
  .sterling-why-grid,
  .sterling-stats {
    grid-template-columns: 1fr;
  }

  .sterling-practice-grid article,
  .sterling-why-grid article {
    border-left: 0;
    border-top: 1px solid rgba(25, 21, 17, 0.13);
    padding: 24px 0 0;
  }

  .sterling-practice-grid article:first-child,
  .sterling-why-grid article:first-child {
    border-top: 0;
  }

  .sterling-about { padding-top: 12px; }

  .sterling-proof {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .sterling-proof blockquote {
    grid-template-columns: 1fr;
  }

  .sterling-proof blockquote > span { font-size: 4rem; }
  .sterling-proof cite { grid-column: 1; }

  .sterling-resource-grid article {
    grid-template-columns: 1fr;
  }

  .sterling-footer-bottom {
    flex-direction: column;
  }
}
