/* ==========================================================================
   ETG Art of Eros — Shared Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --charcoal: #1C1A18;
  --deep-brown: #2E2319;
  --gold: #B8975A;
  --gold-light: #D4B47A;
  --muted: #6B6258;
  --rose: #A0645A;
  --border: rgba(184, 151, 90, 0.25);
  --border-light: rgba(184, 151, 90, 0.15);
  --glam-black: #0E0C0A;
  --glam-dark: #141210;
  --glam-ivory: #F7F3EC;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --nav-height: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}

em, .italic {
  font-style: italic;
}

p {
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.eyebrow.line-before::after {
  display: none;
}

.eyebrow.line-before::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.eyebrow.line-both {
  justify-content: center;
}

.eyebrow.line-both::before,
.eyebrow.line-both::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-label.center {
  justify-content: center;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */

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

.section {
  padding-block: 8rem;
}

.section-tight {
  padding-block: 5rem;
}

.text-center {
  text-align: center;
}

.divider-v {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.divider-h {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.ghost-number {
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.16;
  font-weight: 300;
  line-height: 1;
}

/* ==========================================================================
   Image Placeholder
   ========================================================================== */

.img-placeholder {
  object-fit: cover;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A1410, #0E0C0A);
}

.img-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-charcoal {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}

.btn-charcoal:hover {
  background: var(--deep-brown);
}

.link-arrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), opacity var(--transition);
}

.link-arrow:hover {
  gap: 0.75rem;
  opacity: 0.8;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--glam-black);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), height var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  transition: opacity var(--transition);
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-caret {
  display: inline-block;
  font-size: 0.55em;
  margin-left: 0.4em;
  transform: translateY(-1px);
  opacity: 0.7;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 160px;
  padding: 1.5rem 0 0.5rem;
  margin: 0;
  background: rgba(14, 12, 10, 0.98);
  border: 1px solid var(--border);
  border-top: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.75rem;
  white-space: nowrap;
}

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

.site-footer {
  background: var(--glam-black);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.65;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  text-align: right;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.55;
  display: flex;
  gap: 0.5rem;
}

/* ==========================================================================
   Two-Column Split Utility
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.corner-bracket {
  position: relative;
}

.corner-bracket::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
}

.corner-bracket.corner-tr::before {
  top: -14px;
  left: auto;
  right: -14px;
  border-left: none;
  border-right: 2px solid var(--gold);
}

/* ==========================================================================
   Pull Quote
   ========================================================================== */

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
  margin-block: 2rem;
}

/* ==========================================================================
   Trust Pillars
   ========================================================================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.pillar {
  text-align: center;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

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

.pillar h3 {
  font-size: 1.4rem;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Gallery Grid (shared base)
   ========================================================================== */

.gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
}

.gallery-cell .img-placeholder {
  transition: transform 0.6s ease;
}

.gallery-cell:hover .img-placeholder {
  transform: scale(1.04);
}

.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 40%);
  pointer-events: none;
}

