
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 120px);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  margin-bottom: 1.2rem;
}
.hero .hero-name {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-line {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--stone);
  border-radius: 2px;
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 24px;
  }
  .hero-portrait { aspect-ratio: 3 / 4; }
}

.hero-with-gallery {
  padding-top: 110px;
}

.hero-with-gallery .hero-inner {
  grid-template-columns:
    minmax(330px, 1fr)
    minmax(280px, 0.9fr)
    minmax(320px, 1.45fr);
  grid-template-areas: "copy figure gallery";
  gap: clamp(20px, 2.2vw, 36px);
  align-items: stretch;
  height: clamp(580px, calc(100vh - 110px), 740px);
  min-height: 0;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--container-wide)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--container-wide)) / 2 + 24px));
  padding-bottom: 0;
}
.hero-with-gallery .hero-copy {
  grid-area: copy;
  align-self: center;
  max-width: 560px;
}
.hero-with-gallery .display-headline {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144;
  font-weight: 420;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.97;
  margin: 0 0 1.6rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-with-gallery .display-headline em { font-style: italic; }

.cta-row--hero { align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-figure {
  grid-area: figure;
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-width: 0;
}
.hero-figure::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3%;
  transform: translateX(-50%);
  width: 150%;
  height: 55%;
  background: radial-gradient(ellipse 50% 50% at 50% 100%, rgba(221, 215, 200, 0.9) 0%, rgba(221, 215, 200, 0) 70%);
  pointer-events: none;
}
.hero-figure img {
  position: relative;
  display: block;
  height: clamp(430px, 76vh, 640px);
  width: auto;
  max-width: none;
  margin: 0 -90px;
  filter: drop-shadow(0 26px 38px rgba(20, 20, 18, 0.2));
}
.hero-gallery { position: relative; z-index: 1; }
.hero-with-gallery .hero-copy { position: relative; z-index: 3; }
.hero-portrait-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  background: rgba(14, 14, 12, 0.82);
  color: var(--bone);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero-gallery {
  grid-area: gallery;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 12px;
  align-self: stretch;
  height: 100%;
  
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 3%, #000 97%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  overflow: hidden;
}

.hero-gallery::after {
  content: "Unretouched drBand results"; 
  position: absolute;
  left: 10px; 
  bottom: 8px;
  z-index: 2;
  font-family: var(--ff-sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  background: rgba(252, 251, 249, 0.88);
  padding: 3px 8px;
  border-radius: 2px;
  pointer-events: none;
}
.hero-gallery-col {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-gallery-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}
.hero-gallery-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone);
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 0.4s var(--ease);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.18);
}
.hero-gallery-card:hover {
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.32);
  z-index: 2;
}

.hero-gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-inner.case-lightbox-inner {
  max-width: min(860px, 94vw);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}
.case-lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  margin: 0 auto;
}
.case-lightbox-cap {
  margin: 0;
  padding: 10px 16px 12px;
  text-align: center;
  color: rgba(242, 239, 232, 0.75);
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hero-with-gallery .hero-inner {
    grid-template-columns:
      minmax(300px, 1fr)
      minmax(230px, 0.8fr)
      minmax(250px, 0.95fr);
    gap: 20px;
  }
  .hero-figure img { height: clamp(400px, 68vh, 560px); margin: 0 -64px; }
  .hero-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .hero-gallery-col-3 { display: none; }
}

@media (max-width: 900px) {
  .hero-figure::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .hero-with-gallery .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "copy figure"
      "gallery gallery";
    height: auto;
    min-height: 0;
    padding-bottom: 0;
    gap: 24px;
  }
  .hero-figure img { height: auto; width: min(72vw, 380px); margin: 0; }
  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    height: clamp(440px, 60vh, 620px);
  }
}

@media (max-width: 760px) {
  .hero-with-gallery { padding-top: 88px; }
  .hero-with-gallery .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "strip";
    gap: 14px;
    padding: 0 24px 0;
    height: auto;
    min-height: 0;
  }
  .hero-with-gallery .display-headline {
    font-size: clamp(2.15rem, 9.2vw, 2.6rem);
    margin-bottom: 1rem;
  }
  .hero-line { margin-bottom: 1.2rem; }
  .hero-figure { display: none; }
  .hero-gallery { display: none; }
}

