:root {
  --novirel-color-canvas: #F5F2EA;
  --novirel-color-surface: #FAF8F2;
  --novirel-color-elevated: #FFFFFF;
  --novirel-color-text: #18212A;
  --novirel-color-muted: #5E6966;
  --novirel-color-primary: #18212A;
  --novirel-color-accent: #9AA79C;
  --novirel-color-stone: #D9D7D0;
  --novirel-color-border: #B7C0B8;
  --novirel-color-silver: #C9C3B7;
  --novirel-color-success: #50665B;
  --novirel-color-error: #7A3F45;
  --novirel-space-1: 4px;
  --novirel-space-2: 8px;
  --novirel-space-3: 12px;
  --novirel-space-4: 16px;
  --novirel-space-5: 24px;
  --novirel-space-6: 32px;
  --novirel-space-7: 48px;
  --novirel-space-8: 64px;
  --novirel-space-9: 88px;
  --novirel-space-section: clamp(72px, 10vw, 136px);
  --novirel-container: 1240px;
  --novirel-measure: 680px;
  --novirel-gutter: clamp(18px, 4vw, 48px);
  --novirel-radius-button: 8px;
  --novirel-radius-card: 10px;
  --novirel-hairline: 1px solid rgba(127, 140, 130, .55);
  --novirel-shadow-soft: 0 20px 60px rgba(24, 33, 42, .08);
  --novirel-motion: 220ms ease;
  --novirel-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --novirel-font-ui: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--novirel-color-canvas); color: var(--novirel-color-text); font-family: var(--novirel-font-ui); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 3px; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #CCD4CD; color: #111A22; }

.novirel-container { width: min(calc(100% - (var(--novirel-gutter) * 2)), var(--novirel-container)); margin-inline: auto; }
.novirel-narrow { max-width: var(--novirel-measure); }
.novirel-section { position: relative; padding-block: var(--novirel-space-section); }
.novirel-section--sage { background: var(--novirel-color-accent); }
.novirel-section--stone { background: #E3E0D9; }
.novirel-section--ink { background: var(--novirel-color-primary); color: var(--novirel-color-canvas); }
.novirel-section--ink .novirel-section-index { color: #BFC8C0; }

.novirel-skip-link { position: fixed; left: 12px; top: 12px; z-index: 1000; transform: translateY(-150%); background: var(--novirel-color-primary); color: white; padding: 10px 14px; border-radius: 6px; }
.novirel-skip-link:focus { transform: none; }

.novirel-header { position: sticky; top: 0; z-index: 100; background: rgba(245,242,234,.96); border-bottom: 1px solid transparent; transition: padding var(--novirel-motion), border-color var(--novirel-motion), box-shadow var(--novirel-motion); }
.novirel-header[data-novirel-state="compact"] { border-color: rgba(127,140,130,.35); box-shadow: 0 6px 22px rgba(24,33,42,.04); }
.novirel-header__inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; transition: min-height var(--novirel-motion); }
.novirel-header[data-novirel-state="compact"] .novirel-header__inner { min-height: 68px; }
.novirel-brand { display: inline-flex; align-items: baseline; gap: 12px; text-decoration: none; white-space: nowrap; }
.novirel-brand__name { font-family: var(--novirel-font-display); font-size: 31px; font-weight: 600; letter-spacing: -.025em; }
.novirel-brand__product { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--novirel-color-muted); }
.novirel-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.novirel-nav a { text-decoration: none; position: relative; }
.novirel-nav a:not(.novirel-nav__cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--novirel-color-text); transition: right var(--novirel-motion); }
.novirel-nav a:hover::after, .novirel-nav a[aria-current="page"]::after { right: 0; }
.novirel-nav__cta { border: 1px solid var(--novirel-color-text); padding: 10px 14px; border-radius: var(--novirel-radius-button); }
.novirel-menu-toggle { display: none; border: 0; background: transparent; color: inherit; padding: 10px; cursor: pointer; }
.novirel-menu-toggle__mark { width: 20px; height: 1px; background: currentColor; display: inline-block; margin-left: 8px; box-shadow: 0 6px currentColor; }

