:root {
  --navy: #40547a;
  --navy-deep: #263754;
  --blue-soft: #e8eef6;
  --ivory: #fcf9f5;
  --white: #fff;
  --ink: #252a31;
  --muted: #626a73;
  --border: #dce2ea;
  --success: #2e6b4d;
  --warning: #8b5a2b;
  --shadow: 0 24px 64px rgba(38, 55, 84, .12);
  --radius: 18px;
  --container: 1200px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid #84a9dd; outline-offset: 3px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-150%); padding: 10px 16px; background: var(--white); color: var(--navy-deep); border-radius: 8px; }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.bg-ivory { background: var(--ivory); }
.bg-blue { background: var(--blue-soft); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.eyebrow { margin: 0 0 12px; color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.bg-navy .eyebrow { color: #c8d9f2; }
h1, h2, h3 { margin: 0; color: var(--navy-deep); font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.06; text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 6.5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
p { margin: 0 0 1em; }
.lede { max-width: 66ch; margin-top: 22px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.bg-navy .lede { color: #e4ebf5; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--navy-deep); }
.button-outline { border-color: var(--navy); background: transparent; color: var(--navy-deep); }
.button-outline:hover { background: var(--navy-deep); color: var(--white); }
.bg-navy .button-outline { border-color: #dce8f7; color: var(--white); }
.bg-navy .button-outline:hover { background: var(--white); color: var(--navy-deep); }
.button-small { min-height: 42px; padding: 8px 17px; font-size: .92rem; }
.text-link { color: var(--navy-deep); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.announcement { padding: 8px 18px; background: var(--navy-deep); color: var(--white); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-align: center; }
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-height); border-bottom: 1px solid rgba(220, 226, 234, .75); background: rgba(255, 255, 255, .96); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: grid; grid-template-columns: 190px 1fr 190px; align-items: center; gap: 20px; }
.brand-logo { display: inline-flex; align-items: center; width: 142px; text-decoration: none; }
.brand-logo img { width: 142px; height: 60px; object-fit: contain; }
.desktop-nav { justify-self: center; }
.desktop-nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.desktop-nav a, .nav-dropdown-toggle { border: 0; background: none; color: var(--navy-deep); font-size: .94rem; font-weight: 750; text-decoration: none; cursor: pointer; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-dropdown-panel { position: absolute; top: calc(100% + 18px); left: 50%; display: grid; width: 380px; grid-template-columns: 1fr 120px; gap: 18px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: .2s ease; }
.nav-dropdown:is(:hover, :focus-within) .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-panel a { display: block; padding: 10px 12px; border-radius: 10px; }
.nav-dropdown-panel a:hover { background: var(--blue-soft); }
.nav-dropdown-panel img { width: 120px; height: 120px; border-radius: 13px; object-fit: cover; }
.header-cta { justify-self: end; }
.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 50%; background: var(--white); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--navy-deep); transition: .2s ease; }
.menu-toggle span { margin: 5px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: calc(34px + var(--header-height)); right: 0; bottom: 0; left: 0; z-index: 99; display: none; overflow-y: auto; padding: 28px 20px 60px; background: var(--ivory); }
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-submenu-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 17px 8px; border: 0; border-bottom: 1px solid var(--border); background: transparent; color: var(--navy-deep); font-size: 1.15rem; font-weight: 750; text-decoration: none; }
.mobile-submenu { display: none; padding: 5px 0 5px 18px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { font-size: 1rem; font-weight: 650; }

.hero { background: linear-gradient(135deg, var(--ivory), #f4f8fc); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 64px; }
.hero-copy { padding: 70px 0; }
.hero-copy h1 em { color: var(--navy); font-style: normal; }
.hero-media { align-self: stretch; min-height: 600px; overflow: hidden; border-radius: 0 0 0 72px; background: var(--blue-soft); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
.trust-item { min-height: 112px; padding: 24px; background: var(--white); text-align: center; }
.trust-item strong { display: block; color: var(--navy-deep); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head p { max-width: 52ch; margin: 0; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card, .product-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 36px rgba(38, 55, 84, .06); }
.category-card-copy { min-height: 180px; padding: 28px; }
.category-card-copy p { margin: 12px 0 0; color: var(--muted); }
.category-card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-soft); }
.category-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card { display: flex; flex-direction: column; }
.product-card-media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--blue-soft); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { min-height: 300px; display: flex; flex: 1; flex-direction: column; padding: 26px; }
.product-card-body p { display: -webkit-box; overflow: hidden; margin: 14px 0 24px; color: var(--muted); -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-card-body .text-link { margin-top: auto; align-self: flex-start; }
.pill { display: inline-flex; width: fit-content; padding: 5px 10px; border-radius: 999px; background: var(--blue-soft); color: var(--navy-deep); font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.split-media { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.split-media img { width: 100%; min-height: 520px; object-fit: cover; }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature-line { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--navy-deep); font-weight: 900; }
.feature-line strong { display: block; color: var(--navy-deep); }
.feature-line p { margin: 2px 0 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.feature-card { min-height: 220px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.feature-card p { margin: 14px 0 0; color: var(--muted); }

.page-hero { padding: 86px 0 58px; background: linear-gradient(160deg, var(--ivory), var(--blue-soft)); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: .86rem; }
.breadcrumbs a { color: var(--navy-deep); }
.breadcrumbs span[aria-current="page"] { color: var(--muted); }
.category-intro { max-width: 72ch; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.faq-list { margin-top: 36px; border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 22px 50px 22px 0; color: var(--navy-deep); font-size: 1.08rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { max-width: 74ch; padding: 0 42px 22px 0; color: var(--muted); }

.product-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr); gap: 58px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-height) + 22px); }
.gallery-main { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 24px; background: var(--ivory); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 10px; }
.gallery-thumb { height: 72px; padding: 4px; overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: var(--white); cursor: pointer; }
.gallery-thumb.active { border-color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-copy h1 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.product-kicker { margin-bottom: 10px; color: var(--navy); font-weight: 800; }
.product-summary { margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.option-group { margin-top: 30px; }
.option-label { display: block; margin-bottom: 10px; color: var(--navy-deep); font-weight: 800; }
.option-buttons { display: grid; gap: 9px; }
.option-button { padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); color: var(--navy-deep); text-align: left; cursor: pointer; }
.option-button.active { border-color: var(--navy); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--navy); }
.price-panel { margin-top: 24px; padding: 22px; border-radius: var(--radius); background: var(--ivory); }
.price { display: block; color: var(--navy-deep); font-family: Georgia, serif; font-size: 2.15rem; font-weight: 500; line-height: 1.1; }
.availability { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; color: var(--success); font-size: .92rem; font-weight: 800; }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.availability.out { color: var(--warning); }
.checked-date { display: block; margin-top: 6px; color: var(--muted); font-size: .78rem; }
.product-actions .button { width: 100%; margin-top: 14px; }
.product-note { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.spec-table { width: 100%; margin-top: 32px; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 14px 0; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.spec-table th { width: 42%; color: var(--muted); font-size: .86rem; font-weight: 650; }
.spec-table td { color: var(--navy-deep); font-weight: 750; }

.review-shell { position: relative; margin-top: 36px; }
.review-card { display: none; min-height: 280px; padding: 30px; border: 1px solid var(--border); border-radius: 24px; background: var(--white); box-shadow: 0 14px 38px rgba(38, 55, 84, .06); }
.review-card.active { display: block; }
.stars { color: #b56c20; letter-spacing: .12em; }
.review-title { margin: 12px 0 8px; color: var(--navy-deep); font-size: 1.08rem; font-weight: 850; }
.review-body { max-height: 9.6em; overflow: hidden; margin: 0; color: var(--muted); }
.review-card.expanded .review-body { max-height: none; }
.review-expand { margin-top: 14px; padding: 0; border: 0; background: transparent; color: var(--navy-deep); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.reviewer { margin-top: 20px; color: var(--navy-deep); font-weight: 850; }
.review-controls { display: flex; gap: 9px; margin-top: 16px; }
.review-control { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--navy-deep); cursor: pointer; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.review-grid .review-card { display: block; min-height: 250px; }

.legal { padding: 70px 0 100px; }
.legal h1 { margin-bottom: 16px; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.legal h2 { margin: 42px 0 14px; font-size: 1.55rem; }
.legal p, .legal li { color: #4e5660; }
.legal ul { padding-left: 22px; }
.legal-meta { color: var(--muted); font-size: .9rem; }

.site-footer { padding: 66px 0 24px; background: var(--navy-deep); color: #dfe8f4; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .8fr); gap: 60px; }
.footer-brand img { width: 150px; height: 70px; padding: 7px; border-radius: 10px; background: var(--white); object-fit: contain; }
.footer-brand p { max-width: 38ch; margin-top: 20px; color: #cbd7e6; }
.footer-label { margin-bottom: 14px; color: var(--white); font-size: .86rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #dfe8f4; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18); color: #afbed1; font-size: .8rem; }

.cookie-banner { position: fixed; right: 18px; bottom: 18px; z-index: 150; width: min(430px, calc(100% - 36px)); padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; color: var(--navy-deep); font-family: Georgia, serif; font-size: 1.25rem; }
.cookie-banner p { margin: 8px 0 16px; color: var(--muted); font-size: .88rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 960px) {
  :root { --header-height: 70px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .split, .product-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 0; }
  .hero-media { min-height: 520px; border-radius: 0 0 42px 42px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .cards, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .section-sm { padding: 48px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }
  .announcement { min-height: 34px; display: grid; place-items: center; font-size: .72rem; }
  .mobile-menu { top: calc(34px + var(--header-height)); }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 58px 0 42px; }
  .hero-media { min-height: 390px; }
  .trust-row, .cards, .feature-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .split { gap: 38px; }
  .split-media img { min-height: 360px; }
  .page-hero { padding: 58px 0 42px; }
  .product-layout { gap: 36px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery-thumb { height: 62px; }
  .product-card-body { min-height: 260px; }
  .review-card { padding: 22px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-actions .button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