.cell-label {
  position: absolute;
  bottom: 0.9rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ==========================================================================
   Justified Gallery (prototype) — rows sized to each photo's true aspect
   ratio, scaled to fill the container width. Cell sizing is computed in
   assets/js/justified-gallery.js; this just governs the flex container and
   the lightbox that opens on click.
   ========================================================================== */

.gallery-justified {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gallery-justified .gallery-cell {
  cursor: zoom-in;
}

.gallery-justified .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 12, 10, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox-close {
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.25rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

body.lightbox-lock {
  overflow: hidden;
}

/* Portfolio category filter pills */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.portfolio-filters button {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.portfolio-filters button:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.portfolio-filters button.active {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}

/* Gallery teaser — a small justified strip on service pages with a link
   through to the full filtered portfolio page. */
.gallery-teaser .gallery-justified {
  margin-bottom: 2rem;
}

.gallery-teaser-cta {
  text-align: center;
}

/* Service highlights — one photo per service line on the homepage, each
   linking straight through to that service's page. */
.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.services-teaser-grid .gallery-cell {
  display: block;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.services-teaser-grid .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-teaser-grid .cell-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .services-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Bordered Card Grid (services / masterpiece / experience / wardrobe / faq-less cards)
   ========================================================================== */

.card-grid {
  display: grid;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 4rem;
}

.card-grid > .card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
  position: relative;
}

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

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

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

.card-numeral {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.16;
  line-height: 1;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  color: inherit;
}

.card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.card .link-arrow {
  margin-top: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-symbol {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Process Steps / Timeline
   ========================================================================== */

.steps-grid {
  display: grid;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 4rem;
}

.steps-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.step {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.75rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.step:hover {
  border-top-color: var(--gold);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Timeline with connected dots */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-wrap {
  position: relative;
}

.quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  border-top: 2px solid var(--gold);
  padding-top: 1.75rem;
}

.testimonial-card p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card .name {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-grid.asymmetric {
  grid-template-columns: 2fr 1fr 1fr;
}

.testimonial-card.featured {
  background: rgba(184, 151, 90, 0.04);
  padding: 2rem;
  border-top: 2px solid var(--gold);
}

/* ==========================================================================
   CTA Strip
   ========================================================================== */

.cta-strip {
  background: var(--gold);
  color: var(--charcoal);
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}

.cta-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.cta-strip h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--charcoal);
}

.cta-strip h2 em {
  color: var(--warm-white);
}

.cta-strip-right {
  text-align: right;
}

.cta-strip .price-note {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.cta-strip-right .cta-row {
  justify-content: flex-end;
}

.ghost-watermark {
  position: absolute;
  font-family: var(--font-display);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-field {
  margin-bottom: 1.75rem;
}

.form-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: inherit;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.2rem;
  transition: border-color var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: currentColor;
  opacity: 0.35;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.form-status.success {
  color: var(--gold);
}

.form-status.error {
  color: #c0554a;
}

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

.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: inherit;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform var(--transition);
}

.faq-q .icon::before,
.faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q .icon::before {
  width: 100%;
  height: 1px;
}

.faq-q .icon::after {
  width: 1px;
  height: 100%;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-a p {
  padding-bottom: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 620px;
}

/* ==========================================================================
   Reasons List (couples)
   ========================================================================== */

.reason {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.25rem;
}

.reason-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.reason h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.reason p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ==========================================================================
   Differentiator bars (glamour)
   ========================================================================== */

.diff-item {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.diff-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.diff-item p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ==========================================================================
   Comparison (fine art)
   ========================================================================== */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.comparison-col {
  padding: 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-col:last-child {
  border-right: none;
}

.comparison-col h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.comparison-col h3 em {
  color: var(--gold);
}

.comparison-col ul li {
  font-size: 0.88rem;
  padding: 0.6rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border-light);
}

.comparison-col ul li:last-child {
  border-bottom: none;
}

.comparison-col ul li::before {
  content: '— ';
  color: var(--gold);
}

/* ==========================================================================
   Home — Hero
   ========================================================================== */

.hero-home {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 62% 38%;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(184, 151, 90, 0.12), transparent 55%),
              radial-gradient(ellipse at 80% 90%, rgba(184, 151, 90, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-home-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 8rem;
  color: var(--warm-white);
}

.hero-home-copy .eyebrow {
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  color: var(--warm-white);
  margin-bottom: 1.75rem;
}

.hero-headline em {
  color: var(--gold-light);
  display: block;
}

.hero-home-copy .subtext {
  max-width: 480px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.75rem;
}

.hero-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
}

.hero-home .hero-divider {
  left: 62%;
}

.hero-couples .hero-divider {
  left: 50%;
}

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

/* ==========================================================================
   About / Intro Split (home)
   ========================================================================== */

.about-split {
  background: var(--warm-white);
}

.about-split .split-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.about-split h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Trust Section (home)
   ========================================================================== */

.trust-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  color: var(--warm-white);
  text-align: center;
}

.trust-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  max-width: 700px;
  margin: 0 auto;
}

.trust-section h2 em {
  color: var(--gold-light);
  display: block;
  margin-top: 0.3rem;
}

.trust-section .subtext {
  max-width: 560px;
  margin: 1.75rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-section {
  background: var(--deep-brown);
  color: var(--warm-white);
}

/* ==========================================================================
   Services Grid (home)
   ========================================================================== */

.services-section {
  background: var(--warm-white);
}

.services-section .card {
  color: var(--charcoal);
}

/* ==========================================================================
   Testimonials (home)
   ========================================================================== */

.testimonials-home {
  background: var(--charcoal);
  color: var(--warm-white);
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.gold-light-em {
  color: var(--gold-light);
}

/* ==========================================================================
   Generic dark section utility
   ========================================================================== */

.section-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.gallery-header .note {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 360px;
}

.split-copy .lede {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Contact Section (home)
   ========================================================================== */

.contact-section {
  background: var(--deep-brown);
  color: var(--warm-white);
}

.contact-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.75rem;
}

.contact-detail .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-detail .value {
  font-size: 1.05rem;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
  color: var(--warm-white);
}

/* ==========================================================================
   Generic Page Hero (boudoir / couples shared left-anchor pattern)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal);
  overflow: hidden;
  color: var(--warm-white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.92) 0%, rgba(14, 12, 10, 0.45) 50%, rgba(14, 12, 10, 0.35) 100%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 8rem 5rem 5rem;
  max-width: 780px;
}

.page-hero-copy .breadcrumb {
  margin-bottom: 2rem;
}

.page-hero-copy h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.page-hero-copy h1 em {
  color: var(--gold-light);
  display: block;
}

.page-hero-copy .subtext {
  color: var(--cream);
  opacity: 0.8;
  font-size: 1rem;
  max-width: 520px;
}

/* ==========================================================================
   Fine Art — Museum Hero
   ========================================================================== */

.hero-fineart {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #16141A 0%, #1E1812 50%, #0E0C0A 100%);
  color: var(--warm-white);
  overflow: hidden;
}

.hero-fineart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 151, 90, 0.06) 0%, rgba(28, 26, 24, 0.6) 60%, rgba(14, 12, 10, 0.92) 100%);
  z-index: 1;
}

.hero-fineart-rule {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
  z-index: 2;
}

.hero-fineart-rule.top {
  top: 20%;
}

.hero-fineart-rule.bottom {
  bottom: 20%;
}

.hero-fineart-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-fineart-copy h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  margin: 1.75rem 0;
}

.hero-fineart-copy h1 em {
  color: var(--gold-light);
  display: block;
}

.hero-fineart-copy .subtext {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-fineart-foot {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 30px;
  background: var(--gold);
  opacity: 0.5;
}

/* ==========================================================================
   Fine Art — Philosophy / Masterpiece / Comparison
   ========================================================================== */

.philosophy-section {
  background: var(--warm-white);
}

.masterpiece-section {
  background: var(--deep-brown);
  color: var(--warm-white);
}

.masterpiece-section .card {
  color: var(--warm-white);
}

.masterpiece-section .card p {
  color: rgba(250, 247, 242, 0.6);
}

.fineart-gallery-section {
  background: var(--charcoal);
  color: var(--warm-white);
}

.fineart-gallery-section .gallery-header p {
  color: var(--muted);
  font-size: 0.85rem;
}

.fineart-timeline-section {
  background: var(--charcoal);
  color: var(--warm-white);
}

.comparison-section {
  background: var(--warm-white);
}

/* ==========================================================================
   Couples — Hero / Intro / Featured Testimonial
   ========================================================================== */

.hero-couples {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
}

.hero-couples-media {
  position: relative;
  background: linear-gradient(160deg, #221510, #1A100C);
  overflow: hidden;
}

.hero-couples-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(160, 100, 90, 0.25), transparent 60%);
  z-index: 1;
}

.hero-couples-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  color: var(--warm-white);
}

.hero-couples-copy h1 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  margin: 1.75rem 0;
}

.hero-couples-copy h1 em {
  color: var(--gold-light);
  display: block;
}

.hero-couples-copy .subtext {
  max-width: 460px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.hero-couples-copy .breadcrumb {
  margin-top: 3rem;
}

.couples-intro {
  background: var(--warm-white);
}

.couples-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: start;
}

.couples-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.couples-intro-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.couples-intro-reasons > p.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 2.25rem;
}

.couples-featured-testimonial {
  background: #3A2424;
  color: var(--warm-white);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.couples-featured-testimonial .quote-mark {
  font-size: 20rem;
  top: -4rem;
}

.couples-featured-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
}

.couples-faq {
  background: var(--warm-white);
  color: var(--charcoal);
}

.couples-featured-testimonial .name {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ==========================================================================
   Glamour — Hero / Sections
   ========================================================================== */

.hero-glamour {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--glam-black);
}

.hero-glamour-media {
  position: relative;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
  background: linear-gradient(145deg, #1A1410, #0A0806);
  overflow: hidden;
}

.hero-glamour-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(184, 151, 90, 0.18), transparent 55%);
  z-index: 1;
}

.hero-glamour-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  color: var(--glam-ivory);
  border-left: 1px solid var(--border);
}