.novirel-eyebrow, .novirel-section-index, .novirel-footer__label { margin: 0 0 18px; font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .18em; color: var(--novirel-color-muted); font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--novirel-font-display); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
h1 { font-size: clamp(54px, 8vw, 112px); max-width: 900px; margin-bottom: 28px; }
h2 { font-size: clamp(40px, 5.3vw, 72px); max-width: 850px; margin-bottom: 26px; }
h3 { font-size: clamp(20px, 2vw, 28px); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 12px; }
.novirel-lede { max-width: 650px; font-size: clamp(18px, 2vw, 22px); color: #3F4A48; margin-bottom: 32px; }
.novirel-lede-small { max-width: 680px; font-size: clamp(18px, 2.2vw, 24px); color: #35403E; }
.novirel-note { color: var(--novirel-color-muted); font-size: 13px; }

.novirel-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--novirel-color-primary); border-radius: var(--novirel-radius-button); padding: 12px 20px; background: var(--novirel-color-primary); color: var(--novirel-color-canvas); text-decoration: none; font-weight: 700; cursor: pointer; transition: transform var(--novirel-motion), background var(--novirel-motion), color var(--novirel-motion), border-color var(--novirel-motion); }
.novirel-button:hover { transform: translateY(-1px); background: #26313A; }
.novirel-button:active { transform: translateY(0); }
.novirel-button:focus-visible, .novirel-nav a:focus-visible, summary:focus-visible, input:focus-visible, .novirel-footer__settings:focus-visible { outline: 3px solid rgba(24,33,42,.35); outline-offset: 3px; }
.novirel-button--secondary { background: transparent; color: var(--novirel-color-primary); }
.novirel-button--secondary:hover { background: rgba(24,33,42,.06); }
.novirel-button--full { width: 100%; }
.novirel-button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.novirel-section--ink .novirel-button { background: #C9D0C8; color: var(--novirel-color-text); border-color: #C9D0C8; }

.novirel-hero { min-height: calc(100vh - 88px); padding-top: clamp(44px, 6vw, 90px); display: flex; align-items: center; }
.novirel-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); align-items: center; gap: clamp(40px, 7vw, 100px); }
.novirel-hero__copy { position: relative; z-index: 2; }
.novirel-hero__facts { margin-top: 42px; padding-top: 18px; border-top: var(--novirel-hairline); display: flex; gap: 24px; flex-wrap: wrap; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; color: var(--novirel-color-muted); }
.novirel-hero__visual { min-height: 650px; position: relative; display: grid; place-items: center; }
.novirel-hero__panel { position: absolute; inset: 0 7% 4% 16%; background: var(--novirel-color-accent); border-radius: 28px 28px 14px 14px; }
.novirel-product-stage { position: relative; z-index: 1; width: min(88%, 520px); display: grid; place-items: center; }
.novirel-product-stage img { position: relative; z-index: 2; width: min(82%, 390px); filter: drop-shadow(0 26px 24px rgba(24,33,42,.16)); }
.novirel-product-stage img.novirel-product-photo { width: min(92%, 440px); }
.novirel-product-stage__pedestal { position: absolute; bottom: -10px; width: 86%; height: 90px; border-radius: 50%; background: #E5E0D4; box-shadow: inset 0 10px 30px rgba(255,255,255,.85), 0 20px 34px rgba(24,33,42,.09); }
.novirel-continuous-line { position: absolute; left: 0; right: 0; bottom: -28px; height: 75px; pointer-events: none; background: linear-gradient(90deg, transparent 0 8%, rgba(127,140,130,.72) 8% 48%, transparent 48%); mask: linear-gradient(#000 0 0); }
.novirel-continuous-line::after { content: ""; position: absolute; left: 48%; top: 36px; width: 46%; height: 1px; background: rgba(127,140,130,.72); transform: rotate(3deg); transform-origin: left; }

.novirel-split { display: grid; grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.novirel-section-heading { margin-bottom: clamp(44px, 7vw, 82px); }
.novirel-section-heading--wide h2 { max-width: 1000px; }
.novirel-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(24,33,42,.38); border-bottom: 1px solid rgba(24,33,42,.38); }
.novirel-steps article { min-height: 280px; padding: 34px 34px 42px 0; }
.novirel-steps article + article { border-left: 1px solid rgba(24,33,42,.38); padding-left: 34px; }
.novirel-steps span, .novirel-marker { display: block; margin-bottom: 70px; font-size: 12px; letter-spacing: .16em; }

.novirel-editorial-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: var(--novirel-hairline); }
.novirel-editorial-grid article { min-height: 320px; padding: 34px clamp(24px, 4vw, 58px) 48px 0; border-bottom: var(--novirel-hairline); }
.novirel-editorial-grid article:nth-child(even) { padding-left: clamp(24px, 4vw, 58px); border-left: var(--novirel-hairline); }
.novirel-editorial-grid p { max-width: 520px; color: var(--novirel-color-muted); }

.novirel-catalogue { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-template-rows: auto auto; gap: 14px; }
.novirel-catalogue figure { margin: 0; background: #F2EEE5; min-height: 300px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid rgba(127,140,130,.34); }
.novirel-catalogue__main { grid-row: 1 / span 2; min-height: 620px !important; }
.novirel-catalogue figure img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; }
.novirel-catalogue figure img.novirel-product-photo { max-height: 560px; }
.novirel-catalogue figcaption { padding-top: 14px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--novirel-color-muted); }
.novirel-specs { margin-top: 34px; display: grid; grid-template-columns: repeat(4,1fr); border-top: var(--novirel-hairline); border-bottom: var(--novirel-hairline); }
.novirel-specs div { padding: 22px 18px 24px 0; }
.novirel-specs div + div { border-left: var(--novirel-hairline); padding-left: 18px; }
.novirel-specs span { display: block; color: var(--novirel-color-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 8px; }
.novirel-specs strong { font-size: 14px; }

.novirel-offer-list { border-top: var(--novirel-hairline); }
.novirel-offer-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; border-bottom: var(--novirel-hairline); text-decoration: none; transition: padding var(--novirel-motion); }
.novirel-offer-row:hover { padding-inline: 8px; }
.novirel-offer-row span:first-child { display: grid; gap: 2px; }
.novirel-offer-row small { color: var(--novirel-color-muted); }
.novirel-offer-row > span:last-child { font-family: var(--novirel-font-display); font-size: 28px; }
.novirel-text-link { display: inline-block; margin-top: 12px; font-weight: 700; }

.novirel-accordion { border-top: var(--novirel-hairline); }
.novirel-accordion details { border-bottom: var(--novirel-hairline); }
.novirel-accordion summary { cursor: pointer; list-style: none; padding: 25px 48px 25px 0; font-family: var(--novirel-font-display); font-size: clamp(25px, 3vw, 38px); line-height: 1.1; position: relative; }
.novirel-accordion summary::-webkit-details-marker { display: none; }
.novirel-accordion summary::after { content: "+"; position: absolute; right: 8px; top: 22px; font-family: var(--novirel-font-ui); font-size: 24px; font-weight: 400; transition: transform var(--novirel-motion); }
.novirel-accordion details[open] summary::after { transform: rotate(45deg); }
.novirel-accordion details p { max-width: 720px; color: var(--novirel-color-muted); padding: 0 48px 24px 0; }

.novirel-order-card { background: var(--novirel-color-canvas); border: 1px solid rgba(24,33,42,.26); display: grid; grid-template-columns: .9fr 1.1fr; }
.novirel-order-card__product { padding: clamp(30px, 5vw, 66px); border-right: 1px solid rgba(24,33,42,.26); }
.novirel-order-card__product img { width: min(72%, 320px); margin: 34px auto 26px; filter: drop-shadow(0 22px 18px rgba(24,33,42,.12)); }
.novirel-order-card__product img.novirel-product-photo { width: min(82%, 360px); }
.novirel-order-form { padding: clamp(30px, 5vw, 66px); }
.novirel-order-form fieldset { border: 0; padding: 0; margin: 0 0 34px; }
.novirel-order-form legend { font-weight: 800; margin-bottom: 12px; }
.novirel-pack-options { display: grid; gap: 8px; }
.novirel-pack-option { cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border: 1px solid rgba(127,140,130,.55); padding: 15px; border-radius: 8px; transition: border-color var(--novirel-motion), background var(--novirel-motion); }
.novirel-pack-option:has(input:checked) { border-color: var(--novirel-color-text); background: rgba(154,167,156,.14); }
.novirel-pack-option input { accent-color: var(--novirel-color-text); }
.novirel-pack-option span { display: grid; }
.novirel-pack-option small { color: var(--novirel-color-muted); }
.novirel-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.novirel-form-grid label, .novirel-order-form > label { display: grid; gap: 8px; font-size: 13px; font-weight: 700; }
.novirel-form-grid__wide { grid-column: 1 / -1; }
.novirel-order-form input[type="text"], .novirel-order-form input[type="tel"] { width: 100%; min-height: 48px; border: 1px solid rgba(127,140,130,.65); border-radius: 7px; background: #FBF9F3; color: var(--novirel-color-text); padding: 10px 12px; }
.novirel-order-form input[aria-invalid="true"] { border-color: var(--novirel-color-error); }
.novirel-consent { grid-template-columns: auto 1fr !important; align-items: start; margin: 20px 0 6px; font-weight: 500 !important; }
.novirel-consent input { margin-top: 4px; accent-color: var(--novirel-color-text); }
.novirel-field-error { min-height: 18px; color: var(--novirel-color-error); font-size: 12px; font-weight: 500; }
.novirel-order-summary { display: flex; align-items: baseline; justify-content: space-between; border-top: var(--novirel-hairline); padding: 22px 0; margin-top: 12px; }
.novirel-order-summary strong { font-family: var(--novirel-font-display); font-size: 32px; }
.novirel-form-status { min-height: 24px; margin: 12px 0 0; color: var(--novirel-color-muted); font-size: 13px; }

.novirel-page-hero { padding-top: clamp(84px, 12vw, 160px); }
.novirel-simple-main h1 { font-size: clamp(58px, 8vw, 104px); }
.novirel-simple-main h2 { font-size: clamp(34px, 4vw, 58px); }
.novirel-definition { margin: 32px 0 0; border-top: var(--novirel-hairline); }
.novirel-definition div { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 16px 0; border-bottom: var(--novirel-hairline); }
.novirel-definition dt { color: var(--novirel-color-muted); }
.novirel-definition dd { margin: 0; }
.novirel-ingredient-row__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.novirel-ingredient-row--reverse .novirel-ingredient-art { order: 2; }
.novirel-ingredient-art { min-height: 520px; background: #DEDAD0; position: relative; overflow: hidden; border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(127,140,130,.25); }
.novirel-ingredient-art span { position: absolute; border-radius: 50%; box-shadow: inset -12px -12px 26px rgba(24,33,42,.12), 0 16px 28px rgba(24,33,42,.1); }
.novirel-ingredient-art span:nth-child(1) { width: 180px; height: 180px; left: 16%; top: 20%; }
.novirel-ingredient-art span:nth-child(2) { width: 130px; height: 130px; left: 50%; top: 42%; }
.novirel-ingredient-art span:nth-child(3) { width: 90px; height: 90px; left: 26%; top: 62%; }
.novirel-ingredient-art--rosehip span { background: #9E5D5C; }
.novirel-ingredient-art--seabuckthorn span { background: #D38A47; }
.novirel-ingredient-art--raspberry span { background: #A64F66; }
.novirel-ingredient-art--b12 span { background: #B3A6B2; border-radius: 8px; transform: rotate(18deg); }
.novirel-contact-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(24,33,42,.32); }
.novirel-contact-grid > div { min-height: 260px; padding: 34px 34px 34px 0; border-bottom: 1px solid rgba(24,33,42,.32); }
.novirel-contact-grid > div:nth-child(even) { padding-left: 34px; border-left: 1px solid rgba(24,33,42,.32); }

.novirel-policy { padding-top: clamp(72px, 10vw, 132px); }
.novirel-policy h1 { margin-top: 20px; }
.novirel-policy h2 { font-family: var(--novirel-font-display); font-size: clamp(30px, 4vw, 44px); margin-top: 54px; margin-bottom: 16px; }
.novirel-policy p { color: #3E4947; }
.novirel-back-link { text-decoration: none; font-weight: 700; }
.novirel-policy-toc { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 20px 0; margin: 30px 0 10px; border-top: var(--novirel-hairline); border-bottom: var(--novirel-hairline); }
.novirel-policy-toc a { font-size: 13px; }
.novirel-cookie-setting { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 28px 0; border-top: var(--novirel-hairline); }
.novirel-cookie-setting:last-of-type { border-bottom: var(--novirel-hairline); margin-bottom: 28px; }
.novirel-cookie-setting h2 { margin: 0 0 8px; font-size: 28px; }
.novirel-switch { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.novirel-switch input { position: absolute; opacity: 0; }
.novirel-switch span { width: 48px; height: 26px; border: 1px solid var(--novirel-color-border); border-radius: 20px; position: relative; background: var(--novirel-color-stone); }
.novirel-switch span::after { content: ""; position: absolute; width: 18px; height: 18px; background: var(--novirel-color-text); border-radius: 50%; left: 3px; top: 3px; transition: transform var(--novirel-motion); }
.novirel-switch input:checked + span::after { transform: translateX(22px); }
.novirel-switch input:focus-visible + span { outline: 3px solid rgba(24,33,42,.35); outline-offset: 3px; }

.novirel-success-page { min-height: 68vh; display: grid; align-items: center; }
.novirel-success-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 18px; }

.novirel-footer { background: var(--novirel-color-primary); color: #F4F0E7; padding: 72px 0 28px; }
.novirel-footer__line { height: 1px; background: #738076; margin-bottom: 50px; }
.novirel-footer__grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.2fr; gap: 44px; }
.novirel-footer__brand { font-family: var(--novirel-font-display); font-size: 50px; line-height: 1; margin-bottom: 18px; }
.novirel-footer__sentence { max-width: 340px; color: #BCC3BD; }
.novirel-footer__label { color: #8F9C92; }
.novirel-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.novirel-footer a { color: #D9DDD8; text-decoration: none; }
.novirel-footer a:hover { color: #FFF; }
.novirel-footer__legal p:not(.novirel-footer__label) { color: #AEB7B0; font-size: 13px; }
.novirel-footer__bottom { margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(154,167,156,.35); display: flex; justify-content: space-between; gap: 20px; color: #929D95; font-size: 12px; }
.novirel-footer__settings { appearance: none; border: 0; background: none; color: inherit; text-decoration: underline; cursor: pointer; padding: 0; }

.novirel-cookie { position: fixed; z-index: 200; left: 20px; right: 20px; bottom: 20px; margin: 0 auto; width: min(calc(100% - 40px), 980px); background: #F8F5ED; border: 1px solid var(--novirel-color-border); box-shadow: var(--novirel-shadow-soft); padding: 20px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; border-radius: 10px; }
.novirel-cookie[hidden] { display: none; }
.novirel-cookie p { margin: 0; font-size: 13px; color: var(--novirel-color-muted); }
.novirel-cookie__title { color: var(--novirel-color-text) !important; font-weight: 800; margin-bottom: 3px !important; }
.novirel-cookie__actions { display: flex; gap: 8px; }

[data-novirel-reveal] { opacity: 0; transform: translateY(12px); transition: opacity 420ms ease, transform 420ms ease; }
[data-novirel-reveal][data-novirel-state="visible"] { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .novirel-menu-toggle { display: inline-flex; align-items: center; }
  .novirel-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--novirel-color-canvas); border-bottom: var(--novirel-hairline); padding: 18px var(--novirel-gutter) 26px; display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .novirel-nav[data-novirel-state="open"] { display: flex; }
  .novirel-nav a { padding: 12px 0; }
  .novirel-nav__cta { text-align: center; margin-top: 8px; }
  .novirel-hero { min-height: auto; }
  .novirel-hero__grid { grid-template-columns: 1fr; }
  .novirel-hero__visual { min-height: 560px; }
  .novirel-order-card { grid-template-columns: 1fr; }
  .novirel-order-card__product { border-right: 0; border-bottom: 1px solid rgba(24,33,42,.26); }
  .novirel-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .novirel-header__inner { min-height: 72px; }
  .novirel-brand__product { display: none; }
  .novirel-brand__name { font-size: 28px; }
  .novirel-hero { padding-top: 38px; }
  .novirel-hero__visual { min-height: 470px; margin-inline: calc(var(--novirel-gutter) * -0.35); }
  .novirel-hero__panel { inset: 0 4% 5% 11%; border-radius: 22px; }
  .novirel-product-stage { width: 92%; }
  .novirel-split, .novirel-ingredient-row__grid { grid-template-columns: 1fr; gap: 24px; }
  .novirel-ingredient-row--reverse .novirel-ingredient-art { order: 0; }
  .novirel-ingredient-art { min-height: 390px; }
  .novirel-steps { grid-template-columns: 1fr; }
  .novirel-steps article { min-height: auto; padding: 28px 0; }
  .novirel-steps article + article { border-left: 0; border-top: 1px solid rgba(24,33,42,.38); padding-left: 0; }
  .novirel-steps span, .novirel-marker { margin-bottom: 36px; }
  .novirel-editorial-grid, .novirel-contact-grid { grid-template-columns: 1fr; }
  .novirel-editorial-grid article, .novirel-editorial-grid article:nth-child(even), .novirel-contact-grid > div, .novirel-contact-grid > div:nth-child(even) { min-height: auto; padding: 28px 0 34px; border-left: 0; }
  .novirel-catalogue { grid-template-columns: 1fr 1fr; }
  .novirel-catalogue__main { grid-column: 1 / -1; grid-row: auto; min-height: 470px !important; }
  .novirel-specs { grid-template-columns: 1fr 1fr; }
  .novirel-specs div:nth-child(3) { border-left: 0; }
  .novirel-specs div:nth-child(n+3) { border-top: var(--novirel-hairline); }
  .novirel-form-grid { grid-template-columns: 1fr; }
  .novirel-form-grid__wide { grid-column: auto; }
  .novirel-footer__grid { grid-template-columns: 1fr; }
  .novirel-cookie { grid-template-columns: 1fr; }
  .novirel-cookie__actions { flex-wrap: wrap; }
}

@media (max-width: 460px) {
  h1, .novirel-simple-main h1 { font-size: clamp(48px, 15vw, 66px); }
  h2, .novirel-simple-main h2 { font-size: clamp(36px, 11vw, 48px); }
  .novirel-hero__visual { min-height: 400px; }
  .novirel-catalogue { grid-template-columns: 1fr; }
  .novirel-catalogue__main { grid-column: auto; }
  .novirel-specs { grid-template-columns: 1fr; }
  .novirel-specs div + div { border-left: 0; border-top: var(--novirel-hairline); padding-left: 0; }
  .novirel-pack-option { grid-template-columns: auto 1fr; }
  .novirel-pack-option b { grid-column: 2; }
  .novirel-success-actions, .novirel-cookie__actions { flex-direction: column; }
  .novirel-success-actions .novirel-button, .novirel-cookie__actions .novirel-button { width: 100%; }
  .novirel-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  [data-novirel-reveal] { opacity: 1 !important; transform: none !important; }
}
