/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@-webkit-keyframes ticker {
  from { -webkit-transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); }
}
.ticker-track {
  display: inline-flex;
  will-change: transform;
  animation: ticker 40s linear infinite;
  -webkit-animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 104px;
  padding-bottom: 80px;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
}
.hero-v {
  position: absolute;
  right: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: visible;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-v video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-v::after {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: 0;
  right: clamp(80px, 14vw, 220px);
  width: 1px;
  height: 38vh;
  background: var(--accent);
  opacity: 0.35;
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  animation-delay: 0.1s;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(60px, 9.5vw, 152px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.025em;
  animation-delay: 0.22s;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-bottom {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 32px 56px;
  animation-delay: 0.42s;
}
.hero-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 300px;
}
.hero-actions {
  display: flex;
  align-items: flex-end;
  gap: 28px;
}
.hero-cta-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  background: linear-gradient(90deg, #c8b800, #539e96, #e8608a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 0 0 3px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-cta-main:hover { opacity: 0.7; }
.hero-cta-sec {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: -0.45em;
}
.hero-cta-sec:hover { color: var(--dark); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation-delay: 0.7s;
}
.hero-scroll-line {
  width: 36px;
  height: 1px;
  background: var(--border);
}
.hero-scroll-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fffd9c;
  padding: 14px 0;
  overflow: hidden;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-right: 40px;
}
.ticker-word {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
}
.ticker-dot {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

/* ── SERVICES ── */
.services {
  padding: clamp(64px, 10vw, 140px) 2rem;
}
.services-inner { max-width: 1280px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: background 0.3s;
}
.service-row:hover { background: rgba(255,223,232,0.5); }
.service-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  line-height: 0.85;
  color: var(--border);
  letter-spacing: -0.02em;
  display: block;
  transition: color 0.3s;
}
.service-row:hover .service-num { color: rgba(255,223,232,0.8); }
.service-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.service-tagline {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 16px;
}
.service-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 360px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.service-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: clamp(64px, 10vw, 140px) 2rem;
  background: var(--dark);
}
.portfolio-inner { max-width: 1280px; margin: 0 auto; }
.portfolio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.portfolio-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.portfolio-rule {
  width: 40px;
  height: 1px;
  background: #333;
}
.portfolio-subhead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
}

/* Desktop grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.portfolio-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Portfolio card */
.pcard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pcard-bg {
  position: absolute;
  inset: 0;
}
.pcard-overlay-hover {
  position: absolute;
  inset: 0;
  background: rgba(24,20,16,0.44);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard:hover .pcard-overlay-hover { opacity: 1; }
.pcard-hover-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.pcard-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
}
.pcard-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 4px;
}
.pcard-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

/* Mobile portfolio */
.portfolio-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .portfolio-grid { display: none; }
  .portfolio-mobile { display: flex; }
}

.portfolio-footer {
  margin-top: 48px;
  text-align: center;
}
.portfolio-footer a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio-footer a:hover { color: #fff; border-color: #fff; }

/* ── ABOUT ── */
.about {
  padding: clamp(64px, 10vw, 140px) 2rem;
}
.about-inner { max-width: 1280px; margin: 0 auto; }

.about-carousel { position: relative; overflow: hidden; }
.about-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-slide { flex: 0 0 100%; min-width: 0; }
.about-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 48px;
}
.about-nav-btn {
  background: none;
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
  transition: border-color 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.about-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* Slide 1 — collage */
.about-collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 6px;
  aspect-ratio: 4/5;
}
.about-collage-main {
  grid-row: 1 / 4;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.about-collage-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-collage-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(5,5,5,0.5);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
}
.about-collage-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-collage-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Slide 2 — interactive polaroid scatter */
.about-portrait {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: url('../../assets/images/site/corkboard-background.jpg') center center / cover no-repeat;
}
.about-polaroid {
  position: absolute;
  left: 50%; top: 50%;
  background: #fff;
  padding: 8px 8px 26px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.32);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform;
  transition: box-shadow 0.15s;
}
.about-polaroid.is-dragging {
  cursor: grabbing;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}
