:root {
  --bg: #09090B;
  --surface: #18181B;
  --text: #FAFAFA;
  --muted: #71717A;
  --primary: #22C55E;
  --secondary: #27272A;
  --accent: #4ADE80;
  --border: rgba(34,197,94,0.3);
  --nav-h: 58px;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-label: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", system-ui, sans-serif;
  --font-ui: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --style-keywords: 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-ui);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, rgba(34, 197, 94, 0.06) 38%, var(--bg) 72%, rgba(39, 39, 42, 0.55) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(74, 222, 128, 0.08) 0%, transparent 50%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  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-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(34, 197, 94, 0.07) 0%, transparent 42%),
    radial-gradient(ellipse at 92% 70%, rgba(74, 222, 128, 0.05) 0%, transparent 38%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.fashion {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--muted);
}

.bespoke {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.craft {
  font-family: var(--font-serif);
  font-weight: 400;
}

.minimal {
  max-width: 42rem;
  margin-inline: auto;
}

.white {
  color: var(--text);
}

.disclosure-banner {
  width: 100%;
  padding: 8px 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(250, 250, 250, 0.92);
  font-size: 12px;
  line-height: 1.4;
  font-family: var(--font-label);
}

.disclosure-banner p {
  margin: 0;
  color: rgba(250, 250, 250, 0.92);
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: #0a0a0a;
  box-shadow: 0 1px 6px var(--primary);
  border-bottom: 1px solid rgba(34, 197, 94, 0.35);
}

.nav-inner {
  height: var(--nav-h);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.brand-lockup img {
  width: 36px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-desktop a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.78);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  box-shadow: 0 0 4px rgba(34, 197, 94, 0.4);
}

.nav-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(12px);
}

.nav-sheet.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-sheet__panel {
  text-align: center;
  width: 100%;
  padding: 48px 24px;
  position: relative;
}

.nav-sheet__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.nav-sheet ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav-sheet a {
  font-family: var(--font-label);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-sheet a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 24px 40px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
  font-family: var(--font-serif);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 520px;
  align-content: flex-start;
}

.footer-nav a {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(250, 250, 250, 0.08);
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0.95);
}

.footer-requisites {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

.footer-disclosure {
  font-size: 11px;
  color: rgba(113, 113, 122, 0.95);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 760px;
}

.footer-updated {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-cookie-link {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
}

.footer-cookie-link:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary);
}

#age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#age-overlay.active {
  display: flex;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.12);
}

.age-modal h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--text);
}

.age-modal p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-confirm,
.btn-decline {
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 14px 18px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-confirm {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-confirm:hover {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border-color: rgba(250, 250, 250, 0.12);
}

#age-blocked {
  display: none;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

#age-blocked.visible {
  display: block;
}

#age-blocked a {
  color: var(--accent);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(24, 24, 27, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--text);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  margin-bottom: 14px;
  max-width: 900px;
  color: rgba(250, 250, 250, 0.85);
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button,
#cookie-save {
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 10px 16px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

#cookie-accept {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

#cookie-accept:hover {
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.cookie-panel {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.cookie-panel.is-open {
  display: block;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 32px 0 12px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
  padding-bottom: 8px;
}

.legal-page h3 {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px 0 10px;
  color: var(--accent);
}

.legal-page p,
.legal-page li {
  color: rgba(250, 250, 250, 0.78);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 0.8rem;
}

.legal-page th,
.legal-page td {
  border: 1px solid rgba(250, 250, 250, 0.1);
  padding: 8px 10px;
  text-align: left;
  color: rgba(250, 250, 250, 0.75);
}

.legal-page th {
  background: rgba(34, 197, 94, 0.08);
  color: var(--text);
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}

.contact-form label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid rgba(250, 250, 250, 0.12);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-serif);
  font-size: 1rem;
  border-radius: 0;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
}

.contact-form button[type="submit"] {
  margin-top: 8px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 14px 20px;
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.4);
}

#contact-email-error {
  display: none;
  color: #f87171;
  font-size: 0.85rem;
  margin: 0;
}

#contact-email-error.visible {
  display: block;
}