.hero-glamour-copy h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  margin: 1.5rem 0;
}

.hero-glamour-copy h1 em {
  color: var(--gold-light);
}

.ghost-glam-text {
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(184, 151, 90, 0.06);
  line-height: 1;
  margin: -1rem 0;
  user-select: none;
  pointer-events: none;
}

.hero-glamour-copy .subtext {
  max-width: 460px;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1.5rem 0 2.5rem;
}

.hero-glamour-copy .breadcrumb {
  margin-top: 3rem;
}

.glamour-what {
  background: var(--glam-ivory);
  color: var(--charcoal);
}

.glamour-what-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
}

.glamour-what-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--rose);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.glamour-what-grid .split-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.glamour-gallery-section {
  background: var(--glam-dark);
  color: var(--glam-ivory);
}

.glamour-session {
  background: var(--glam-black);
  color: var(--glam-ivory);
}

.session-steps {
  display: flex;
  flex-direction: column;
}

.session-step {
  display: flex;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.session-step:last-child {
  border-bottom: none;
}

.session-step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  width: 2.5rem;
}

.session-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.session-step p {
  font-size: 0.82rem;
  color: var(--muted);
}

.session-image {
  position: relative;
  aspect-ratio: 4 / 5;
}

.session-heading {
  text-align: left;
}

