:root {
  --color-bg: #FAF7F2;
  --color-surface: #FFFFFF;
  --color-surface-strong: #F8F8F8;
  --color-text: #1A1A1A;
  --color-accent: #8B7355;
  --color-accent-2: #C4A882;
  --color-muted: #9A9590;
  --color-accent-soft: rgba(139, 115, 85, 0.160);
  --color-accent-2-soft: rgba(196, 168, 130, 0.160);
  --color-border: rgba(26, 26, 26, 0.080);
  --color-panel-backdrop: rgba(255, 255, 255, 0.880);
  --color-button-text: #F9FAFB;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-panel: 36px 36px 20px 36px;
  --radius-card: 26px 26px 16px 26px;
  --radius-pill: 999px;
  --radius-button: 18px;
  --shadow-glow: 0 42px 120px rgba(164, 113, 247, 0.22);
  --shadow-card: 0 26px 70px rgba(3, 5, 12, 0.34);
  --outline-card: 1px solid rgba(26, 26, 26, 0.080);
  --section-texture: radial-gradient(circle at top right, rgba(164, 113, 247, 0.24), transparent 40%);
  --container-width: min(1120px, calc(100vw - 32px));
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, var(--color-accent-soft), transparent 28%),
    radial-gradient(circle at 88% 12%, var(--color-accent-2-soft), transparent 25%),
    linear-gradient(180deg, #FBF9F6 0%, var(--color-bg) 100%);
  line-height: 1.6;
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
}

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

.shell {
  width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-texture);
  pointer-events: none;
  opacity: 0.9;
}

.section > .shell,
.site-footer > .shell,
.site-nav > .shell {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin: 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.section-heading__eyebrow,
.hero__eyebrow,
.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.section-heading__eyebrow::before,
.hero__eyebrow::before,
.contact__eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.section-heading p:last-child,
.hero__lede,
.contact__copy {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #908B87;
  max-width: 42rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.button--primary {
  background: linear-gradient(135deg, var(--color-accent), #A38968);
  color: var(--color-button-text);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.380);
  color: var(--color-text);
  border-color: var(--color-border);
  backdrop-filter: blur(18px);
}

.button--sm {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.700);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(26, 26, 26, 0.080);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav__mark {
  width: 0.95rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  box-shadow: 0 0 0 8px var(--color-accent-soft);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__link {
  font-size: 0.96rem;
  color: var(--color-muted);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--color-text);
}

.site-nav__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.site-nav__toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
}

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

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.hero__metrics li,
.proof-card,
.service-card,
.process-step,
.testimonial-card,
.pricing-card,
.contact__panel,
.faq__list,
.hero-panel,
.hero-quote {
  background: var(--color-panel-backdrop);
  border: var(--outline-card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
}

.hero__metrics li {
  border-radius: var(--radius-card);
  padding: 1rem;
  display: grid;
  gap: 0.25rem;
}

.hero__metric-value,
.proof-card__value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero__metric-label,
.proof-card__label,
.testimonial-card__role,
.site-footer__copy {
  color: var(--color-muted);
}

.hero__visual {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel--lead {
  padding: clamp(1.6rem, 2vw, 2rem);
  border-radius: var(--radius-panel);
  width: min(100%, 31rem);
}

.hero-panel__tag {
  color: var(--color-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero-panel--lead p:last-child {
  margin-top: 1rem;
  color: var(--color-muted);
}

.hero-panel--stack {
  width: min(100%, 24rem);
  margin-left: auto;
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border-radius: var(--radius-panel);
}

.hero-card--service {
  padding: 1rem;
  border-radius: calc(var(--radius-card) - 4px);
  background: rgba(255, 255, 255, 0.520);
  border: 1px solid var(--color-border);
}

.hero-card__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin-bottom: 0.45rem;
}

.hero-card--service p:last-child {
  margin-top: 0.5rem;
  color: var(--color-muted);
}

.hero-quote {
  width: min(100%, 24rem);
  padding: 1.2rem;
  border-radius: var(--radius-card);
}

.hero-quote__copy {
  font-size: 1rem;
}

.hero-quote__author {
  margin-top: 0.8rem;
  color: var(--color-muted);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-orb--one {
  width: 12rem;
  height: 12rem;
  background: rgba(139, 115, 85, 0.220);
  top: 2rem;
  right: 4rem;
  box-shadow: var(--shadow-glow);
}

.hero-orb--two {
  width: 14rem;
  height: 14rem;
  background: rgba(196, 168, 130, 0.200);
  left: 0;
  bottom: 1rem;
}

.proof-grid,
.services-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.proof-card {
  border-radius: var(--radius-card);
  padding: 1.5rem;
  min-height: 11rem;
  display: grid;
  align-content: end;
  gap: 0.6rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  display: grid;
  gap: 1rem;
  min-height: 15rem;
}

.service-card__index,
.process-step__number {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent-2-soft));
  color: var(--color-text);
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-card);
}

.process-step__body {
  display: grid;
  gap: 0.6rem;
}

.process-step__body p {
  color: var(--color-muted);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  display: grid;
  gap: 1rem;
}

.testimonial-card__stars {
  color: var(--color-accent-2);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.testimonial-card__quote {
  font-size: 1.05rem;
}

.testimonial-card__name {
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-card);
  display: grid;
  gap: 1rem;
}

.pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(139, 115, 85, 0.180), transparent 25%),
    var(--color-panel-backdrop);
  transform: translateY(-0.4rem);
}

