 :root { --brand: #425d8b; --brand-dark: #324a73; --brand-light: #e8edf5; --accent: #a21f26; --accent-dark: #841820; --ink: #1d1d1b; --ink-soft: #4a4a45; --paper: #fdfcfa; --cream: #f4f0e9; --line: #e3ddd2; --border: #e3ddd2; --text: #2b2b27; --color-bg: #fdfcfa; --white: #ffffff; --green: #2f6b36; --success: #2e7d32; --shadow-sm: 0 2px 8px rgba(29, 29, 27, .06); --shadow-md: 0 10px 28px rgba(29, 29, 27, .09); --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; --font-display: Georgia, "Times New Roman", "Iowan Old Style", serif; --radius: 14px; --radius-lg: 22px; --shadow: 0 2px 6px rgba(29,29,27,.06), 0 14px 40px rgba(29,29,27,.08); --shadow-lg: 0 6px 14px rgba(29,29,27,.08), 0 24px 64px rgba(29,29,27,.12); --container: 1180px; --gutter: clamp(16px, 4vw, 32px); --header-h: 76px; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; } body { font-family: var(--font-sans); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 1.0625rem; -webkit-font-smoothing: antialiased; } img, svg, video { display: block; max-width: 100%; height: auto; } a { color: var(--brand); text-decoration: none; transition: color .18s ease; } .section p a:not(.btn), .info-box p a:not(.btn), .contact-form a:not(.btn) { display: inline-block; padding: 6px 0; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; color: var(--brand-dark); } a:hover { color: var(--accent); } ul, ol { list-style: none; } h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; } h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); } h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); } h3 { font-size: 1.25rem; } h4 { font-size: 1.05rem; } .container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; } section { scroll-margin-top: calc(var(--header-h) + 20px); } .lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); } .section { padding-block: clamp(38px, 4.5vw, 60px); } .section-alt { background: var(--cream); } .section-head { max-width: 720px; margin-bottom: clamp(18px, 2.5vw, 30px); } .section-head.center { margin-inline: auto; text-align: center; } .section-head h2 { margin-bottom: 10px; } .section-head p { color: var(--ink-soft); } .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; } .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .98rem; line-height: 1; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease; } .btn:active { transform: scale(.97); } .btn-primary { background: var(--accent); color: #fff; } .btn-primary:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 10px 24px rgba(162,31,38,.32); } .btn-brand { background: var(--brand); color: #fff; } .btn-brand:hover { background: var(--brand-dark); color: #fff; } .btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; } .btn-outline:hover { background: var(--ink); color: #fff; } .btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow); } .btn-light:hover { transform: translateY(-2px); } .btn-lg { padding: 16px 34px; font-size: 1.05rem; } .header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); height: var(--header-h); } .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 100%; } @media (min-width: 761px) { .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; height: 100%; } .header-inner .nav { justify-self: center; } .header-inner .nav-cta { justify-self: end; } } .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--ink); font-size: 1.12rem; } .brand:hover { color: var(--ink); } .brand img { height: 42px; width: auto; } .brand small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; color: var(--ink-soft); text-transform: uppercase; margin-top: 2px; } .nav ul { display: flex; align-items: center; gap: 6px; } .nav a { display: inline-block; padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--ink); } .nav a:hover { color: var(--brand-dark); background: var(--brand-light); } .nav a[aria-current="page"] { color: var(--accent); background: rgba(162,31,38,.08); } .nav-cta { display: flex; align-items: center; gap: 16px; } .burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; } .burger span, .burger span::before, .burger span::after { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--ink); position: absolute; left: 10px; transition: .25s ease; } .burger span { top: 20px; } .burger span::before { content: ""; top: -7px; } .burger span::after { content: ""; top: 7px; } .burger[aria-expanded="true"] span { background: transparent; } .burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); } .burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); } .hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; } .hero-slider { display: block; } .hero-slide { display: none; } .hero-slide.active { display: block; animation: heroIn .3s ease both; } @keyframes heroIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } } .hero-media { position: absolute; inset: 0; } .hero-media img, .hero-media source { object-fit: cover; width: 100%; height: 100%; } .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(29,29,27,.78) 0%, rgba(29,29,27,.45) 40%, rgba(29,29,27,.15) 70%); } .hero-content { position: relative; z-index: 2; padding-block: clamp(60px, 8vw, 100px); max-width: 640px; } .hero-content .eyebrow { color: #e8b4b6; } .hero-content .eyebrow::before { background: #e8b4b6; } .hero h1, .hero .slide-title { margin-block: 6px 14px; } .hero .slide-title { font-size: clamp(1.65rem, 4.6vw, 2.6rem); font-weight: 700; } .hero p { color: rgba(255,255,255,.85); font-size: 1.12rem; margin-bottom: 22px; } .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; } .hero-nav { position: absolute; right: var(--gutter); bottom: 26px; z-index: 3; display: flex; gap: 8px; } .hero-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: #fff; cursor: pointer; font-size: 1rem; transition: .2s; } .hero-nav button:hover { background: #fff; color: var(--ink); } .hero-dots { position: absolute; left: var(--gutter); bottom: 32px; z-index: 3; display: flex; gap: 12px; } .hero-dots button { width: 24px; height: 24px; padding: 0; display: grid; place-items: center; border: 0; background: none; cursor: pointer; transition: .25s; min-width: 24px; min-height: 24px; } .hero-dots button::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.45); display: block; transition: .25s; } .hero-dots button:hover::before, .hero-dots button.active::before { background: #fff; width: 26px; } .trustbar { background: var(--brand); color: #fff; } .trustbar ul { display: grid; grid-template-columns: 1fr; gap: 12px; padding-block: 22px; } .trustbar li { display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; font-size: .95rem; } .trustbar svg { flex: none; color: #ffd9db; } .trustbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; display: inline-block; padding: 8px 0; } .trustbar a:hover { color: #fff; opacity: .85; } @media (min-width: 761px) { .trustbar ul { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); justify-items: center; } } .hero .btn-outline, .hero .btn-outline:active { color: #fff; border-color: rgba(255, 255, 255, .75); background: rgba(255, 255, 255, .08); } .hero .btn-outline:hover { background: rgba(255, 255, 255, .18); color: #fff; border-color: #fff; } .grid { display: grid; gap: 24px; } .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } .card-product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; } .card-product:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .card-product .thumb { aspect-ratio: 1; background: var(--cream); overflow: hidden; position: relative; } .card-product .thumb img { object-fit: cover; width: 100%; height: 100%; transition: transform .5s ease; } .card-product:hover .thumb img { transform: scale(1.06); } .card-product .badge { position: absolute; top: 14px; left: 14px; z-index: 2; } .badge { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; } .badge-warm { background: #fdeecf; color: #8a5a12; } .badge-green { background: #e2f1e0; color: var(--green); } .badge-blue { background: var(--brand-light); color: var(--brand-dark); } .card-product .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; } .card-product h3 a { color: var(--ink); display: inline-block; padding: 8px 0; } .card-product h3 a:hover { color: var(--brand-dark); } .card-product .meta { font-size: .85rem; color: var(--ink-soft); } .card-product .cta-row { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; } .card-link { font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; padding: 10px 0; } .card-link:hover { color: var(--accent-dark); } .chips { display: flex; flex-wrap: wrap; gap: 10px; } .chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; font-size: .9rem; cursor: pointer; transition: .2s; } .chip:hover { border-color: var(--brand); color: var(--brand-dark); } .chip.active { background: var(--brand); border-color: var(--brand); color: #fff; } .brand-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; } .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; } .gallery-grid img { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow-lg); aspect-ratio: 3 / 2; object-fit: cover; } .brand-item { width: 170px; height: 96px; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: .2s; } .brand-grid > .brand-item { width: 170px; height: 96px; } .brand-item:hover { border-color: var(--brand); box-shadow: var(--shadow); } .brand-item img { max-height: 84px; object-fit: contain; filter: grayscale(.25); opacity: .9; transition: .2s; } .brand-grid > .brand-item img { max-width: 150px; max-height: 72px; } .brand-item:hover img { filter: none; opacity: 1; } .brands-grid .brand-item { width: auto !important; height: auto; min-height: 130px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); } .brands-grid .brand-item img { max-height: 110px; filter: grayscale(18%); } .brands-grid .brand-item.has-spec { flex-direction: column; gap: 8px; } .brand-spec { font-size: .78rem; color: var(--ink-soft); text-align: center; line-height: 1.35; max-width: 180px; } .spec-heading { margin: 48px 0 8px; } .spec-list { columns: 3; column-gap: 40px; margin-top: 18px; } .spec-list li { break-inside: avoid; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .95rem; } @media (max-width: 900px) { .spec-list { columns: 2; } } @media (max-width: 560px) { .spec-list { columns: 1; } } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; } .feature { background: var(--cream); border-radius: var(--radius-lg); padding: 30px; transition: transform .25s ease, box-shadow .25s ease; } .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); } .feature .icon { width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px; background: var(--brand); color: #fff; display: grid; place-items: center; } .feature h3 { margin-bottom: 8px; } .feature p { color: var(--ink-soft); font-size: .95rem; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; } .stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: transform .25s ease, box-shadow .25s ease; } .stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); } .stat-num { display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; line-height: 1; color: var(--brand); font-variant-numeric: tabular-nums; margin-bottom: 12px; } .stat-label { display: block; font-weight: 700; margin-bottom: 8px; } .stat p { color: var(--ink-soft); font-size: .9rem; margin: 0; } .zone-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; } .zone-item { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-weight: 600; font-size: .95rem; color: var(--ink); transition: .2s; } .zone-item:hover { border-color: var(--accent); color: var(--accent); } .zone-item svg { flex: none; color: var(--accent); } .faq-list { max-width: 820px; margin-inline: auto; } .faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: #fff; overflow: hidden; } .faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent); line-height: 1; transition: transform .25s; } .faq-item[open] summary::after { transform: rotate(45deg); } .faq-item p { padding: 0 22px 20px; color: var(--ink-soft); } .pdp { padding-block: clamp(28px, 4vw, 52px); } .breadcrumbs { font-size: .85rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 16px; } .breadcrumbs a, .breadcrumbs [aria-current] { color: var(--ink-soft); display: inline-block; padding: 8px 7px; } .breadcrumbs a:hover { color: var(--accent); } .breadcrumbs .sep { color: var(--ink-soft); padding: 8px 0; line-height: 1.5; } .pdp-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: start; } .pdp-gallery { position: sticky; top: calc(var(--header-h) + 24px); } .pdp-gallery .main-img { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); } .pdp-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; } .pdp h1 { margin-bottom: 14px; } .pdp .subtitle { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 22px; } .info-box { background: var(--cream); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 22px; font-size: .95rem; } .info-box ul { display: grid; gap: 8px; } .info-box li { display: flex; gap: 8px; } .info-box .k { font-weight: 700; min-width: 96px; } .info-box .v { color: var(--ink-soft); } .tabs { margin-top: 34px; } .tabs-nav { display: flex; gap: 6px; border-bottom: 2px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; } .tab-btn { background: none; border: 0; padding: 12px 20px; font-weight: 700; font-size: .95rem; color: var(--ink-soft); cursor: pointer; position: relative; transition: color .2s; } .tab-btn:hover { color: var(--ink); } .tab-btn.active { color: var(--accent); } .tab-btn.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent); } .tab-panel { display: none; } .tab-panel.active { display: block; animation: fadeIn .35s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } } .tab-panel p { color: var(--ink-soft); max-width: 72ch; } .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); } table.data { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 520px; } table.data th, table.data td { padding: 13px 16px; text-align: left; } table.data thead th { background: var(--brand); color: #fff; font-weight: 600; font-size: .85rem; letter-spacing: .04em; } table.data tbody tr:nth-child(even) { background: rgba(244,240,233,.5); } table.data tbody td { border-top: 1px solid var(--line); } .nutrition { max-width: 560px; } .cta-strip { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 52px); display: flex; flex-wrap: wrap; align-items: center; gap: 22px; justify-content: space-between; } .cta-strip h2 { color: #fff; margin-bottom: 8px; } .cta-strip p { color: rgba(255,255,255,.8); } .contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 64px); } .contact-card { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); margin-bottom: 18px; } .contact-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; } .contact-card svg { color: var(--accent); } .contact-card a.wrap { word-break: break-word; } .map-frame { border: 0; width: 100%; height: 340px; border-radius: var(--radius-lg); } .form-field { margin-bottom: 18px; } .form-field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; } .form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; background: #fff; color: var(--ink); transition: border-color .2s; } .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); } .form-field textarea { min-height: 140px; resize: vertical; } .form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; } .form-status { display: none; margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-weight: 600; font-size: .92rem; } .form-status.ok { display: block; background: #e4f1e6; color: var(--success); } .form-status.err { display: block; background: #fbe9e9; color: var(--accent); } .prose { max-width: 78ch; } .prose p { margin-bottom: 18px; color: var(--ink-soft); } .prose h2 { margin: 40px 0 14px; } .prose h3 { margin: 26px 0 10px; } .prose ul { margin-bottom: 18px; display: grid; gap: 8px; } .prose ul li { position: relative; padding-left: 26px; color: var(--ink-soft); } .prose ul li::before { content: ""; position: absolute; left: 4px; top: .58em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); } .footer { background: var(--ink); color: rgba(255,255,255,.75); margin-top: auto; border-top: 4px solid var(--brand); } .footer a { display: inline-block; padding: 6px 0; } .footer-top { display: grid; grid-template-columns: 1.7fr 1.1fr 1.1fr 1.4fr; gap: clamp(24px, 3vw, 44px); padding-block: clamp(28px, 3.5vw, 44px); } .footer .footer-title { color: #fff; margin-bottom: 10px; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; } .footer .footer-title.sub { margin-top: 26px; } .footer ul { display: grid; gap: 7px; } .footer a { color: rgba(255,255,255,.75); } .footer a:hover { color: #fff; } .footer .brand { color: #fff; margin-bottom: 8px; font-size: 1.2rem; font-weight: 700; } .footer .brand small { display: block; margin-top: 2px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.72); text-transform: none; letter-spacing: normal; } .footer p { font-size: .92rem; } .footer .contact-lines { gap: 6px; font-size: .92rem; } .footer .contact-lines strong { color: #fff; font-weight: 700; } .footer .contact-lines a { color: #fff; } .footer .socials { display: flex; gap: 10px; margin-top: 10px; } .footer .socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; transition: .2s; } .footer .socials a:hover { background: var(--accent); transform: translateY(-2px); } .group-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; } .group-links a { padding: 8px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: .85rem; font-weight: 600; color: #fff; transition: .2s; } .group-links a:hover { background: #fff; color: var(--ink); } .footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-block: 14px; font-size: .85rem; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; } .footer-bottom a { color: rgba(255,255,255,.6); } .vanta-banner { background-color: var(--accent); background-image: linear-gradient(120deg, var(--accent), #7a1420); } .vanta-banner .container { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; padding-block: 18px; color: #fff; } .vanta-banner strong { font-size: 1.05rem; } .vanta-banner a { color: #fff; font-weight: 700; padding: 10px 0; display: inline-block; text-decoration: underline; text-underline-offset: 3px; } #backtotop { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer; background: var(--brand); color: #fff; font-size: 1.1rem; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s; } #backtotop.show { opacity: 1; pointer-events: auto; transform: none; } #backtotop:hover { background: var(--accent); } .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; } .reveal.in { opacity: 1; transform: none; } @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } } .page-hero { position: relative; background-color: var(--brand); color: #fff; text-align: center; overflow: hidden; background-image: radial-gradient(110% 140% at 88% 6%, rgba(255, 255, 255, .16), transparent 46%), linear-gradient(135deg, #4d6294 0%, #41567c 55%, #333e5c 100%); padding-block: clamp(44px, 6vw, 68px) clamp(48px, 7vw, 78px); border-bottom: 3px solid var(--accent); } .page-hero::before { content: ""; position: absolute; left: -70px; top: -70px; width: 230px; height: 230px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); } .page-hero::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(232, 180, 190, .28), transparent 70%); } .page-hero .container { position: relative; z-index: 1; max-width: 860px; } .page-hero .breadcrumbs { justify-content: center; color: #fff; margin-bottom: 22px; font-size: .92rem; } .page-hero .breadcrumbs a, .page-hero .breadcrumbs .sep, .page-hero .breadcrumbs [aria-current] { color: rgba(255, 255, 255, .92); } .page-hero .breadcrumbs a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; } .page-hero h1 { margin: 0; letter-spacing: -.01em; } .page-hero p { font-size: 1.08rem; line-height: 1.65; color: rgba(255, 255, 255, .95); max-width: 680px; margin: 14px auto 0; } .page-hero .eyebrow { color: #fff; } .page-hero .eyebrow::before { background: #f5dfe1; } .page-hero .btn-outline, .page-hero .btn-outline:active { color: #fff; border-color: rgba(255, 255, 255, .65); background: rgba(255, 255, 255, .08); } .page-hero .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; } .section .container.narrow { max-width: 860px; margin: 0 auto; } .two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; } .two-col img.round { border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; height: auto; } .zone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 26px; } .zone-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; } .zone-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .zone-card h3 { color: var(--brand); margin-bottom: 8px; font-size: 1.12rem; } .brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 26px; } .brand-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: flex; align-items: center; justify-content: center; min-height: 130px; box-shadow: var(--shadow); transition: box-shadow .25s, transform .25s; } .brand-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .brand-item img { max-width: 100%; max-height: 110px; object-fit: contain; filter: grayscale(18%); transition: filter .25s; } .brand-item:hover img { filter: grayscale(0); } blockquote { border-left: 4px solid var(--accent); background: var(--color-bg); padding: 18px 24px; border-radius: 0 14px 14px 0; margin: 26px 0; font-size: 1.08rem; font-style: italic; } blockquote p { margin: 0; color: var(--text); } .faq-list { display: grid; gap: 14px; margin-top: 24px; } .faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 4px 20px; box-shadow: var(--shadow-sm); } .faq-item summary { cursor: pointer; font-weight: 600; padding: 16px 0; color: var(--text); list-style: none; } .faq-item summary::after { content: "+"; float: right; color: var(--accent); font-weight: 700; font-size: 1.2rem; } .faq-item[open] summary::after { content: "–"; } .faq-item p { padding-bottom: 16px; margin: 0; color: #555; } .contact-form { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-lg); } .contact-form label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: .95rem; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font: inherit; background: #fff; } .contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); } .contact-form textarea { resize: vertical; min-height: 120px; } .contact-form .btn { margin-top: 18px; } .form-status { margin-top: 12px; font-size: .95rem; font-weight: 500; min-height: 1.2em; } .form-status.ok { color: #1b7a3d; } .form-status.err { color: #c03030; } blockquote { border-left: 4px solid var(--accent); background: var(--color-bg); padding: 18px 24px; border-radius: 0 14px 14px 0; margin: 26px 0; font-style: italic; } blockquote p { margin: 0; color: var(--text); } .narrow h2, .narrow h3 { scroll-margin-top: calc(var(--header-h) + 14px); } @media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 28px; } .zone-grid { grid-template-columns: 1fr; } .brands-grid { grid-template-columns: repeat(2, 1fr); } } @media print { .header, .footer, .hero-nav, .backtotop, .nav-cta { display: none !important; } body { font-size: 11pt; } } @media (max-width: 1100px) { .footer-top { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 980px) { .pdp-layout { grid-template-columns: 1fr; } .pdp-gallery { position: static; } .contact-grid { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } } @media (max-width: 760px) { .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 22px; transform: translateY(-130%); transition: transform .3s ease; z-index: 55; } .nav.open { transform: none; box-shadow: var(--shadow-lg); } .nav ul { flex-direction: column; align-items: stretch; gap: 4px; } .nav a { display: block; padding: 13px 16px; font-size: 1.02rem; } .burger { display: block; } .nav-cta .btn { display: none; } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; gap: 30px; } .hero-nav, .hero-dots { bottom: 18px; } .brand small { display: none; } .hero-actions { flex-direction: column; align-items: stretch; } .hero-actions .btn { width: 100%; } .page-hero { padding-block: 52px 62px; } .hero-content { padding-block: clamp(64px, 16vw, 110px) 110px; } .trustbar ul { gap: 14px; } } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; } .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 26px; } .step { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; } .step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .step h3 { color: var(--brand); font-size: 1.2rem; margin-bottom: 8px; } .step p { margin: 0; color: #555; font-size: 1rem; } .check-list { display: grid; gap: 10px; margin-top: 18px; } .check-list li { position: relative; padding: 12px 16px 12px 48px; background: #fff; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); font-weight: 600; font-size: .98rem; transition: border-color .2s; } .check-list li::before { content: "✓"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: .8rem; font-weight: 700; display: grid; place-items: center; } .check-list li:hover { border-color: var(--accent); } .zone-badge { display: inline-block; background: var(--brand-light); color: var(--brand-dark); border-radius: 999px; padding: 6px 14px; font-size: .85rem; font-weight: 600; margin-right: 8px; margin-bottom: 8px; } 
/* === Fix allineamento pulsanti (ago 2026) === */
.page-hero .hero-actions { justify-content: center; }
.hero-actions { margin-top: 26px; }
.hero-actions .btn { margin-top: 0; }
.cta-strip .hero-actions { margin-top: 0; }
.two-col .hero-actions { margin-top: 24px; }
.btn { white-space: normal; text-align: center; }

/* === Fix spaziature tipografiche (audit agosto 2026) === */
h1 { margin: 0 0 20px; }
h2 { margin: 0 0 18px; }
h3 { margin: 0 0 14px; }
h4 { margin: 0 0 12px; }
.page-hero p { margin: 18px auto 0; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { margin: 0 0 10px; }
.cta-strip h2 { margin: 0 0 12px; }
.step h3 { margin: 0 0 12px; }
.zone-card h3 { margin: 0 0 12px; }
.feature h3 { margin: 0 0 12px; }
.card-product .body h3 { margin: 0 0 10px; }
.card-product .body p.meta { margin: 0 0 10px; }
.contact-form h3 { margin: 0 0 14px; }
.contact-card h3 { margin-bottom: 14px; }
.section p, .section-alt p { margin: 0 0 16px; }
.section p:last-child, .section-alt p:last-child { margin-bottom: 0; }
.card-product .body p { margin-bottom: 10px; }
.card-product .body p:last-child { margin-bottom: 0; }
.faq-item p { margin-top: 8px; }
.steps-grid p, .step p { margin: 0; }
.hero p { margin: 0; }
.two-col p { margin-bottom: 16px; }
.two-col p:last-child { margin-bottom: 0; }

.spec-heading { margin: 48px 0 16px; }

/* === Fix grandezza logo & burger mobile (set 2026) === */
@media (max-width: 760px) { .brand img { height: 36px; } .burger { width: 48px; height: 48px; } .burger span, .burger span::before, .burger span::after { width: 26px; height: 3px; left: 11px; } .burger span { top: 22.5px; } .burger span::before { top: -8px; } .burger span::after { top: 8px; } .header .brand > span { display: none; } }