.hero-strip { display: none; }
@media (max-width: 760px) {
  .hero-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    grid-area: strip;
    
    min-width: 0;
    margin: 4px -24px 18px;
  }
  .hero-strip-row {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  }
  .hero-strip-track {
    display: flex;
    gap: 10px;
    width: max-content;
    padding: 2px 0;
    
    animation: heroStripX 32s linear infinite;
    will-change: transform;
  }
  .hero-strip-row:nth-of-type(2) .hero-strip-track {
    animation-duration: 37s;
    animation-direction: reverse;
  }
  .hero-strip-row:nth-of-type(3) .hero-strip-track {
    animation-duration: 42s;
    animation-delay: -21s;
  }
  .hero-strip:hover .hero-strip-track, .hero-strip:focus-within .hero-strip-track { animation-play-state: paused; }
  .hero-strip::after {
    content: "Unretouched results";
    position: absolute;
    right: 28px;
    bottom: 6px;
    z-index: 2;
    font-family: var(--ff-sans);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
    background: rgba(252, 251, 249, 0.88);
    padding: 2px 7px;
    border-radius: 2px;
    pointer-events: none;
  }
  .hero-strip-card {
    position: relative;
    flex: 0 0 auto;
    
    height: clamp(114px, 17vh, 172px); 
    height: clamp(114px, 17svh, 172px);
    border: 0;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--stone);
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  
  .hero-strip-card img {
    width: auto;
    height: 100%;
    display: block;
  }
  
}
@keyframes heroStripX {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-strip-row { overflow-x: auto; }
  .hero-strip-track { animation: none; width: auto; }
}

.modal-inner.hero-card-modal-inner {
  max-width: 980px;
  padding: 0;
  overflow: hidden;
}
.hero-card-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.hero-card-modal-img {
  background: var(--stone);
  position: relative;
  min-height: 400px;
  max-height: 80vh;
}
.hero-card-modal-img img {
  width: 100%;
  height: 100%;
  
  object-fit: contain;
  display: block;
}
.hero-card-modal-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-card-modal-info h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.hero-card-modal-info p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .hero-card-modal-grid { grid-template-columns: 1fr; }
  .hero-card-modal-img { min-height: 280px; max-height: 60vh; }
  .hero-card-modal-info { padding: 28px 24px; }
  
  .modal-inner.hero-card-modal-inner { overflow-y: auto; }
}

.placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--stone-soft), var(--stone));
  color: var(--ink-muted);
  overflow: hidden;
}
.placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  text-align: center;
  padding: 16px;
  letter-spacing: 0.02em;
}

.philosophy {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.philosophy blockquote {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.25;
  border-left: none;
  padding-left: 0;
  text-align: center;
  margin: 0 auto;
}

.opt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .opt-grid { grid-template-columns: 1fr; } }

.opt-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.opt-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.opt-card .eyebrow {
  margin-bottom: 0.8rem;
  
  flex: 0 0 auto;
}
.opt-card h3 { margin-bottom: 1rem; }
.opt-card p {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  flex-grow: 1;
}
.opt-card-cta {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 6px;
  row-gap: 4px;
  line-height: 1.5;
}

.opt-card-cta a {
  white-space: nowrap;
}

.book-cta {
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid var(--ink);
}
.book-cta h2 { color: var(--bone); }
.book-cta h2 em { font-style: italic; color: var(--bone); }
.book-cta .eyebrow {
  
  color: var(--accent-bright);
  font-weight: 600;
}
.book-cta .eyebrow::before { background: var(--accent-bright); }
.book-cta p { color: rgba(242, 239, 232, 0.78); }
.book-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .book-cta-inner { grid-template-columns: 1fr; gap: 32px; }
}
.book-cta-meta {
  display: grid;
  gap: 28px;
  margin-top: 2rem;
}
.book-cta-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--ff-sans);
}
.book-cta-meta dd {
  margin: 0;
  font-family: var(--ff-editorial);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--bone);
}
.book-cta-meta dd em { font-style: italic; }
.book-cta .btn-primary {
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--bone);
}
.book-cta .btn-primary:hover {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone);
}
.book-cta .btn-ghost {
  color: var(--bone);
  border-bottom-color: rgba(242, 239, 232, 0.3);
}
.book-cta .btn-ghost:hover { color: var(--bone); border-bottom-color: var(--bone); }

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 44px 0 24px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: start;
}
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .footer-brand { grid-column: span 4; }
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}
.footer-brand .serif {
  font-size: 1.4rem;
  font-family: var(--ff-wordmark);
  font-variation-settings: "opsz" 96;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  display: inline-flex;
  align-items: baseline;
}
.footer-brand .serif .dr {
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  letter-spacing: -0.005em;
  opacity: 0.85;
  padding-right: 0.005em;
  transform: translateY(-0.04em);
}
.footer-brand .serif .b-dom {
  color: var(--plum);
  font-size: 1.14em;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-left: -0.005em;
  margin-right: -0.04em;
}
.footer-brand .serif .and { font-weight: 400; letter-spacing: -0.025em; }
.footer-brand p {
  margin-top: 12px;
  color: var(--smoke);
  max-width: 280px;
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.55;
}
.footer-col h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2; 
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; line-height: 1.4; }
.footer-col a { transition: color 0.2s var(--ease); font-size: 0.82rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col address {
  font-style: normal;
  line-height: 1.55;
  font-size: 0.82rem;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-muted);
  font-size: 0.74rem;
}
.footer-bottom button[data-reset-cookies] { padding: 0; }
.footer-regs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-regs span {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.modal.open {
  display: flex;
  opacity: 1;
}
.modal-inner {
  background: var(--bg);
  max-width: 960px;
  width: 100%;
  border-radius: var(--radius);
  padding: 28px 28px 20px;
  position: relative;
  max-height: 96vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ink);
  background: var(--bg);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
  z-index: 10;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.12);
}
.modal-close:hover {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.2);
}
.modal h2 { font-size: 1.8rem; margin-bottom: 0.6rem; }
.modal .eyebrow { margin-bottom: 1rem; }