.pricing-card__badge {
  justify-self: start;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.pricing-card__price span {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-top: 0.35rem;
  color: var(--color-muted);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.pricing-card__features li {
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card__features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.faq__layout {
  display: grid;
  gap: 2rem;
}

.faq__list {
  border-radius: var(--radius-panel);
  padding: 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  border-radius: calc(var(--radius-card) - 6px);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.420);
}

.faq__question {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.faq__icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  flex: 0 0 auto;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq__icon::before {
  inset: 0.44rem 0;
}

.faq__icon::after {
  inset: 0 0.44rem;
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.faq__answer {
  padding: 0 1rem 1rem;
  color: var(--color-muted);
}

.contact__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.contact__details li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.contact__details span {
  color: var(--color-muted);
}

.contact__panel {
  padding: 1.4rem;
  border-radius: var(--radius-panel);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
}

.contact-form label span {
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.520);
  color: var(--color-text);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.contact-form [aria-invalid="true"] {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.form-status {
  color: var(--color-muted);
  min-height: 1.5em;
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.620);
  border: 1px solid var(--color-border);
}

.site-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__social {
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.440);
  border: 1px solid var(--color-border);
}

.site-footer__legal {
  color: var(--color-muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .hero__grid,
  .faq__layout,
  .contact__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .contact-form__row,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

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

  .site-nav__inner {
    padding-inline: 1.25rem;
  }

  .hero__visual {
    min-height: 39rem;
  }

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

@media (max-width: 719px) {
  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.75rem);
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.940);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.120);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open .site-nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .hero__visual {
    min-height: auto;
  }

  .site-nav__cta {
    width: 100%;
  }

  .contact__details li {
    flex-direction: column;
  }
}


/* Template-specific overrides */
body.template-editorial_v1 {
  background:
    linear-gradient(180deg, #FEF8F0 0%, #FAF7F2 48%, #FAF7F2 100%);
}

body.template-editorial_v1 .site-nav {
  padding-top: 0;
}

body.template-editorial_v1 .site-nav__inner,
body.template-editorial_v1 .hero__metrics li,
body.template-editorial_v1 .proof-card,
body.template-editorial_v1 .service-card,
body.template-editorial_v1 .process-step,
body.template-editorial_v1 .testimonial-card,
body.template-editorial_v1 .pricing-card,
body.template-editorial_v1 .contact__panel,
body.template-editorial_v1 .faq__list,
body.template-editorial_v1 .hero-panel,
body.template-editorial_v1 .hero-quote,
body.template-editorial_v1 .site-footer__inner {
  backdrop-filter: none;
  box-shadow: none;
}

body.template-editorial_v1 .site-nav__inner {
  border-radius: 0;
  border-inline: 0;
  border-top: 0;
  background: rgba(255, 255, 255, 0.940);
}

body.template-editorial_v1 .site-nav__mark {
  border-radius: 0;
  box-shadow: none;
}

body.template-editorial_v1 .section::before {
  opacity: 0.32;
}

body.template-editorial_v1 h1 {
  max-width: 10ch;
  letter-spacing: -0.055em;
}

body.template-editorial_v1 .hero__eyebrow,
body.template-editorial_v1 .section-heading__eyebrow,
body.template-editorial_v1 .contact__eyebrow {
  letter-spacing: 0.22em;
}

body.template-editorial_v1 .hero__visual {
  min-height: auto;
  align-content: start;
  gap: 1.25rem;
}

body.template-editorial_v1 .hero-panel--lead {
  width: 100%;
  border-radius: 0;
  border-width: 1px 0;
  padding-inline: 0;
  padding-block: 1.4rem;
  background: transparent;
}

body.template-editorial_v1 .hero-panel__tag {
  color: #8B7355;
}

body.template-editorial_v1 .hero-panel--stack {
  width: 100%;
  margin-left: 0;
  padding: 0;
  gap: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

body.template-editorial_v1 .hero-card--service {
  border-radius: 0;
  background: transparent;
  border-inline: 0;
  border-top: 1px solid var(--color-border);
  padding-inline: 0;
}

body.template-editorial_v1 .hero-card--service:last-child {
  border-bottom: 1px solid var(--color-border);
}

body.template-editorial_v1 .hero-quote {
  width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.340);
}

body.template-editorial_v1 .hero-orb {
  filter: blur(0);
  opacity: 0.22;
}

body.template-editorial_v1 .proof-grid {
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

body.template-editorial_v1 .proof-card {
  min-height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 1.2rem 0;
}

body.template-editorial_v1 .service-card {
  position: relative;
  min-height: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.550);
}

body.template-editorial_v1 .service-card__index {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: rgba(26, 26, 26, 0.220);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  justify-content: flex-start;
  padding: 0;
}

body.template-editorial_v1 .process-step {
  border-radius: 0;
  background: transparent;
  border-top: 1px solid var(--color-border);
}

body.template-editorial_v1 .testimonial-card {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.420);
}

body.template-editorial_v1 .testimonial-card__quote {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

body.template-editorial_v1 .pricing-card {
  border-radius: 0;
  background: transparent;
  border-top: 1px solid var(--color-border);
}

body.template-editorial_v1 .pricing-card--featured {
  transform: none;
  background:
    linear-gradient(180deg, rgba(196, 168, 130, 0.160), transparent 38%),
    transparent;
}

body.template-editorial_v1 .faq__list,
body.template-editorial_v1 .contact__panel,
body.template-editorial_v1 .site-footer__inner {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.500);
}

body.template-editorial_v1 .faq__item {
  border-radius: 0;
  background: transparent;
}

@media (min-width: 720px) {
  body.template-editorial_v1 .hero__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    align-items: start;
  }

  body.template-editorial_v1 .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.template-editorial_v1 .proof-card {
    padding-right: 1rem;
  }

  body.template-editorial_v1 .proof-card:not(:last-child) {
    border-right: 1px solid var(--color-border);
  }

  body.template-editorial_v1 .services-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  body.template-editorial_v1 .services-grid .service-card:nth-child(3) {
    grid-column: 1 / -1;
  }

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