.about-polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.about-polaroid-caption {
  position: absolute;
  bottom: 5px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 7.5px;
  letter-spacing: 0.07em;
  color: #8a6535;
  text-transform: uppercase;
  line-height: 1.5;
  pointer-events: none;
}
/* Photo sizes only — positions set by JS */
.pol-me          { width: 40%; aspect-ratio: 1; }
.pol-dogs        { width: 44%; aspect-ratio: 3/4; }
.pol-tokyo       { width: 40%; aspect-ratio: 3/4; }
.pol-drakensburg { width: 48%; aspect-ratio: 4/3; }
.pol-porto       { width: 36%; aspect-ratio: 3/4; }
.pol-lisbon-u    { width: 34%; aspect-ratio: 3/4; }
.pol-sintra      { width: 44%; aspect-ratio: 4/3; }
.pol-lisbon-m    { width: 42%; aspect-ratio: 4/3; }
.pol-barcelona   { width: 36%; aspect-ratio: 3/4; }
.pol-franz       { width: 40%; aspect-ratio: 4/3; }
.pol-macys        { width: 36%; aspect-ratio: 3/4; }
.pol-hawaii       { width: 42%; aspect-ratio: 4/3; }
.pol-versailles   { width: 40%; aspect-ratio: 4/3; }
.pol-victoria     { width: 38%; aspect-ratio: 4/3; }
.pol-paris        { width: 36%; aspect-ratio: 3/4; }
.pol-port-angeles { width: 40%; aspect-ratio: 4/3; }
.pol-costa-rica   { width: 38%; aspect-ratio: 3/4; }
.pol-nara         { width: 36%; aspect-ratio: 4/3; }
.pol-cartagena    { width: 34%; aspect-ratio: 3/4; }
/* Portrait column wrapper */
.about-portrait-col { position: relative; }
.corkboard-hint {
  margin-top: 14px;
  text-align: center;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
  transition: opacity 1s;
}
.about-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
}
.about-h2 em { font-style: italic; color: var(--accent); }
.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.about-p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PRICING ── */
.pricing {
  padding: clamp(64px, 10vw, 140px) 2rem;
}
.pricing-inner { max-width: 1280px; margin: 0 auto; }
.pricing-intro {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 56px;
}
.pricing-rows { }
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
  transition: background 0.3s;
}
.pricing-row:hover { background: rgba(255, 253, 156, 0.45); }
.pricing-left { position: relative; padding-left: 20px; }
.pricing-tier-bar {
  position: absolute;
  left: 0; top: 6px;
  width: 3px;
  height: calc(100% - 6px);
  border-radius: 2px;
  opacity: 0.85;
}
.pricing-includes {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.pricing-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.1;
}
.pricing-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin: 0;
}
.pricing-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 4px;
  padding-right: 40px;
  flex-shrink: 0;
}
.pricing-price-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}
.pricing-price {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark);
  display: block;
}
.pricing-timeline {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.pricing-footnote {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.pricing-cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.pricing-cta:hover { border-color: var(--accent); color: var(--accent); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: clamp(64px, 10vw, 140px) 2rem;
  background: var(--bg-alt);
}
.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  cursor: grab;
}
.testimonials-grid:active { cursor: grabbing; }
.testimonials-grid::-webkit-scrollbar { height: 2px; }
.testimonials-grid::-webkit-scrollbar-track { background: var(--border); }
.testimonials-grid::-webkit-scrollbar-thumb { background: var(--accent); }
.testimonials-grid .testimonial {
  flex: 0 0 clamp(280px, 40vw, 480px);
  scroll-snap-align: start;
}
.testimonials-progress {
  display: none;
  height: 2px;
  background: var(--border);
  margin-top: 20px;
  border-radius: 1px;
  position: relative;
}
.testimonials-progress-thumb {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  transition: left 0.1s;
}
.testimonial {
  position: relative;
}
.testimonial-quote-mark {
  position: absolute;
  top: -20px; left: -8px;
  font-family: var(--serif);
  font-size: 130px;
  line-height: 1;
  color: var(--border);
  font-weight: 300;
  user-select: none;
  pointer-events: none;
}
blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
  padding-top: 32px;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-attr-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}
.testimonial-title {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}

/* ── CONTACT (index-specific email form) ── */
.contact-email {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0 64px;
  letter-spacing: 0.04em;
}
.contact-form-wrap {
  max-width: 440px;
  margin: 0 auto;
  border-top: 1px solid #2A2624;
  padding-top: 48px;
}
.contact-form-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact-form {
  display: flex;
}
.contact-input {
  flex: 1;
  background: transparent;
  border: 1px solid #2A2624;
  border-right: none;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.contact-input::placeholder { color: #555; }
.contact-input:focus { border-color: #444; }
.contact-submit {
  background: var(--accent);
  border: none;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.contact-submit:hover { background: var(--bg-alt); color: var(--dark); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 56px; }
  .hero-v { display: none; }
  .hero { min-height: 0; }
  .service-num { font-size: clamp(40px, 10vw, 80px); }
  .footer-logo img { height: 72px; }
  .footer-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
  }
  .footer-links {
    justify-content: center;
    width: 100%;
  }
  .footer-center {
    width: 100%;
    align-items: center;
  }
  .footer-nl-label,
  .footer-copy {
    text-align: center;
    width: 100%;
  }
  .footer-nl-form {
    margin: 0 auto;
  }
  .service-row.in-view { background: rgba(255,223,232,0.4); }
  /* About: stacked on mobile */
  .about-carousel { overflow: visible; }
  .about-track { flex-direction: column; gap: clamp(64px, 10vw, 120px); }
  .about-slide { flex: none; }
  .about-nav { display: none !important; }
  /* Reorder grid: text above images */
  .about-collage, .about-portrait-col { order: 2; }
  .about-grid > div:last-child { order: 1; }
  .corkboard-hint { margin-top: 16px; }
  .testimonials-grid {
    gap: 32px;
    padding-bottom: 0;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid .testimonial {
    flex: 0 0 calc(100vw - 4rem);
  }
  .testimonials-progress { display: block; }
}

@media (max-width: 600px) {
  .hero-v {
    display: flex !important;
    width: 40%;
    top: auto;
    bottom: 200px;
    height: 180px;
  }
  .hero-bottom {
    padding-right: 44%;
  }
  .hero-cta-sec {
    white-space: nowrap;
  }
  .pricing-row { grid-template-columns: 1fr; gap: 20px; }
  .pricing-right { text-align: right; align-items: flex-end; padding-right: 24px; }
  .pricing-cta { display: block; margin: 0 auto; }
}