.book-embed-section {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--bg-alt);
  scroll-margin-top: 80px;
}
.book-embed-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.book-embed-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
}
.book-embed-copy {
  color: var(--ink-soft);
}

.book-embed-frame-wrap {
  margin: 32px auto 0;
  max-width: 960px;
}
.book-embed-frame {
  width: 100%;
  height: clamp(720px, 90vh, 1100px);
  min-height: 600px;
  border: 0;
  display: block;
  border-radius: var(--radius);
  background: var(--stone-soft);
  box-shadow: 0 1px 24px rgba(26,26,26,0.06);
}
[data-book-frame][hidden] {
  display: none;
}
.book-embed-fallback {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin: 14px auto 0;
  max-width: 720px;
}
.book-embed-fallback a {
  color: var(--plum);
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
.book-cta *:focus-visible, .opt-card:focus-visible, .btn-primary:focus-visible {
  outline-color: #F2EFE8;
  outline-offset: 3px;
}

#main:focus, #main:focus-visible {
  outline: 2px solid var(--accent, #4A1F2A);
  outline-offset: -4px;
  scroll-margin-top: 88px;
}

#cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 1100;
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius); 
  box-shadow: 0 14px 50px rgba(0,0,0,0.28);
}

.cookie-dim {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(14, 14, 12, 0.46);
}
body.consent-open { overflow: hidden; }
#cookie-banner .cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
}
@media (max-width: 720px) {
  #cookie-banner .cookie-banner-inner { grid-template-columns: 1fr; gap: 14px; }
}
#cookie-banner .cookie-banner-text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(242, 239, 232, 0.92);
}
#cookie-banner .cookie-banner-text a {
  
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(242, 239, 232, 0.5);
  text-underline-offset: 3px;
}
#cookie-banner .cookie-banner-text a:hover { text-decoration-color: var(--bone); }
#cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-banner .btn {
  font-size: 0.86rem;
  padding: 10px 16px;
}
#cookie-banner .btn-ghost {
  color: rgba(245,241,236,0.85);
  border-color: rgba(245,241,236,0.35);
}
#cookie-banner .btn-ghost:hover { color: #fff; border-color: #fff; }
@media (max-width: 720px) {
  
  #cookie-banner { inset: auto 8px calc(8px + env(safe-area-inset-bottom, 0px)) 8px; }
  #cookie-banner .cookie-banner-inner { padding: 14px 16px; }
  #cookie-banner .cookie-banner-text p { font-size: 0.84rem; line-height: 1.45; }
  #cookie-banner .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  #cookie-banner .btn { padding: 10px 12px; font-size: 0.82rem; }
}

.visually-keyword {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.display-headline {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  font-weight: 420;
  margin: 0 0 1.4rem;
  color: var(--ink);
}
.display-headline em { font-style: italic; }

:root { --faq-accent: #4A1F2A; }

 

@media (max-width: 600px) {
  
  
  
  
  
  
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 48px auto 0;
}

.reviews {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@keyframes paintDriftA {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(-140px, 80px) rotate(20deg) scale(1.18); }
  100% { transform: translate(100px, -50px) rotate(-14deg) scale(0.9); }
}
@keyframes paintDriftB {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(120px, -80px) rotate(-24deg) scale(1.22); }
  100% { transform: translate(-80px, 60px) rotate(16deg) scale(0.85); }
}

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