.card-numeral-inline {
  position: static;
  display: block;
  opacity: 0.35;
  margin-bottom: 1rem;
}

.glamour-wardrobe {
  background: var(--warm-white);
}

.glamour-wardrobe .note {
  text-align: center;
  max-width: 560px;
  margin: 3rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.glamour-testimonials {
  background: var(--glam-black);
  color: var(--glam-ivory);
}

.glamour-testimonials .testimonial-card.featured {
  background: rgba(184, 151, 90, 0.05);
  padding: 2.5rem;
}

.glamour-testimonials .testimonial-card.featured p.quote {
  font-size: 1.35rem;
}

.glamour-cta {
  position: relative;
}

.glamour-cta .ghost-watermark {
  font-size: 10rem;
  color: rgba(28, 26, 24, 0.06);
  bottom: -3rem;
  right: 2rem;
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 3rem;
  margin-top: 4rem;
}

.blog-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-date {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.post-meta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.post-article {
  max-width: 760px;
  margin: 0 auto;
}

.post-article p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
}

.post-article h2 {
  font-size: 1.85rem;
  margin: 3rem 0 1.25rem;
}

.post-article h3 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
}

.post-article strong {
  font-weight: 500;
  color: var(--deep-brown);
}

.post-article a {
  color: var(--rose);
  border-bottom: 1px solid var(--border);
}

.post-article a:hover {
  border-bottom-color: var(--rose);
}

.post-article ul {
  margin: 0 0 1.5rem 1.25rem;
  list-style: disc;
}

.post-article li {
  margin-bottom: 0.6rem;
}

.post-figure {
  margin: 3rem 0;
}

.post-figure img {
  width: 100%;
}

.post-figure figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.85rem;
  text-align: center;
}

.post-back-link {
  display: inline-block;
  margin-bottom: 3rem;
}

/* ==========================================================================
   Responsive — 768px
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding-block: 5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-panel {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--glam-black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
  }

  .nav-mobile-panel.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-mobile-panel a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.75;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-mobile-panel a.active {
    opacity: 1;
    color: var(--gold);
  }

  .nav-mobile-panel a.nav-mobile-sub {
    padding: 0.75rem 0 0.75rem 1.5rem;
    font-size: 0.65rem;
    opacity: 0.55;
  }

  .nav-mobile-panel a.nav-mobile-sub.active {
    opacity: 0.9;
  }

  .nav-mobile-panel .btn {
    margin-top: 1.25rem;
    width: 100%;
  }

  .split,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-home,
  .hero-couples,
  .hero-glamour {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home-media {
    height: 40vh;
  }

  .hero-couples-media,
  .hero-glamour-media {
    height: 45vh;
    clip-path: none;
  }

  .hero-home-copy,
  .hero-couples-copy,
  .hero-glamour-copy {
    padding: 3.5rem 2rem 4rem;
  }

  .hero-divider {
    display: none;
  }

  .hero-glamour-copy {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .ghost-glam-text {
    font-size: 4rem;
  }

  .page-hero-copy {
    padding: 5rem 2rem 3rem;
  }

  .hero-fineart-copy {
    padding: 0 2rem;
  }

  .hero-fineart-foot {
    padding: 0 2rem;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .couples-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .couples-intro-grid .divider-v {
    display: none;
  }

  .glamour-what-grid {
    grid-template-columns: 1fr;
  }

  .session-step {
    gap: 1.25rem;
  }

  .couples-featured-testimonial blockquote {
    font-size: 1.3rem;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

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

  .steps-grid.cols-4,
  .steps-grid.cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .timeline::before {
    display: none;
  }

  .testimonial-grid,
  .testimonial-grid.asymmetric {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .comparison-col {
    border-right: none;
  }

  .cta-strip-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2rem;
  }

  .cta-strip-right {
    text-align: left;
  }

  .cta-strip-right .cta-row {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  h1 {
    font-size: 0.8em;
  }

  .hero-headline {
    font-size: 80%;
  }
}

/* ==========================================================================
   Responsive — 480px
   ========================================================================== */

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-inner {
    padding: 0 1.5rem;
  }

  .section {
    padding-block: 3.5rem;
  }

  .pillars,
  .card-grid.cols-3,
  .card-grid.cols-4,
  .steps-grid.cols-4,
  .steps-grid.cols-5,
  .timeline,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    gap: 1.25rem;
  }

  .quote-mark {
    font-size: 8rem;
  }
}
