:root {
  --bg: #0D0208;
  --surface: #210B16;
  --text: #FAE6FA;
  --muted: #D482A3;
  --primary: #FF3864;
  --secondary: #FFB8DE;
  --accent: #2DE2E2;
  --border: rgba(255,56,100,0.2);
  --font-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif, fashion, bespoke, craft, minimal, white;
  --font-sans: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif, fashion, bespoke, craft, minimal, white;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-serif);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(255, 56, 100, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(45, 226, 226, 0.1), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #1a0610 45%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 184, 222, 0.03) 79px,
      rgba(255, 184, 222, 0.03) 80px
    );
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--secondary);
}

.fashion {
  letter-spacing: 0.08em;
}

.bespoke {
  font-family: var(--font-serif);
  font-weight: 400;
}

.craft {
  border-color: var(--border);
}

.minimal {
  padding: 0;
  margin: 0;
}

.white {
  color: var(--text);
}

.disclosure-banner {
  width: 100%;
  background: rgba(250, 230, 250, 0.92);
  color: #210B16;
}

.disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.disclosure-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}

.disclosure-text {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  color: #210B16;
}

.site-header {
  background: var(--bg);
  position: static;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90px;
  justify-content: center;
  gap: 0;
}

.logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 42px;
  width: auto;
  max-width: 180px;
}

.nav-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.burger-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(13, 2, 8, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 24px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.drawer-backdrop {
  display: none;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 48px;
  width: auto;
  max-width: 120px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 2, 8, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.active {
  display: flex;
}

.age-gate-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
}

.age-gate-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
}

.age-gate-panel p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline,
.cookie-actions button {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-confirm {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
}

.btn-decline {
  background: transparent;
  color: var(--muted);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-sans);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-accept {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
}

.page-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-shell h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 400;
}

.page-shell h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--secondary);
  font-weight: 400;
}

.page-shell h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 24px 0 10px;
  color: var(--accent);
}

.page-shell p,
.page-shell li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-shell ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.page-hero-strip {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 56, 100, 0.4) 100%);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 0;
}

.page-hero-strip h1 {
  color: var(--text);
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.thread-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 32px 0;
  border: none;
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.decor-wrap {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.contact-form label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  resize: vertical;
}

.contact-form button {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--text);
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.email-error {
  display: none;
  font-size: 0.85rem;
  color: var(--primary);
  font-family: var(--font-sans);
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-serif);
}

.form-success.visible {
  display: block;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-row {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo-row {
    border-bottom: none;
    padding-bottom: 0;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
    width: 100%;
  }

  .page-shell {
    padding: 32px 16px 48px;
  }

  .disclosure-inner {
    padding: 8px 12px;
    gap: 8px;
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes threadDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero-section {
  position: relative;
  min-height: 58vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 48px 64px 8vw;
  z-index: 2;
  animation: fadeRise 0.9s ease both;
}

.hero-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  max-width: 12ch;
}

.hero-right {
  position: absolute;
  inset: 0;
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 28% 100%);
  background-color: var(--surface);
  background-image:
    linear-gradient(135deg, rgba(13, 2, 8, 0.35) 0%, rgba(255, 56, 100, 0.15) 100%),
    url('/images/decorative/decor_1.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: softPulse 8s ease-in-out infinite;
}

.hero-subtitle-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
  background: rgba(33, 11, 22, 0.75);
}

.hero-subtitle-strip p {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  animation: fadeRise 1.1s ease 0.2s both;
}

.hero-subtitle-strip::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--secondary);
  margin: 0 auto 12px;
  transform-origin: center;
  animation: threadDraw 1s ease 0.4s both;
}

.offers-section {
  position: relative;
  padding: 72px 24px;
  background-image:
    linear-gradient(180deg, rgba(13, 2, 8, 0.88) 0%, rgba(33, 11, 22, 0.82) 100%),
    url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.offers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(13, 2, 8, 0.5) 100%);
  pointer-events: none;
}

.offers-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.offers-inner > h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text);
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 12px;
  padding: 28px 24px;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.offer-card-logo {
  width: 300px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-card-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #111;
  margin: 0;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 100%;
}

.offer-card-bonus {
  font-family: var(--font-serif);
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  color: #333;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.offer-terms-notice {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
}

.offer-card-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.45;
  max-width: 520px;
  margin: 0;
}

.offer-card-cta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #ff3864;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.offer-card-cta:hover {
  background: #e02e56;
  color: #fff;
}

.info-section {
  padding: 72px 24px;
  position: relative;
}

.info-section::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 68ch;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.info-cta-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.layout-editorial {
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.layout-editorial .label-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.layout-split .fade-edge {
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.layout-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 56, 100, 0.12);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--secondary);
}

.check-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.layout-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--secondary);
  margin: 28px 0;
  padding: 0 12px;
  border-left: none;
  line-height: 1.4;
}

.layout-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.layout-band p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.layout-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.step-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 184, 222, 0.12);
}

.step-num {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.step-block h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.step-block p {
  margin: 0;
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.mini-card {
  padding: 24px 20px;
  border-top: 1px solid var(--secondary);
  background: rgba(33, 11, 22, 0.5);
}

.mini-card h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.mini-card p {
  font-size: 0.9rem;
  margin: 0;
}

.layout-rail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.rail-aside {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-right: 1px solid var(--border);
  padding-right: 16px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mosaic-visual {
  background-image:
    linear-gradient(to top, var(--bg) 0%, transparent 45%),
    url('/images/decorative/decor_4.webp');
  background-size: cover;
  background-position: center;
  min-height: 240px;
  max-height: 320px;
}

.layout-timeline {
  max-width: 680px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 24px;
  border-left: 1px solid var(--border);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-item h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.layout-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  text-align: center;
}

.stat-cell {
  padding: 20px 12px;
  border: 1px solid rgba(255, 56, 100, 0.15);
}

.stat-cell strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 4px;
}

.stat-cell span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.layout-asym {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: end;
}

.layout-asym .lede {
  font-size: 1.15rem;
  color: var(--secondary);
  line-height: 1.5;
}

.atelier-surface {
  background: linear-gradient(180deg, rgba(33, 11, 22, 0.4) 0%, transparent 100%);
}

@media (max-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    clip-path: none;
    padding: 48px 24px;
    justify-content: center;
    text-align: center;
  }

  .hero-left h1 {
    max-width: none;
  }

  .hero-right {
    position: relative;
    clip-path: none;
    min-height: 220px;
    inset: auto;
  }

  .offer-card {
    padding: 24px 16px;
    width: 100%;
    max-width: 100%;
  }

  .offer-card-logo {
    width: 240px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .layout-split,
  .layout-checklist,
  .layout-rail,
  .layout-mosaic,
  .layout-asym,
  .layout-cards,
  .layout-stat {
    grid-template-columns: 1fr;
  }

  .rail-aside {
    writing-mode: horizontal-tb;
    transform: none;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 12px;
    justify-content: flex-start;
  }

  .layout-split .fade-edge {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 375px) {
  .offer-card-logo {
    width: 220px;
    height: 73px;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}