#contact-success {
  display: none;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(34, 197, 94, 0.08);
  color: var(--text);
  font-family: var(--font-serif);
}

#contact-success.visible {
  display: block;
}

.go-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.go-ad {
  font-family: var(--font-label);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.go-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-page h1 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.go-page > p {
  color: var(--muted);
  max-width: 420px;
}

.go-compliance {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 480px;
}

.go-compliance a {
  color: var(--accent);
  text-decoration: underline;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  gap: 16px;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--primary);
}

.error-page p {
  color: var(--muted);
  max-width: 360px;
}

.error-page a {
  margin-top: 12px;
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--bg);
  background: var(--primary);
  padding: 12px 24px;
  display: inline-block;
}

.error-page a:hover {
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.45);
  color: var(--bg);
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes threadDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.offers-kicker {
  text-align: center;
  margin-bottom: 8px;
}

.hero {
  padding: 28px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: fadeRise 0.8s ease both;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: end;
}

.hero-block {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.hero-block--primary {
  background: var(--primary);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px 36px;
}

.hero-block--secondary {
  background: var(--secondary);
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px 28px;
  align-self: start;
}

.hero-block--primary h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--bg);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 12ch;
}

.hero-block--secondary .hero-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(250, 250, 250, 0.82);
  line-height: 1.5;
  text-align: right;
  max-width: 28ch;
  margin: 0;
}

.hero-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--bg);
  background: var(--text);
  padding: 14px 22px;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.45);
}

.hero-thread {
  height: 1px;
  background: var(--border);
  margin: 8px 0 0;
  transform-origin: left center;
  animation: threadDraw 1.1s ease 0.3s both;
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 16px 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-block--primary,
  .hero-block--secondary {
    width: 100%;
    min-height: 200px;
  }

  .hero-block--secondary .hero-sub {
    text-align: left;
    max-width: 100%;
  }

  .hero-block--secondary {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.offers-section {
  position: relative;
  padding: 56px 20px 64px;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.88) 0%, rgba(9, 9, 11, 0.78) 50%, rgba(9, 9, 11, 0.9) 100%);
  z-index: 0;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.offers-inner > h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.offers-lead {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
  font-family: var(--font-serif);
}

.info-section {
  padding: 72px 24px;
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(120px, 30%);
  height: 1px;
  background: var(--border);
}

.info-section:nth-child(even) {
  background: rgba(24, 24, 27, 0.55);
}

.info-section:nth-child(even)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 70% 40%, rgba(34, 197, 94, 0.04) 0%, transparent 55%);
}

.info-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.info-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 500;
}

.info-inner > p,
.info-copy p {
  font-size: 1rem;
  color: rgba(250, 250, 250, 0.72);
  max-width: 560px;
  font-family: var(--font-serif);
}

.info-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.info-split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  background: var(--surface);
}

.decor-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(9, 9, 11, 0.55) 100%);
  pointer-events: none;
  opacity: 0.65;
}

.decor-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.7s ease, opacity 0.7s ease;
  opacity: 0.92;
}

.decor-wrap:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.info-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.info-mini {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 18px 4px 8px;
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.7);
  font-family: var(--font-serif);
}

.info-mini strong {
  display: block;
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 600;
}

.decor-below {
  margin-top: 28px;
  max-width: 420px;
}

@media (max-width: 768px) {
  .info-section {
    padding: 48px 16px;
    overflow-x: hidden;
  }

  .info-split,
  .info-split.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .decor-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .decor-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
  }

  .decor-below {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .info-section {
    padding: 36px 12px;
    overflow-x: hidden;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-wrap img {
    max-width: 100%;
    max-height: 200px;
  }

  .offers-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.info-cta {
  display: inline-flex;
  margin-top: 20px;
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--bg);
  background: var(--primary);
  padding: 12px 18px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.info-cta:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.info-checklist {
  margin-top: 18px;
  padding-left: 1.2rem;
  color: rgba(250, 250, 250, 0.72);
  font-family: var(--font-serif);
}

.info-checklist li {
  margin-bottom: 8px;
}

.info-quote {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 2px solid var(--primary);
  color: rgba(250, 250, 250, 0.8);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  max-width: 520px;
}
