@charset "UTF-8";
:root {
  color-scheme: light;
  --red: #b8232b;
  --red-hover: #981a21;
  --ink: #1c1c1e;
  --muted: #626267;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --border: #e5e5e7;
  --dark: #151515;
  --radius: 10px;
  --content: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, p, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { cursor: pointer; font: inherit; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button:focus-visible, a:focus-visible { outline: 3px solid #d34b52; outline-offset: 4px; }
.container { width: calc(100% - 64px); max-width: var(--content); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: -80px; left: 16px; padding: 12px 18px; background: #fff; color: #111; }
.skip-link:focus { top: 12px; }
.site-header { position: relative; z-index: 5; background: var(--dark); color: #fff; border-bottom: 1px solid #ffffff1c; }
.header-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; padding-block: 6px; line-height: 1; }
.brand-small { font-size: 12px; letter-spacing: 3.7px; color: #c5c5c7; margin-bottom: 4px; }
.wordmark { color: #fff; font-size: 30px; font-weight: 700; letter-spacing: -1.5px; }
.wordmark>span { color: #d43740; }
.wordmark .brand-dot { margin-left: 1px; }
#main-nav { display: flex; gap: 30px; align-items: center; font-size: 14px; }
#main-nav>a:not(.button) { display: inline-flex; align-items: center; min-height: 44px; color: #e3e3e5; }
#main-nav>a:not(.button):hover { color: #f7888e; }
#main-nav .home-link { position: relative; }
.home-link:after { position: absolute; bottom: 4px; left: 0; width: 17px; height: 2px; content: ''; background: #d43740; }
.button { min-height: 46px; border: 1px solid transparent; border-radius: 8px; display: inline-flex; justify-content: center; align-items: center; gap: 22px; padding: 11px 20px; font-size: 14px; font-weight: 600; line-height: 1.5; transition: background .2s, border-color .2s; }
.button span { font-size: 19px; font-weight: 400; }
.button-red { background: var(--red); border-color: var(--red); color: #fff; }
.button-red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.button-outline { color: #fff; border-color: #777; background: #19191980; }
.button-outline:hover { background: #343434; border-color: #bbb; }
.nav-cta { margin-left: 12px; }
.menu-toggle { display: none; }
.hero { background: #151515; color: #fff; overflow: hidden; }
.hero-inner { min-height: 570px; position: relative; display: flex; align-items: center; }
.hero-art { position: absolute; top: 0; bottom: 0; right: 0; width: min(1030px, 91%); }
.hero-art img { object-fit: contain; object-position: right center; }
.hero-art:after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, #151515 0%, #151515cc 14%, #15151555 33%, transparent 56%); }
.hero-copy { position: relative; z-index: 1; width: 54%; padding-block: 58px 76px; }
.eyebrow { font-size: 12px; letter-spacing: 1.7px; font-weight: 600; line-height: 1.7; color: var(--red); }
.hero .eyebrow { color: #d9d9dc; display: flex; align-items: center; gap: 10px; font-size: 12px; }
.hero .eyebrow>span { width: 21px; height: 2px; flex-shrink: 0; background: #d43740; }
h1 { font-size: clamp(38px, 3.9vw, 55px); line-height: 1.14; font-weight: 700; letter-spacing: -1.9px; margin-top: 22px; }
h1>span { color: #fff; }
.hero-description { font-size: 16px; color: #d3d3d6; margin-top: 22px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.hero-image-note { position: absolute; bottom: 20px; right: 0; color: #c8c8cb; font-size: 12px; text-shadow: 0 1px 5px #000; }
.about-section { padding-block: 61px 42px; text-align: center; }
h2 { font-size: clamp(27px, 2.55vw, 35px); line-height: 1.25; font-weight: 700; letter-spacing: -1px; }
.about-section h2 { margin-top: 12px; }
.about-section>p:not(.eyebrow) { max-width: 850px; margin: 18px auto 0; color: #515155; font-size: 16px; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 13px; min-height: 44px; color: var(--red); margin-top: 12px; font-size: 14px; font-weight: 600; }
.text-link:hover { color: var(--red-hover); text-decoration: underline; text-underline-offset: 5px; }
.products-section { padding-block: 20px 62px; }
.section-heading { text-align: center; margin-bottom: 30px; }
.section-heading h2 { margin-top: 10px; }
.section-heading>p:last-child { color: var(--muted); margin-top: 10px; font-size: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { border: 1px solid var(--border); background: #fff; border-radius: var(--radius); overflow: hidden; min-width: 0; transition: border-color .2s, box-shadow .2s; }
.product-card:hover { border-color: #d7babc; box-shadow: 0 8px 28px #1c1c1e0a; }
.product-image { background: #f3f3f3; aspect-ratio: 1/1; position: relative; overflow: hidden; }
.product-image img { object-fit: contain; transition: transform .4s; }
.product-card:hover .product-image img { transform: scale(1.035); }
.category-label { position: absolute; top: 12px; left: 12px; font-size: 12px; letter-spacing: 1.2px; color: #5e5e63; border: 1px solid #dddddf; background: #ffffffe6; padding: 4px 7px; border-radius: 4px; }
.product-content { padding: 20px 14px 18px; text-align: center; }
.product-content h3 { font-size: 19px; font-weight: 600; line-height: 1.35; letter-spacing: -.35px; }
.product-content>p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.65; min-height: 46px; }
.model-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.model-list button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 44px; padding: 8px 10px; border: 1px solid #dddddf; border-radius: 6px; background: #fff; color: #343438; font-size: 14px; line-height: 1.5; transition: color .2s, border-color .2s, background .2s; }
.model-list button:hover { border-color: var(--red); color: var(--red); background: #fff7f7; }
.model-list .category-button { padding-inline: 13px; }
.model-list button>span { color: var(--red); }
.catalogue-note { color: #747478; font-size: 12px; text-align: center; margin-top: 24px; }
.everyday-section { background: radial-gradient(ellipse at 70% 10%, #302527 0%, transparent 64%), #191919; color: #fff; padding-block: 46px; }
.everyday-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.everyday-heading .eyebrow { color: #d5969a; font-size: 12px; }
.everyday-heading h2 { margin-top: 9px; font-size: 30px; }
.everyday-heading>p { font-size: 14px; color: #bcbcc0; padding-bottom: 4px; }
.everyday-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 35px; }
.everyday-grid>a { position: relative; border-right: 1px solid #ffffff26; padding: 7px 24px 7px 26px; }
.everyday-grid>a:first-child { padding-left: 0; }
.everyday-grid>a:last-child { border-right: 0; }
.everyday-grid svg { width: 34px; height: 34px; fill: none; stroke: #e7e7eb; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.everyday-grid h3 { font-size: 16px; font-weight: 500; margin-top: 15px; line-height: 1.4; }
.everyday-grid p { font-size: 14px; color: #b4b4bb; margin-top: 4px; }
.feature-arrow { position: absolute; top: 7px; right: 26px; color: #96969d; font-size: 21px; }
.everyday-grid>a:hover h3, .everyday-grid>a:hover .feature-arrow { color: #f19ba1; }
.site-footer { background: var(--dark); color: #fff; }
.footer-main { display: flex; align-items: center; gap: 30px; padding-block: 30px; }
.footer-main>p { font-size: 14px; color: #b3b3b9; margin-left: 22px; }
.back-top { margin-left: auto; display: inline-flex; gap: 20px; min-height: 44px; align-items: center; font-size: 14px; color: #d0d0d4; }
.back-top span { font-size: 22px; }
.footer-bottom { padding-block: 20px; border-top: 1px solid #ffffff1c; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #a5a5ac; font-size: 12px; }
.footer-bottom nav { display: flex; gap: 25px; }
.footer-bottom nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; }
.footer-bottom nav a:hover { color: #fff; }
dialog { padding: 0; width: min(820px, calc(100% - 24px)); max-height: 90dvh; overflow: auto; border: 1px solid #ddd; border-radius: 12px; background: #fff; color: var(--ink); }
dialog::backdrop { background: #08080cbb; backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 14px; right: 14px; z-index: 4; border: 1px solid #ddd; background: #fffffff0; border-radius: 50%; width: 44px; height: 44px; font-size: 18px; }
.dialog-image { height: 310px; position: relative; background: #f5f5f5; }
.dialog-image img { object-fit: contain; }
.image-note { position: absolute; bottom: 12px; right: 16px; font-size: 12px; color: #666; padding: 3px 8px; border-radius: 4px; background: #ffffffd9; }
.dialog-content { padding: 28px 32px 32px; }
.dialog-content h2 { font-size: 30px; margin-top: 9px; }
.dialog-content>p:not(.eyebrow) { color: var(--muted); margin-top: 16px; font-size: 16px; }
.dialog-content dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 28px; border-block: 1px solid var(--border); padding-block: 18px; margin-block: 22px; font-size: 14px; }
.dialog-content dt { color: var(--muted); }
.dialog-content dd { margin: 0; text-align: right; }
.dialog-content .details-note { font-size: 13px!important; }
.dialog-done { margin-top: 22px; }
@media (min-width: 1600px) {
  .hero-art { right: 0; width: 1090px; }
}
@media (max-width: 1100px) {
  #main-nav { gap: 20px; }
  .hero-inner { min-height: 535px; }
  .hero-copy { width: 56%; }
  .hero-art { right: 0; width: 90%; }
  h1 { font-size: 45px; }
  .product-grid { gap: 14px; }
  .product-content { padding-inline: 10px; }
  .product-content h3 { font-size: 18px; }
  .model-list { gap: 5px; }
  .model-list button { padding-inline: 7px; }
  .everyday-heading { display: block; }
  .everyday-heading>p { margin-top: 10px; }
}
@media (max-width: 900px) {
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 80px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; border: 1px solid #646467; background: transparent; color: #fff; border-radius: 7px; padding: 8px 12px; font-size: 14px; }
  #main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 16px 20px; background: #1d1d1f; border-bottom: 1px solid #444; flex-direction: column; align-items: stretch; gap: 8px; }
  #main-nav.is-open { display: flex; }
  #main-nav>a:not(.button) { padding-inline: 12px; }
  .home-link:after { display: none; }
  .nav-cta { margin-left: 0; }
  .hero-copy { width: 65%; }
  .hero-art { width: 100%; right: 0; opacity: .75; }
  .hero-art:after { background: linear-gradient(90deg, #151515 0%, #151515bb 25%, transparent 65%); }
  h1 { font-size: 44px; }
  .hero-actions { max-width: 420px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .product-content { padding: 20px; }
  .product-content h3 { font-size: 21px; }
  .product-content>p { min-height: 0; }
  .model-list button { padding-inline: 14px; }
  .everyday-grid>a { padding-inline: 16px; }
  .feature-arrow { right: 15px; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 16px; }
  .container { width: calc(100% - 16px); }
  .header-inner { min-height: 76px; padding-inline: 6px; }
  .wordmark { font-size: 27px; }
  .brand-small { font-size: 12px; letter-spacing: 3px; }
  .hero-inner { min-height: 0; display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { width: 100%; padding: 34px 8px 0; }
  .hero .eyebrow { font-size: 12px; letter-spacing: 1.3px; }
  h1 { font-size: clamp(32px, 7.6vw, 43px); letter-spacing: -1.15px; margin-top: 17px; }
  .desktop-break { display: none; }
  .hero-description { font-size: 16px; margin-top: 17px; }
  .hero-actions { margin-top: 20px; gap: 8px; max-width: none; }
  .hero-actions .button { padding-inline: 14px; font-size: 14px; gap: 13px; }
  .hero-art { position: relative; width: calc(100% + 16px); right: auto; top: auto; bottom: auto; align-self: center; height: auto; aspect-ratio: 1.5; order: 2; opacity: 1; margin-top: -3px; }
  .hero-art img { object-fit: cover; object-position: center; }
  .hero-art:after { background: linear-gradient(180deg, #151515 0%, #15151588 8%, transparent 30%); }
  .hero-image-note { position: relative; bottom: auto; right: auto; order: 3; text-align: right; font-size: 12px; padding: 0 8px 14px; margin-top: -15px; z-index: 1; }
  .about-section { padding: 36px 10px 27px; }
  h2 { font-size: 28px; letter-spacing: -.65px; }
  .eyebrow { font-size: 12px; letter-spacing: 1.2px; }
  .about-section>p:not(.eyebrow) { margin-top: 15px; line-height: 1.8; }
  .products-section { padding-block: 16px 35px; }
  .section-heading { padding-inline: 8px; margin-bottom: 22px; }
  .section-heading>p:last-child { font-size: 16px; }
  .product-grid { gap: 12px; }
  .product-content { padding: 16px 10px; }
  .product-content h3 { font-size: 18px; min-height: 49px; display: flex; justify-content: center; align-items: center; }
  .product-content>p { font-size: 14px; min-height: 47px; }
  .model-list { gap: 6px; margin-top: 12px; }
  .model-list button { font-size: 14px; padding: 8px; min-height: 44px; }
  .model-list .category-button { gap: 9px; padding-inline: 10px; }
  .category-label { font-size: 12px; letter-spacing: .6px; left: 8px; top: 8px; padding: 3px 6px; }
  .catalogue-note { padding-inline: 10px; font-size: 12px; margin-top: 19px; }
  .everyday-section { padding-block: 30px; }
  .everyday-heading { padding-inline: 8px; }
  .everyday-heading h2 { font-size: 28px; }
  .everyday-heading .eyebrow { font-size: 12px; }
  .everyday-heading>p { font-size: 14px; }
  .everyday-grid { grid-template-columns: 1fr 1fr; margin-top: 22px; row-gap: 22px; }
  .everyday-grid>a, .everyday-grid>a:first-child { padding: 6px 12px; }
  .everyday-grid>a:nth-child(2) { border-right: 0; }
  .everyday-grid h3 { margin-top: 11px; font-size: 16px; }
  .everyday-grid p { font-size: 14px; }
  .feature-arrow { right: 14px; }
  .footer-main { padding: 26px 8px; gap: 20px; flex-wrap: wrap; }
  .footer-main>p { order: 3; width: 100%; margin-left: 0; font-size: 14px; }
  .back-top { font-size: 14px; gap: 12px; }
  .footer-bottom { padding: 17px 8px; align-items: flex-start; flex-direction: column; gap: 5px; }
  .footer-bottom nav { gap: 22px; }
  .dialog-image { height: 240px; }
  .dialog-content { padding: 23px 20px; }
  .dialog-content h2 { font-size: 27px; }
}
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 1.25; }
  .product-content h3 { min-height: 0; font-size: 22px; }
  .product-content>p { min-height: 0; }
  .model-list button { padding-inline: 18px; }
  .hero-actions .button { font-size: 13px; padding-inline: 12px; }
  .hero-description br { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition: none!important; animation: none!important; }
}
