/*
 * Majuprima homepage — reconstructed from the supplied visual reference.
 * Desktop artboard: 1440 px. UI text is HTML; the original image assets are local.
 * Core palette and dimensions are centralized for straightforward iteration.
 */
:root {
  --red: #a2081b;
  --red-dark: #790c17;
  --navy: #001025;
  --gold: #bb9651;
  --ink: #080e1c;
  --muted: #48494e;
  --surface: #fcfcfc;
  --line: #e8e7e5;
  --radius: .5rem;
  --ease: cubic-bezier(.2,.65,.3,1);
  color-scheme: light;
  font-size: clamp(13px, 1.111111vw, 19.2px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7.5rem; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: 'Inter', Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
button { padding: 0; border: 0; background: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
::selection { background: #ba1b2d; color: white; }
:focus-visible { outline: 3px solid #c4a05f; outline-offset: 5px; }
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.section-container { width: 85.55%; margin-left: 5.16%; }
.skip-link { position: fixed; top: -5rem; left: 1rem; background: white; color: var(--red); padding: 1rem; z-index: 100; }
.skip-link:focus { top: 1rem; }
.eyebrow { color: var(--red-dark); font-size: .875rem; line-height: 1.3; font-weight: 750; text-transform: uppercase; letter-spacing: .015em; }
.button { min-height: 2.85rem; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .65rem 1.5rem; border: 1px solid transparent; border-radius: .22rem; background: var(--red); color: white; font-size: .95rem; line-height: 1.35; font-weight: 550; transition: background .18s var(--ease), border-color .18s, box-shadow .18s, transform .18s; }
.button:hover { background: #850515; box-shadow: 0 .25rem .8rem #53040c15; }
.button:active { transform: translateY(1px); }
.button .icon { transition: transform .18s var(--ease); }
.button:hover .icon { transform: translateX(3px); }
.button-small { min-height: 2.65rem; padding: .55rem 1.3rem; font-size: .85rem; }
.button-small .icon { width: 1rem; height: 1rem; }
.button-outline-gold { border-color: var(--gold); color: white; background: transparent; }
.button-outline-gold:hover { background: #be98571a; border-color: #e0be80; }
.button-outline-red { background: transparent; border-color: #b56670; color: var(--red-dark); }
.button-outline-red:hover { background: #a2081b08; border-color: var(--red); }
.icon-button { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; transition: background .18s; }
.icon-button:hover { background: #a2081b09; }

/* Header */
.site-header { position: relative; z-index: 20; height: 6.25rem; background: #fff; }
.header-inner { height: 100%; width: 94%; margin: auto; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.brand-mark { color: var(--red); width: 2.65rem; height: 3rem; }
.brand-type { display: flex; flex-direction: column; gap: .16rem; }
.brand-name { font-size: 1.25rem; line-height: 1; letter-spacing: .015em; font-weight: 800; color: #101113; }
.brand-tagline { font-size: .44rem; letter-spacing: .26em; font-weight: 650; line-height: 1.3; color: #3c3c3c; }
.main-nav { display: flex; align-items: center; gap: 3.6rem; margin-left: auto; }
.nav-link { position: relative; padding: .8rem 0; font-size: .95rem; line-height: 1.4; font-weight: 550; white-space: nowrap; transition: color .18s; }
.nav-link:hover, .nav-link.is-active { color: var(--red); }
.nav-link.is-active::after { content: ''; position: absolute; width: 1.8rem; height: 1px; background: var(--red); left: 50%; bottom: .12rem; transform: translateX(-50%); }
.header-actions { display: flex; align-items: center; gap: 1.35rem; margin-left: 3.1rem; }
.header-contact { min-width: 9.8rem; }
.search-toggle .icon { width: 1.15rem; height: 1.15rem; stroke-width: 1.45; }
.menu-toggle { display: none; }

/* Hero. The original tiger, lock-up, and packaging form a single artwork layer;
   every headline, paragraph, call-to-action, and statistic is a real DOM element. */
.hero { height: 47rem; position: relative; overflow: hidden; isolation: isolate; background: var(--navy); color: #fff; }
.hero-background { position: absolute; z-index: -1; inset: 0; background: url('assets/hero-artwork.webp') center center / 100% 100% no-repeat; }
.hero-content { padding-top: 7.45rem; margin-left: 13.25%; width: 54%; }
.hero-eyebrow { color: #d4b479; font-size: 1.075rem; font-weight: 600; letter-spacing: .075em; }
.hero h1 { font-size: 3.55rem; line-height: 1.255; letter-spacing: -.035em; font-weight: 650; margin-top: 1.55rem; }
.hero h1 span { color: #b80c29; }
.hero-description { font-size: 1.09rem; line-height: 1.95; font-weight: 400; letter-spacing: -.025em; margin-top: 1.65rem; color: #f1f0f1; }
.hero-actions { display: flex; gap: 1.6rem; margin-top: 2.3rem; }
.button-hero { min-height: 3.55rem; min-width: 16.3rem; font-size: 1.04rem; padding: .85rem 1.55rem; }
.button-hero.button-outline-gold { min-width: 16rem; }
.hero-mobile-art { display: none; }

/* Floating statistics panel */
.statistics { display: grid; grid-template-columns: repeat(4, 1fr); width: 72.46%; min-height: 12.5rem; margin-top: -3.75rem; margin-left: 9.47%; position: relative; z-index: 2; background: #fff; border: 1px solid #eeece9; border-radius: .65rem; box-shadow: 0 .25rem 1rem #141b2510; padding: 2.1rem 0 1.65rem; }
.stat { display: flex; align-items: center; flex-direction: column; justify-content: center; gap: .48rem; position: relative; text-align: center; }
.stat + .stat::before { content: ''; position: absolute; height: 7.65rem; left: 0; top: 50%; transform: translateY(-50%); border-left: 1px solid #dfdfdf; }
.stat-icon { color: var(--gold); width: 3rem; height: 3rem; fill: none; stroke: currentColor; stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.stat strong { font-size: 2.35rem; font-weight: 650; line-height: 1.15; letter-spacing: -.04em; }
.stat > span { font-size: .93rem; font-weight: 450; line-height: 1.35; }

/* Product introduction and brand cards */
.products-section { padding-top: 3.9rem; }
.product-introduction { min-height: 18.1rem; position: relative; isolation: isolate; }
.introduction-copy { margin-left: 9.1%; position: relative; z-index: 1; }
h2 { font-size: 2.05rem; line-height: 1.28; letter-spacing: -.035em; font-weight: 650; }
.introduction-copy h2 { margin-top: .9rem; }
.introduction-copy > p:not(.eyebrow) { font-size: 1.015rem; line-height: 1.95; margin-top: 1.05rem; letter-spacing: -.022em; }
.introduction-copy .button { margin-top: 1.8rem; }
.building-image { position: absolute; width: 52.15%; height: auto; right: 0; bottom: .75rem; mix-blend-mode: multiply; pointer-events: none; }
.product-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr 1.035fr; gap: 1.6rem; margin-top: 2.2rem; scroll-margin-top: 2rem; }
.product-card { position: relative; height: 20.85rem; overflow: hidden; text-align: left; border-radius: .6rem; isolation: isolate; background: var(--navy); box-shadow: 0 .15rem .5rem #00102609; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.product-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; z-index: -1; transition: transform .45s var(--ease); }
.product-label { display: flex; flex-direction: column; position: absolute; top: 2.45rem; left: 1.75rem; right: 1rem; color: white; }
.product-wordmark { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 2.95rem; line-height: 1.08; letter-spacing: -.045em; text-shadow: 0 1px 3px #0004; }
.wordmark-doramark { font-size: 2.65rem; letter-spacing: -.06em; }
.wordmark-doramark > span { color: #e9be5d; }
.product-caption { font-size: .81rem; font-weight: 450; line-height: 1.5; margin-top: .32rem; white-space: nowrap; letter-spacing: -.035em; }
.product-card--doramark .product-caption { color: #edc568; font-weight: 500; }
.product-card--accessories .product-wordmark { font-size: 2.55rem; }
.product-card--accessories .product-caption { font-size: .78rem; }
.product-hover { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.4rem; font-size: .85rem; font-weight: 550; color: #fff; background: #021022c7; backdrop-filter: blur(8px); transform: translateY(102%); transition: transform .25s var(--ease); }
.product-card:hover { transform: translateY(-.3rem); box-shadow: 0 .7rem 1.5rem #00102618; }
.product-card:hover > img { transform: scale(1.025); }
.product-card:hover .product-hover, .product-card:focus-visible .product-hover { transform: translateY(0); }

/* News */
.news-section { padding-top: 4.95rem; padding-bottom: 2.6rem; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.1rem; }
.section-heading .eyebrow { margin-bottom: .75rem; }
.section-heading h2 { font-size: 2.03rem; }
.section-heading h2 > span { color: var(--red-dark); }
.section-heading > .button { margin-bottom: .15rem; font-size: .79rem; min-height: 2.7rem; padding-inline: 1.2rem; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.25rem; }
.news-card { overflow: hidden; border: 1px solid #eeeded; border-radius: .52rem; background: #fff; box-shadow: 0 .2rem .5rem #17233103; transition: box-shadow .2s; }
.news-card:hover { box-shadow: 0 .4rem 1.2rem #1723310c; }
.news-image { display: block; width: 100%; aspect-ratio: 2.07; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.news-card:hover .news-image img { transform: scale(1.035); }
.news-content { padding: .8rem .98rem 1.1rem; }
.news-meta { display: flex; align-items: center; justify-content: space-between; gap: .25rem; }
.category { background: var(--red); color: white; border-radius: .28rem; font-size: .51rem; line-height: 1.35; font-weight: 750; letter-spacing: .045em; padding: .14rem .43rem; text-transform: uppercase; }
.news-meta time { color: #46484c; font-size: .61rem; font-weight: 400; white-space: nowrap; }
.news-card h3 { margin-top: .65rem; font-size: .96rem; line-height: 1.55; letter-spacing: -.025em; font-weight: 650; }
.news-card h3 > button { font-weight: inherit; text-align: left; line-height: inherit; }
.news-card h3 > button:hover { color: var(--red); }
.read-more { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; line-height: 1.5; font-weight: 500; color: var(--red); margin-top: .8rem; }
.read-more .icon { width: .92rem; height: .92rem; transition: transform .2s; }
.read-more:hover .icon { transform: translateX(3px); }

/* Footer */
.site-footer { position: relative; overflow: hidden; color: #fbefed; background: linear-gradient(119deg, #96081a 0%, #860816 57%, #6a1019 100%); }
.footer-main { display: grid; grid-template-columns: 18.2rem 8.65rem 7.05rem 8.15rem 1fr; gap: 3rem; position: relative; z-index: 1; padding-top: 1.85rem; padding-bottom: 1rem; }
.brand--footer { gap: .5rem; }
.brand--footer .brand-mark { color: white; width: 2.2rem; height: 2.55rem; }
.brand--footer .brand-name { color: #fff; font-size: 1.03rem; }
.brand--footer .brand-tagline { color: #fff; font-size: .36rem; letter-spacing: .25em; }
.footer-about p { font-size: .85rem; line-height: 1.8; margin-top: .85rem; letter-spacing: -.02em; color: #efd9d8; }
.social-links { display: flex; gap: .9rem; margin-top: .65rem; }
.social-links button { color: #efd6d1; display: grid; place-items: center; transition: color .2s, transform .2s; }
.social-links button:hover { color: #fff; transform: translateY(-2px); }
.social-links .icon { width: 1.35rem; height: 1.35rem; stroke-width: 1.5; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: .7rem; padding-top: .3rem; }
.footer-column h2 { font-size: .8rem; line-height: 1.4; font-weight: 650; letter-spacing: .025em; text-transform: uppercase; margin-bottom: .4rem; color: white; }
.footer-column > a, .footer-column > button { font-size: .83rem; line-height: 1.45; color: #efdddb; text-align: left; transition: color .2s; }
.footer-column > a:hover, .footer-column > button:hover { color: white; text-decoration: underline; text-underline-offset: .2rem; }
.footer-contact { gap: .95rem; }
.footer-contact > p, .footer-contact > a { display: flex; align-items: flex-start; gap: .8rem; font-size: .85rem; line-height: 1.7; }
.footer-contact .icon { color: #d9ba79; width: 1.05rem; height: 1.05rem; margin-top: .18rem; }
.footer-tiger { position: absolute; width: 19rem; height: 17.4rem; object-fit: cover; right: -2.2rem; bottom: 0; opacity: .6; pointer-events: none; }
.footer-bottom { position: relative; z-index: 1; border-top: 1px solid #e58e8622; font-size: .78rem; line-height: 1.5; color: #e9cdcc; padding: .65rem 0 .8rem; }

/* On-page dialogs */
dialog { border: 1px solid #e4e0dc; border-radius: .8rem; color: var(--ink); background: #fff; padding: 0; box-shadow: 0 1rem 5rem #0004; max-height: 90dvh; }
dialog::backdrop { background: #000c1bc4; backdrop-filter: blur(5px); }
dialog[open] { animation: dialog-in .2s var(--ease) both; }
.preview-dialog { width: min(44rem, calc(100% - 2rem)); }
.dialog-close { position: absolute; right: .85rem; top: .85rem; z-index: 2; color: var(--ink); background: #ffffffeb; }
.dialog-close:hover { background: #f2eeee; }
.preview-image { width: 100%; max-height: 19rem; object-fit: cover; }
.preview-product-art { position: relative; width: 42%; min-width: 12rem; aspect-ratio: 120/134; margin: 2rem auto 0; border-radius: .6rem; overflow: hidden; }
.preview-product-art > img { height: 100%; width: 100%; object-fit: fill; }
.preview-product-art .product-label { top: 1.8rem; left: 1.4rem; }
.preview-product-art .product-wordmark { font-size: 2.3rem; }
.preview-product-art .product-caption { font-size: .75rem; }
.preview-copy { padding: 2rem; }
.preview-copy .eyebrow { margin-bottom: .7rem; }
.preview-copy h2 { padding-right: 1rem; font-size: 1.9rem; }
.preview-copy p { margin-top: 1rem; font-size: .95rem; line-height: 1.8; color: var(--muted); }
.preview-copy .prototype-note { border-top: 1px solid var(--line); padding-top: 1rem; font-size: .8rem; color: #75706a; }
.preview-copy .button { margin-top: 1.4rem; }
.search-dialog { width: min(42rem, calc(100% - 2rem)); padding: 1.7rem; }
.search-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.search-header h2 { font-size: 1.6rem; }
.search-field { display: flex; align-items: center; gap: .8rem; padding: .75rem 1rem; border: 1px solid #d8d4d0; border-radius: .35rem; margin-top: 1.5rem; }
.search-field:focus-within { border-color: var(--red); outline: 1px solid var(--red); }
.search-field input { min-width: 0; width: 100%; border: 0; background: transparent; outline: none; font-size: 1rem; color: var(--ink); }
.search-hint { font-size: .8rem; color: #73706a; margin-top: .8rem; }
.search-results { display: grid; margin-top: .85rem; max-height: 48vh; overflow-y: auto; }
.search-result { display: flex; align-items: center; gap: .85rem; text-align: left; padding: .8rem .5rem; border-bottom: 1px solid #eeece9; }
.search-result:hover { background: #faf7f6; }
.search-result img { width: 3.4rem; height: 3.4rem; border-radius: .35rem; object-fit: cover; }
.search-result span { display: grid; gap: .3rem; font-size: .9rem; line-height: 1.4; font-weight: 550; }
.search-result small { font-size: .71rem; font-weight: 400; color: #79716b; }
.no-results { padding: 1.5rem .2rem; font-size: .9rem; color: #79716b; line-height: 1.7; }
.noscript-note { padding: 1rem; background: #f5ebdf; font-size: .85rem; text-align: center; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Mid-size desktop / tablet: retain the visual language without shrinking the text. */
@media (min-width: 1728px) {
  .hero { height: 52.22vw; }
  .hero-content { padding-top: 8.28vw; }
}
@media (max-width: 1100px) {
  :root { font-size: 14px; }
  .header-inner { width: 94%; }
  .main-nav { gap: 1.8rem; }
  .header-actions { margin-left: 1.7rem; gap: .65rem; }
  .header-contact { min-width: 8rem; padding-inline: 1rem; }
  .brand-name { font-size: 1.1rem; }
  .brand-mark { width: 2.3rem; }
  .hero { height: 51vw; min-height: 35.5rem; }
  .hero-content { padding-top: 5rem; margin-left: 10%; width: 62%; }
  .hero h1 { font-size: 3.15rem; }
  .hero-eyebrow { font-size: .9rem; }
  .hero-description { font-size: .95rem; }
  .button-hero { min-width: 14.7rem; font-size: .95rem; }
  .button-hero.button-outline-gold { min-width: 14rem; }
  .statistics { width: 80%; min-height: 11rem; }
  .section-container { width: 89.68%; }
  .introduction-copy { margin-left: 7%; }
  .product-grid { gap: 1.2rem; }
  .product-card { height: 23.2vw; }
  .product-label { top: 2rem; left: 1.3rem; }
  .product-wordmark { font-size: 2.55rem; }
  .wordmark-doramark { font-size: 2.23rem; }
  .product-card--accessories .product-wordmark { font-size: 2.25rem; }
  .product-caption { font-size: .68rem; }
  .product-card--accessories .product-caption { font-size: .66rem; }
  .news-grid { gap: 1.35rem; }
  .news-content { padding-inline: .7rem; }
  .news-card h3 { font-size: .83rem; }
  .footer-main { gap: 1.8rem; grid-template-columns: 1.5fr .9fr .7fr .9fr 1.3fr; }
  .footer-about p { font-size: .78rem; }
  .footer-column > a, .footer-column > button, .footer-contact > p { font-size: .78rem; }
}
@media (max-width: 900px) {
  .site-header { height: 5.4rem; }
  .menu-toggle { display: grid; }
  .menu-toggle .close-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .close-icon { display: block; }
  .header-actions { margin-left: auto; gap: .7rem; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 1rem 4% 1.5rem; background: white; border-top: 1px solid var(--line); box-shadow: 0 .8rem 1.5rem #00102512; }
  .main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { text-align: left; font-size: 1rem; padding: .9rem .8rem; border-bottom: 1px solid #eeece9; }
  .nav-link.is-active::after { display: none; }
  .hero { min-height: 34rem; height: 57vw; }
  .hero-background { background-size: cover; background-position: center; }
  .hero-content { margin-left: 7%; width: 64%; padding-top: 4.5rem; }
  .hero h1 { font-size: 2.7rem; }
  .hero-description { max-width: 30rem; font-size: .93rem; }
  .hero-description .desktop-break { display: none; }
  .hero-actions { gap: 1rem; margin-top: 1.9rem; }
  .button-hero, .button-hero.button-outline-gold { min-width: 0; padding-inline: 1.1rem; font-size: .85rem; }
  .statistics { width: 88%; margin-left: 6%; padding-block: 1.6rem; min-height: 10.5rem; }
  .stat strong { font-size: 2rem; }
  .stat > span { font-size: .78rem; }
  .stat-icon { width: 2.6rem; height: 2.6rem; }
  .stat + .stat::before { height: 6.5rem; }
  .products-section { padding-top: 3.5rem; }
  .product-introduction { min-height: 18rem; }
  .building-image { width: 56%; opacity: .6; }
  .introduction-copy > p:not(.eyebrow) { font-size: .95rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .product-card { height: auto; aspect-ratio: 1 / 1.12; }
  .product-label { top: 2.6rem; left: 2rem; }
  .product-wordmark { font-size: 3.7rem; }
  .wordmark-doramark { font-size: 3.3rem; }
  .product-card--accessories .product-wordmark { font-size: 3.3rem; }
  .product-caption, .product-card--accessories .product-caption { font-size: .98rem; }
  .news-section { padding-top: 3.7rem; }
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .news-content { padding: 1rem 1.2rem 1.2rem; }
  .news-card h3 { font-size: 1rem; }
  .category { font-size: .65rem; }
  .news-meta time { font-size: .73rem; }
  .read-more { font-size: .87rem; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem 2rem; padding-block: 2.5rem; }
  .footer-about { grid-row: span 2; }
  .footer-contact { grid-column: 3; }
  .footer-about p, .footer-column > a, .footer-column > button, .footer-contact > p { font-size: .9rem; }
  .footer-column h2 { font-size: .85rem; }
  .footer-tiger { width: 20rem; height: auto; opacity: .4; }
}
/* Mobile: readable content, a complete hero lock-up, and a two-column card rhythm. */
@media (max-width: 600px) {
  :root { font-size: 16px; }
  html { scroll-padding-top: 1.5rem; }
  .site-header { height: 4.7rem; }
  .header-inner { width: 91%; }
  .brand { gap: .45rem; }
  .brand-mark { width: 1.95rem; height: 2.3rem; }
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { font-size: .365rem; letter-spacing: .23em; }
  .header-contact { display: none; }
  .header-actions { gap: .25rem; }
  .icon-button { width: 2.45rem; height: 2.45rem; }
  .hero { height: auto; min-height: 0; padding-bottom: 2rem; }
  .hero-background { background-size: auto 35rem; background-position: left top; opacity: .4; mask-image: linear-gradient(#000 0%, #000 45%, transparent 67%); }
  .hero::after { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, #00102515, #001025bb); }
  .hero-content { margin: 0 6%; width: auto; padding-top: 3rem; }
  .hero-eyebrow { font-size: .66rem; letter-spacing: .085em; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.65rem); line-height: 1.3; letter-spacing: -.04em; margin-top: 1rem; }
  .hero-description { font-size: .86rem; line-height: 1.9; margin-top: 1.1rem; max-width: 27rem; letter-spacing: -.02em; }
  .hero-actions { gap: .7rem; margin-top: 1.5rem; flex-wrap: wrap; }
  .button-hero, .button-hero.button-outline-gold { min-height: 2.9rem; padding: .7rem .85rem; font-size: .73rem; }
  .button-hero .icon { width: .9rem; }
  .hero-mobile-art { display: block; width: min(68%, 19rem); height: auto; margin: .9rem auto 0; mask-image: linear-gradient(transparent 0%, #000 6%, #000 96%, transparent 100%); }
  .statistics { margin: -1.3rem 5% 0; width: 90%; grid-template-columns: repeat(2, 1fr); padding: .4rem 1rem; min-height: 0; border-radius: .55rem; }
  .stat { padding: 1.15rem .2rem; gap: .4rem; }
  .stat strong { font-size: 1.85rem; }
  .stat > span { font-size: .72rem; }
  .stat-icon { width: 2.3rem; height: 2.3rem; }
  .stat + .stat::before { height: 5.7rem; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-container { width: 90%; margin-left: 5%; }
  .products-section { padding-top: 2.5rem; }
  .product-introduction { min-height: 0; padding-bottom: 5.4rem; }
  .introduction-copy { margin-inline: 6%; }
  .eyebrow { font-size: .65rem; letter-spacing: .025em; }
  h2 { font-size: 1.6rem; line-height: 1.3; }
  .introduction-copy h2 { margin-top: .65rem; }
  .introduction-copy > p:not(.eyebrow) { font-size: .85rem; line-height: 1.9; margin-top: .9rem; max-width: 23rem; }
  .desktop-break { display: none; }
  .introduction-copy .button { margin-top: 1.2rem; }
  .button-small { font-size: .75rem; min-height: 2.7rem; padding: .65rem 1rem; }
  .building-image { width: 85%; max-height: 8.5rem; object-fit: cover; right: 0; bottom: .5rem; opacity: .5; mask-image: linear-gradient(90deg, transparent, #000 30%); }
  .product-grid { gap: .8rem; margin-top: .7rem; }
  .product-card { border-radius: .4rem; }
  .product-label { top: 1.5rem; left: .95rem; right: .5rem; }
  .product-wordmark { font-size: clamp(1.55rem, 6.6vw, 2.9rem); }
  .wordmark-doramark { font-size: clamp(1.4rem, 5.85vw, 2.7rem); }
  .product-card--accessories .product-wordmark { font-size: clamp(1.4rem, 5.7vw, 2.55rem); }
  .product-caption, .product-card--accessories .product-caption { font-size: clamp(.49rem, 2.3vw, .75rem); margin-top: .2rem; }
  .product-hover { display: none; }
  .news-section { padding-top: 2.75rem; padding-bottom: 2rem; }
  .section-heading { flex-wrap: wrap; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
  .section-heading .eyebrow { margin-bottom: .6rem; }
  .section-heading h2 { font-size: 1.43rem; }
  .section-heading > .button { min-height: 2.3rem; font-size: .69rem; padding: .5rem .85rem; }
  .news-grid { gap: .85rem; }
  .news-card { border-radius: .4rem; }
  .news-image { aspect-ratio: 1.7; }
  .news-content { padding: .7rem .65rem .8rem; }
  .news-meta { flex-wrap: wrap; gap: .45rem; }
  .category { font-size: .46rem; padding: .14rem .35rem; }
  .news-meta time { font-size: .55rem; }
  .news-card h3 { font-size: .8rem; line-height: 1.6; margin-top: .65rem; min-height: 3.5em; }
  .news-card h3 br { display: none; }
  .read-more { font-size: .66rem; gap: .25rem; margin-top: .7rem; }
  .read-more .icon { width: .78rem; height: .78rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; padding-top: 2rem; padding-bottom: 1.8rem; }
  .footer-about { grid-column: 1 / -1; grid-row: auto; }
  .brand--footer .brand-mark { width: 2.2rem; }
  .brand--footer .brand-name { font-size: 1.1rem; }
  .brand--footer .brand-tagline { font-size: .4rem; }
  .footer-about p { font-size: .8rem; max-width: 20rem; line-height: 1.9; }
  .social-links { gap: 1rem; margin-top: 1rem; }
  .footer-column { gap: .8rem; }
  .footer-column h2 { font-size: .71rem; margin-bottom: .25rem; }
  .footer-column > a, .footer-column > button, .footer-contact > p { font-size: .76rem; line-height: 1.7; }
  .footer-contact { grid-column: auto; }
  .footer-contact > p, .footer-contact > a { gap: .55rem; }
  .footer-contact .icon { width: .88rem; height: .88rem; }
  .footer-tiger { width: 16rem; right: -5rem; bottom: 1rem; opacity: .35; }
  .footer-bottom { font-size: .61rem; padding: .8rem 0 1rem; }
  .preview-copy { padding: 1.5rem; }
  .preview-copy h2 { font-size: 1.4rem; }
  .preview-copy p { font-size: .88rem; }
  .preview-copy .prototype-note { font-size: .75rem; }
  .search-dialog { padding: 1.2rem; }
  .search-header h2 { font-size: 1.2rem; }
  .search-field input { font-size: 16px; }
  .search-result span { font-size: .8rem; }
}
@media (max-width: 360px) {
  .hero-actions { gap: .5rem; }
  .button-hero, .button-hero.button-outline-gold { padding-inline: .65rem; font-size: .68rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-image { aspect-ratio: 2.2; }
  .news-card h3 { min-height: 0; font-size: .95rem; }
  .news-meta time { font-size: .65rem; }
  .category { font-size: .6rem; }
  .read-more { font-size: .75rem; }
  .footer-main { column-gap: 1rem; }
  .footer-contact > a { font-size: .69rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (min-width: 601px) and (max-width: 900px) {
  .hero-background { background-size: auto 100%; background-position: left center; mask-image: linear-gradient(to right, #000 34%, transparent 65%); }
  .hero-content { position: relative; z-index: 1; }
  .hero h1 { font-size: clamp(1.9rem, 4.6vw, 2.7rem); }
  .hero-description { max-width: 92%; }
  .hero-mobile-art { display: block; position: absolute; right: 1.5%; top: 3.4rem; width: 31%; height: auto; mask-image: linear-gradient(transparent 0%, #000 5%, #000 95%, transparent 100%); }
}
