@charset "UTF-8";

:root {
  --paper: #f8f5f0;
  --white: #fff;
  --ink: #272522;
  --muted: #706a62;
  --line: #e8e0d6;
  --gold: #b88a4a;
  --gold-dark: #96703c;
  --charcoal: #202221;
  --shell: 1140px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --shadow: 0 12px 35px rgba(54, 43, 30, .11);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.07; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2rem, 3vw, 3rem); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.shell-wide { width: min(calc(100% - 24px), 1240px); margin-inline: auto; }
.section { padding-block: 72px; }
.section-border { border-top: 1px solid var(--line); }
.centered { text-align: center; }
.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; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: .65rem; color: var(--gold-dark); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.site-header { position: sticky; z-index: 50; top: 0; height: 78px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(215,205,192,.7); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { min-width: 255px; display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.48rem; white-space: nowrap; }
.brand-subtitle { margin: 8px 0 0 50px; font-size: .57rem; letter-spacing: .17em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(17px, 2vw, 31px); flex: 1; }
.main-nav a { padding: 28px 0 24px; font-family: var(--serif); font-size: .9rem; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-dark); border-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.phone { display: flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 700; white-space: nowrap; }
.phone svg { width: 18px; fill: var(--gold); }
.button { min-height: 48px; padding: 12px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: linear-gradient(135deg, var(--gold), #a87c3f); border: 1px solid var(--gold); border-radius: 4px; font-family: var(--serif); font-size: .95rem; box-shadow: 0 5px 14px rgba(154,112,59,.16); transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(154,112,59,.25); background: linear-gradient(135deg, #c09458, var(--gold-dark)); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .82rem; }
.button-ghost, .button-light { color: var(--ink); background: rgba(255,255,255,.72); border-color: #bca98d; box-shadow: none; }
.button-ghost:hover, .button-light:hover { color: #fff; background: var(--gold-dark); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 610px; overflow: hidden; }
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-coya-wide-v3.jpg");
  background-image: image-set(url("assets/images/hero-coya-wide-v3.webp") type("image/webp"), url("assets/images/hero-coya-wide-v3.jpg") type("image/jpeg"));
  background-position: center 60%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,247,242,.98) 0%, rgba(250,247,242,.88) 29%, rgba(250,247,242,.24) 58%, rgba(0,0,0,.05) 100%); }
.hero-content { position: relative; z-index: 1; min-height: 610px; padding-block: 64px 32px; display: flex; flex-direction: column; align-items: flex-start; }
.hero .eyebrow { display: none; }
.hero h1 { max-width: 560px; margin-bottom: clamp(20px, 2vw, 28px); font-size: clamp(3.35rem, 5.3vw, 5.4rem); letter-spacing: -.045em; }
.hero-lead { margin-bottom: 10px; color: var(--gold-dark); font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; }
.hero-copy { margin-bottom: 25px; font-size: .94rem; color: #4c4843; }
.button-row { display: flex; gap: 12px; }
.hero-facts { width: 100%; margin: 30px 0 0; padding: 0; display: flex; gap: 10px; list-style: none; }
.hero-facts li { min-height: 40px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.9); border: 1px solid rgba(205,193,177,.7); border-radius: 999px; box-shadow: 0 4px 12px rgba(40,34,27,.07); font-size: .77rem; white-space: nowrap; }
.icon { width: 19px; height: 19px; display: inline-grid; place-items: center; color: var(--gold); border: 1px solid currentColor; border-radius: 50%; }
.icon::after { font-size: .68rem; }
.icon-plan::after { content: "\2302"; }.icon-pin::after { content: "\2316"; }.icon-gift::after { content: "\2659"; }.icon-person::after { content: "\25CB"; }

.studio { position: relative; z-index: 2; margin-top: -6px; padding: 56px 62px 46px; display: grid; grid-template-columns: .85fr 1.25fr; gap: 66px; background: #fff; border: 1px solid var(--line); border-radius: 12px 12px 0 0; box-shadow: var(--shadow); }
.studio-copy p:not(.eyebrow) { max-width: 485px; margin-bottom: .6rem; color: #5e5952; font-size: .91rem; }
.studio-values { margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; text-align: center; }
.studio-values li { padding: 0 9px; color: #4d4944; font-family: var(--serif); font-size: .83rem; line-height: 1.3; border-right: 1px solid var(--line); }
.studio-values li:last-child { border-right: 0; }
.studio-values span { height: 37px; display: block; color: var(--gold); font-size: 2rem; line-height: 1; }
.image-frame { margin: 0; overflow: hidden; border-radius: 9px; }
.image-frame img { width: 100%; height: 100%; min-height: 370px; object-fit: cover; }

.why { padding-top: 54px; }
.why h2 { margin-bottom: 30px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.benefit-card { min-height: 128px; padding: 22px 20px; display: flex; gap: 16px; background: linear-gradient(135deg, #fff, #f8f4ef); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 4px 13px rgba(46,39,31,.035); }
.benefit-icon { flex: 0 0 34px; color: var(--gold); font-size: 2.1rem; line-height: 1; }
.benefit-card h3 { margin: 0 0 9px; font-size: 1.08rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.55; }

.news { background: #fff; }
.section-heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2 { margin-bottom: 0; }
.news .section-heading { justify-content: center; text-align: center; }
.text-link { width: max-content; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); font-family: var(--serif); font-size: .91rem; }
.text-link span { transition: transform .2s; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }
.news-all-link { margin: 28px auto 0; display: flex; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card { min-width: 0; display: grid; grid-template-columns: 42% 1fr; overflow: hidden; background: linear-gradient(135deg, #faf8f5, #f3eee8); border: 1px solid var(--line); border-radius: 8px; }
.news-media { min-height: 218px; padding: 18px; display: grid; place-items: center; overflow: hidden; background: #ece7df; }
.news-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s; }
.news-card:hover .news-media img { transform: scale(1.035); }
.news-content { padding: 22px 20px; display: flex; flex-direction: column; align-items: flex-start; }
.news-brand { margin-bottom: 8px; color: var(--gold-dark); font-size: .61rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.news-card h3 { margin-bottom: 11px; font-size: 1.3rem; }
.news-card h3 a:hover, .news-card h3 a:focus-visible { color: var(--gold-dark); }
.news-content > p:not(.news-brand) { margin-bottom: 17px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.news-content .text-link { margin-top: auto; font-size: .78rem; }

.assortment { background: rgba(255,255,255,.54); }
.assortment > .shell > .eyebrow { text-align: center; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-card { position: relative; min-height: 182px; padding: 22px; display: flex; align-items: flex-end; overflow: hidden; border-radius: 7px; color: #fff; background: #71695d var(--image) center / cover no-repeat; box-shadow: inset 0 -90px 80px -35px rgba(0,0,0,.78); }
.category-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.38)); transition: background .25s, transform .35s; }
.category-card::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: inherit; }
.category-card:hover::before { background: linear-gradient(180deg, rgba(184,138,74,.06), rgba(0,0,0,.53)); }
.category-card span { position: relative; z-index: 1; font-family: var(--serif); font-size: 1.32rem; line-height: 1.1; }
.category-card small, .category-card em { margin-top: 7px; display: block; font-family: var(--sans); font-size: .74rem; font-style: normal; line-height: 1.35; }
.category-card b { margin-left: 5px; font-weight: 400; transition: margin-left .2s; }
.category-card:hover b { margin-left: 10px; }
.category-cta { box-shadow: inset 0 -110px 100px -25px rgba(51,32,15,.76); }
.category-cta small { max-width: 180px; }
.category-cta em { color: #f5d6a7; }

.brands { background: #fff; }
.brands h2, .inspiration h2 { font-size: 1.75rem; }
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.brand-card { min-height: 138px; padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; border-radius: 7px; background-color: #eee; background-size: cover; background-position: center; }
.brand-dornbracht { color: #fff; background-image: linear-gradient(90deg, rgba(24,25,24,.92) 0 43%, rgba(24,25,24,.06) 80%), url("assets/images/03_6039_5_anschnitt.jpg"); }
.brand-villeroy-boch {
  color: #282725;
  background-image: linear-gradient(90deg, rgba(250,249,247,.97) 0 46%, rgba(250,249,247,.38) 78%), url("assets/images/villeroy-boch-subway.jpg");
  background-image: linear-gradient(90deg, rgba(250,249,247,.97) 0 46%, rgba(250,249,247,.38) 78%), image-set(url("assets/images/villeroy-boch-subway.webp") type("image/webp"), url("assets/images/villeroy-boch-subway.jpg") type("image/jpeg"));
  background-position: center;
}
.brand-card strong { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; letter-spacing: .08em; }
.brand-card span { margin-top: 12px; font-size: .77rem; line-height: 1.5; }
.brand-list { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 5px 10px; color: #66625d; font-family: var(--serif); font-size: .86rem; }
.brand-list > span { flex-basis: 100%; margin-bottom: 4px; color: var(--gold-dark); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.brand-list a { position: relative; padding: 8px 10px 9px; border-radius: 4px; color: #5f5b56; font-family: var(--sans); font-size: .92rem; font-weight: 500; transition: color .2s, background-color .2s, transform .2s; }
.brand-list a::after { content: ""; position: absolute; right: 10px; bottom: 5px; left: 10px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.brand-list a:hover, .brand-list a:focus-visible { color: var(--gold-dark); background: rgba(180,135,71,.08); transform: translateY(-1px); }
.brand-list a:hover::after, .brand-list a:focus-visible::after { transform: scaleX(1); }

.inspiration { padding-top: 36px; background: #fbfaf8; }
.inspiration-row { position: relative; display: grid; grid-template-columns: 1.25fr .72fr .72fr 1.25fr; gap: 7px; }
.inspiration-row img { width: 100%; height: 145px; object-fit: cover; border-radius: 6px; }
.floating-button { position: absolute; right: -58px; top: 49px; min-height: 48px; background: #fff; }

.visit { margin-top: 0; margin-bottom: 0; padding: 12px 44px 12px 12px; display: grid; grid-template-columns: 370px 1fr auto; align-items: center; gap: 44px; background: linear-gradient(90deg, #d5c9ba, #eadfce); border-radius: 8px 8px 0 0; }
.visit > img { width: 100%; height: 145px; object-fit: cover; border-radius: 3px; }
.visit h2 { margin-bottom: 14px; font-size: 1.9rem; }
.visit-details { display: grid; grid-template-columns: 1.2fr 1fr; gap: 7px 28px; }
.visit-details p { display: flex; align-items: flex-start; margin: 0; color: #5e584f; font-size: .77rem; line-height: 1.45; }
.visit-details .visit-icon { flex: 0 0 22px; color: var(--gold-dark); font-size: 1rem; line-height: 1.15; }
.visit-details .visit-hours { display: grid; grid-template-columns: auto auto; column-gap: 10px; }
.visit-button { white-space: nowrap; }

.site-footer { color: #ddd8d0; background: radial-gradient(circle at 50% -100%, #454743, #1f2221 60%); }
.footer-main { padding: 28px 0 18px; display: grid; grid-template-columns: 1.35fr .62fr .62fr 1.25fr auto; gap: 35px; align-items: start; }
.footer-brand { padding-right: 35px; border-right: 1px solid rgba(255,255,255,.15); }
.footer-brand .brand-name { color: #fff; font-size: 1.1rem; }
.footer-brand .brand-subtitle { display: block; margin: 5px 0 0 33px; font-size: .45rem; }
.footer-brand p { margin: 8px 0 0; font-size: .66rem; }
.footer-main nav, .footer-main address { display: flex; flex-direction: column; gap: 4px; font-size: .72rem; font-style: normal; }
.footer-main a:hover { color: #fff; }
.socials { display: flex; gap: 9px; }
.socials a { width: 32px; height: 32px; display: grid; place-items: center; color: #282825; background: #b9aa93; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transition: color .2s, background .2s, transform .2s; }
.socials svg { width: 16px; height: 16px; display: block; fill: currentColor; }
.socials a:hover, .socials a:focus-visible { color: #fff; background: var(--gold-dark); transform: translateY(-2px); }
.socials a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.footer-bottom { min-height: 44px; padding-block: 11px; display: flex; justify-content: center; gap: 30px; color: #8e8e89; border-top: 1px solid rgba(255,255,255,.09); font-size: .62rem; }

@media (max-width: 1320px) {
  .site-header .shell { width: min(calc(100% - 30px), 1240px); }
  .header-inner { gap: 15px; }
  .brand { min-width: 220px; }
  .main-nav { gap: 13px; }
  .header-actions { gap: 14px; }
  .header-actions .button { padding-inline: 14px; }
}

@media (max-width: 1120px) {
  .header-inner { gap: 15px; }
  .brand { min-width: 220px; }
  .brand-name { font-size: 1.25rem; }
  .main-nav { gap: 14px; }
  .header-actions .phone span { display: none; }
  .studio { padding-inline: 40px; gap: 38px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card { grid-template-columns: 1fr; }
  .news-media { min-height: 160px; }
  .visit { grid-template-columns: 300px 1fr; }
  .visit-button { grid-column: 2; width: max-content; margin-top: -55px; margin-left: auto; }
  .floating-button { right: 14px; }
}

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .menu-toggle { display: block; order: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .header-actions { margin-left: auto; }
  .header-actions .phone { display: none; }
  .main-nav { position: fixed; inset: 68px 0 auto; padding: 15px 20px 22px; display: grid; gap: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 18px 30px rgba(32,30,28,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s, transform .2s, visibility .2s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 11px 0; font-size: 1rem; }
  .hero, .hero-content { min-height: 590px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(250,247,242,.97), rgba(250,247,242,.75) 55%, rgba(0,0,0,.1)); }
  .hero h1 { font-size: clamp(3rem, 8vw, 4.5rem); }
  .hero-facts { flex-wrap: wrap; }
  .studio { grid-template-columns: 1fr; }
  .studio-visual { order: -1; }
  .image-frame img { min-height: 320px; max-height: 470px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-list { justify-content: center; padding-bottom: 8px; }
  .visit { gap: 28px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main address { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .shell-wide { width: min(calc(100% - 16px), 1240px); }
  .section { padding-block: 52px; }
  .brand { min-width: 0; }
  .brand-name { font-size: 1.05rem; }
  .brand-subtitle { margin: 6px 0 0 30px; font-size: .44rem; }
  .header-actions .button { display: none; }
  .hero { min-height: 660px; }
  .hero-image { background-position: 36% 60%; }
  .hero-overlay { background: linear-gradient(180deg, rgba(250,247,242,.96) 0%, rgba(250,247,242,.9) 46%, rgba(250,247,242,.23) 78%, rgba(0,0,0,.16)); }
  .hero-content { min-height: 660px; padding-top: 50px; }
  .hero .eyebrow { display: block; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero-copy { font-size: .87rem; }
  .desktop-only { display: none; }
  .button-row { width: 100%; }
  .button-row .button { flex: 1; padding-inline: 12px; font-size: .84rem; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  .hero-facts li { padding-inline: 10px; justify-content: flex-start; font-size: .68rem; white-space: normal; }
  .studio { margin-top: 0; padding: 16px 20px 42px; gap: 32px; border-radius: 0; }
  .studio h2 { font-size: 2.25rem; }
  .studio-values { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .studio-values li:nth-child(2) { border-right: 0; }
  .studio-values li { font-size: .85rem; }
  .image-frame img { min-height: 245px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 112px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 40% 1fr; }
  .news-media { min-height: 190px; padding: 14px; }
  .news-content { padding: 18px 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 210px; }
  .brand-cards { grid-template-columns: 1fr; }
  .brand-card { min-height: 155px; }
  .inspiration-row { grid-template-columns: 1fr 1fr; }
  .inspiration-row img { height: 150px; }
  .floating-button { position: static; grid-column: 1 / -1; width: 100%; margin-top: 8px; }
  .visit { padding: 10px 10px 28px; grid-template-columns: 1fr; gap: 24px; }
  .visit > img { height: 220px; }
  .visit-content { padding-inline: 10px; }
  .visit-details { grid-template-columns: 1fr; gap: 10px; }
  .visit-button { grid-column: 1; width: calc(100% - 20px); margin: 0 10px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; border: 0; }
  .footer-main address { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 4px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Subpages */
.subpage { background: #fbfaf8; }
.subpage .main-nav a[aria-current="page"] { color: var(--gold-dark); border-color: var(--gold); }
.breadcrumbs { margin-bottom: 48px; display: flex; flex-wrap: wrap; gap: 7px; color: #857e74; font-size: .72rem; }
.breadcrumbs a { transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold-dark); }
.subpage-hero, .article-header, .project-header, .category-hero { padding: 62px 0 72px; background: linear-gradient(145deg, #f4eee6, #fbfaf8 65%); border-bottom: 1px solid var(--line); }
.subpage-hero h1, .article-header h1, .project-header h1, .category-hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -.045em; }
.subpage-lead { max-width: 750px; margin-bottom: 0; color: #5d574f; font-family: var(--serif); font-size: clamp(1.08rem, 1.8vw, 1.38rem); line-height: 1.5; }
.listing-section { background: #fff; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card { overflow: hidden; background: #f7f3ee; border: 1px solid var(--line); border-radius: 9px; }
.story-media { height: 330px; display: block; overflow: hidden; background: #ece7df; }
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.story-card:hover .story-media img { transform: scale(1.025); }
.story-content { padding: 27px 26px 29px; }
.story-content h2 { margin-bottom: 14px; font-size: 1.85rem; }
.story-content > p:not(.news-brand) { min-height: 82px; color: var(--muted); font-size: .87rem; }
.project-listing-card .story-content { height: calc(100% - 330px); display: flex; flex-direction: column; align-items: flex-start; }
.project-listing-card .text-link { margin-top: auto; }
.project-listing-card .project-card-count { color: var(--gold-dark); font-weight: 600; }
.project-card-facts {
  width: 100%;
  margin: 2px 0 24px;
  display: grid;
  gap: 9px;
}
.project-card-facts > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.project-card-facts dt {
  color: var(--gold-dark);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}
.project-card-facts dd {
  margin: 0;
  color: #625c54;
  font-size: .68rem;
  line-height: 1.5;
}
.project-card-facts .project-card-fact-material {
  padding-top: 9px;
  border-top: 1px solid #dfd6ca;
}
.subpage-cta { padding: 58px 0; color: #fff; background: radial-gradient(circle at 85% 0, #4b4b46, #222422 60%); }
.subpage-cta-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; }
.subpage-cta h2 { margin-bottom: 0; font-size: clamp(2rem, 3vw, 3rem); }
.subpage-cta-contact { padding-left: 35px; border-left: 1px solid rgba(255,255,255,.18); }
.subpage-cta-contact p { margin-bottom: 5px; color: #d2cec7; font-size: .85rem; }
.subpage-cta .button-row { margin-top: 22px; }
.subpage-cta .button-ghost { color: #fff; background: transparent; }

/* Catalog library */
.catalog-library { background: #fff; }
.catalog-toolbar { margin-bottom: 58px; padding: 22px; display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; align-items: end; background: linear-gradient(135deg, #f7f3ed, #eee6dc); border: 1px solid #e5dbce; border-radius: 9px; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filters button { min-height: 38px; padding: 8px 14px; color: #5f584f; background: rgba(255,255,255,.72); border: 1px solid #d9cbbb; border-radius: 100px; font: 600 .69rem/1 var(--sans); cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.catalog-filters button:hover,
.catalog-filters button:focus-visible { color: var(--gold-dark); border-color: var(--gold); transform: translateY(-1px); }
.catalog-filters button.is-active { color: #fff; background: #292a28; border-color: #292a28; }
.catalog-search { display: grid; gap: 7px; color: #655e55; font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.catalog-search input { width: 100%; min-height: 43px; padding: 10px 13px; color: var(--ink); background: #fff; border: 1px solid #d5c7b6; border-radius: 4px; font: .82rem var(--sans); outline: 0; }
.catalog-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,135,70,.13); }
.catalog-library-heading,
.catalog-section-heading { margin-bottom: 28px; display: flex; justify-content: space-between; gap: 28px; align-items: end; }
.catalog-library-heading h2,
.catalog-section-heading h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); }
.catalog-library-heading > p { margin: 0 0 5px; color: var(--muted); font-size: .72rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.catalog-grid.catalog-remainder-1 > .catalog-card:last-child { grid-column: 2; }
.catalog-card { min-width: 0; min-height: 268px; display: grid; grid-template-columns: minmax(118px, 42%) 1fr; overflow: hidden; background: linear-gradient(145deg, #fbf9f6, #f3ede5); border: 1px solid #e2d8cb; border-radius: 9px; box-shadow: 0 8px 24px rgba(48,40,31,.05); transition: transform .25s, box-shadow .25s, border-color .25s; }
.catalog-card[hidden],
.catalog-card.is-filtered-out { display: none !important; }
.catalog-card:hover { transform: translateY(-4px); border-color: #d0b18b; box-shadow: 0 18px 38px rgba(48,40,31,.12); }
.catalog-cover { position: relative; min-height: 268px; padding: 20px 15px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 20%, #f5eee5, #d8cabb); }
.catalog-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,.42), transparent 45%); pointer-events: none; }
.catalog-cover > img { position: relative; z-index: 1; width: 100%; height: 100%; max-height: 218px; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(36,31,26,.22)); transition: transform .35s; }
.catalog-card:hover .catalog-cover > img { transform: scale(1.025) rotate(-.3deg); }
.catalog-pdf-badge { position: absolute; z-index: 2; right: 9px; bottom: 9px; padding: 5px 7px; color: #fff; background: rgba(37,37,34,.76); border: 1px solid rgba(255,255,255,.25); border-radius: 3px; font-size: .54rem; font-weight: 700; letter-spacing: .12em; }
.catalog-cover-placeholder { position: relative; z-index: 1; width: 82%; aspect-ratio: 3 / 4; display: grid; place-content: center; gap: 8px; color: #b89364; background: #2e302e; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 12px 20px rgba(0,0,0,.22); text-align: center; }
.catalog-cover-placeholder strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.catalog-cover-placeholder small { font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; }
.catalog-card-body { min-width: 0; padding: 24px 19px 19px; display: flex; flex-direction: column; align-items: flex-start; }
.catalog-category { margin: 0 0 9px; color: var(--gold-dark); font-size: .56rem; font-weight: 700; letter-spacing: .11em; line-height: 1.35; text-transform: uppercase; }
.catalog-card h3 { margin: 0 0 22px; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.12; overflow-wrap: anywhere; }
.catalog-card h3 a { transition: color .2s; }
.catalog-card h3 a:hover,
.catalog-card h3 a:focus-visible { color: var(--gold-dark); }
.catalog-actions { width: 100%; margin-top: auto; display: grid; gap: 7px; }
.catalog-actions a { min-height: 35px; padding: 8px 0; display: flex; align-items: center; gap: 8px; color: #524c45; border-top: 1px solid #ddd2c5; font-size: .68rem; font-weight: 600; transition: color .2s, padding-left .2s; }
.catalog-actions a:hover,
.catalog-actions a:focus-visible { padding-left: 4px; color: var(--gold-dark); }
.catalog-actions a span { width: 18px; color: var(--gold-dark); font-size: .9rem; text-align: center; }
.catalog-archive { margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catalog-archive summary { min-height: 100px; padding: 22px 5px; display: flex; justify-content: space-between; align-items: center; gap: 25px; cursor: pointer; list-style: none; }
.catalog-archive summary::-webkit-details-marker { display: none; }
.catalog-archive summary > span:first-child { display: grid; gap: 6px; }
.catalog-archive summary strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.catalog-archive summary small { color: var(--muted); font-size: .73rem; }
.catalog-archive summary > span:last-child { color: var(--gold-dark); font-size: 1.5rem; transition: transform .25s; }
.catalog-archive[open] summary > span:last-child { transform: rotate(45deg); }
.catalog-grid-archive { padding: 4px 0 42px; }
.catalog-library.is-filtering .catalog-archive { margin-top: 0; border-top: 0; }
.catalog-library.is-filtering .catalog-archive summary { display: none; }
.catalog-library.is-filtering .catalog-grid-archive { padding-top: 0; }
.catalog-library.is-filtering:not(.has-featured-results) .catalog-library-heading,
.catalog-library.is-filtering:not(.has-featured-results) .catalog-grid-featured { display: none; }
.catalog-no-results { margin: 30px 0 0; padding: 24px; color: var(--muted); background: #f7f3ee; border: 1px solid var(--line); text-align: center; }
.catalog-module { background: linear-gradient(145deg, rgba(247,243,237,.72), rgba(255,255,255,0)); }
.catalog-grid-context { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.catalog-grid-context.catalog-remainder-1 > .catalog-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }

.article-header, .project-header { padding-bottom: 190px; }
.article-hero, .project-cover { position: relative; margin-top: -130px; }
.article-hero img, .project-cover img { width: 100%; height: min(62vw, 650px); object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }
.project-facts { max-width: 1120px; margin: 34px 0 0; padding: 22px 24px; display: grid; grid-template-columns: minmax(150px, .7fr) minmax(150px, .65fr) minmax(320px, 2fr); gap: 0; background: rgba(255,255,255,.62); border: 1px solid #dfd1c0; border-radius: 8px; box-shadow: 0 12px 34px rgba(66,51,35,.07); }
.project-fact { min-width: 0; padding: 2px 20px; border-left: 1px solid #ddcfbe; }
.project-fact:first-child { padding-left: 0; border-left: 0; }
.project-fact dt { margin-bottom: 7px; color: var(--gold-dark); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-fact dd { margin: 0; color: #4f4942; font-family: var(--serif); font-size: 1.02rem; line-height: 1.45; }
.article-layout { padding-block: 68px 80px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 95px; align-items: start; }
.article-body { max-width: 690px; }
.article-body section { margin-bottom: 45px; }
.article-body h2 { font-size: 2.1rem; }
.article-body p { color: #5d574f; font-size: 1rem; line-height: 1.8; }
.detail-note { margin-top: 52px; padding: 28px 30px; background: #f1e9de; border-left: 3px solid var(--gold); }
.detail-note span { color: var(--gold-dark); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.detail-note p { margin: 7px 0 0; font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; }
.article-aside { position: sticky; top: 110px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 28px rgba(48,39,29,.06); }
.article-aside h2 { font-size: 1.55rem; }
.article-aside p:not(.eyebrow) { color: var(--muted); font-size: .83rem; }
.detail-gallery-section { padding: 70px 0; background: #f4efe8; }
.detail-gallery { display: grid; grid-template-columns: 1.2fr .8fr; grid-auto-rows: 260px; gap: 10px; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.detail-gallery img:first-child { grid-row: span 2; }
.detail-gallery img:last-child { grid-column: 2; }
.project-story { background: #fff; }
.project-story-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 90px; }
.project-story-grid p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.project-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
.project-gallery img:first-child { grid-row: auto; }
.project-gallery img:last-child { grid-column: auto; }
.assortment-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.assortment-page-card { position: relative; min-height: 350px; overflow: hidden; color: #fff; border-radius: 9px; background: #333; }
.assortment-page-card:first-child { grid-column: 1 / -1; min-height: 440px; }
.assortment-page-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: .8; transition: transform .4s, opacity .3s; }
.assortment-page-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(13,13,12,.82)); }
.assortment-page-card > span { position: absolute; z-index: 1; right: 30px; bottom: 27px; left: 30px; display: grid; grid-template-columns: 1fr auto; align-items: end; }
.assortment-page-card strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.assortment-page-card small { grid-column: 1; color: #ded9d2; }
.assortment-page-card em { grid-row: 1 / 3; grid-column: 2; color: #f2d0a0; font-style: normal; font-size: .82rem; }
.assortment-page-card:hover img { transform: scale(1.025); opacity: .9; }
.category-hero { padding-bottom: 78px; }
.category-hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; align-items: center; }
.category-hero-grid img { width: 100%; height: 500px; object-fit: cover; border-radius: 9px; box-shadow: var(--shadow); }
.category-hero .text-link { margin-top: 28px; }
.subtype-section { background: #fff; }
.heading-note { max-width: 360px; margin: 0; color: var(--muted); font-size: .78rem; }
.subtype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.subtype-card { position: relative; min-height: 195px; padding: 24px; background: linear-gradient(145deg, #faf8f5, #f1ece5); border: 1px solid var(--line); border-radius: 7px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.subtype-index { color: var(--gold-dark); font-size: .65rem; letter-spacing: .15em; }
.subtype-card h3 { margin: 34px 0 10px; font-size: 1.4rem; }
.subtype-card p { max-width: 230px; margin: 0; color: var(--muted); font-size: .75rem; }
.subtype-arrow { position: absolute; right: 22px; bottom: 18px; color: var(--gold-dark); }
.subtype-card:hover { transform: translateY(-3px); border-color: #d4bd9d; box-shadow: 0 12px 28px rgba(51,41,30,.08); }
.selection-guide { background: #f5f0e9; }
.selection-guide-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.selection-guide ol { margin: 0; padding: 0; list-style: none; counter-reset: selection; }
.selection-guide li { padding: 20px 0; display: grid; grid-template-columns: 180px 1fr; gap: 20px; border-bottom: 1px solid #ddd4c8; counter-increment: selection; }
.selection-guide li:first-child { padding-top: 0; }
.selection-guide li strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.selection-guide li span { color: var(--muted); font-size: .78rem; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-card { display: grid; grid-template-columns: 42% 1fr; }
  .story-media { height: auto; min-height: 260px; }
  .story-content > p:not(.news-brand) { min-height: 0; }
  .project-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 22px; }
  .project-fact-material { grid-column: 1 / -1; padding: 20px 0 0; border-top: 1px solid #ddcfbe; border-left: 0; }
  .subpage-cta-inner, .project-story-grid, .category-hero-grid, .selection-guide-grid { gap: 42px; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-aside { position: static; }
  .subtype-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .breadcrumbs { margin-bottom: 34px; }
  .subpage-hero, .article-header, .project-header, .category-hero { padding: 42px 0 52px; }
  .subpage-hero h1, .article-header h1, .project-header h1, .category-hero h1 { font-size: 2.75rem; }
  .story-card { display: block; }
  .story-media { height: 300px; }
  .project-listing-card .story-content { height: auto; min-height: 290px; }
  .subpage-cta-inner, .project-story-grid, .category-hero-grid, .selection-guide-grid { grid-template-columns: 1fr; gap: 28px; }
  .subpage-cta-contact { padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .subpage-cta .button-row { flex-direction: column; }
  .article-header, .project-header { padding-bottom: 90px; }
  .article-hero, .project-cover { margin-top: -48px; }
  .article-hero img, .project-cover img { height: 58vw; min-height: 240px; }
  .project-facts { padding: 18px; grid-template-columns: 1fr; gap: 0; }
  .project-fact,
  .project-fact:first-child,
  .project-fact-material { padding: 16px 0; border-top: 1px solid #ddcfbe; border-left: 0; }
  .project-fact:first-child { padding-top: 0; border-top: 0; }
  .project-fact:last-child { padding-bottom: 0; }
  .article-layout { padding-block: 48px; }
  .detail-gallery, .project-gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .detail-gallery img:first-child { grid-row: auto; }
  .detail-gallery img:last-child { grid-column: auto; }
  .assortment-page-grid { grid-template-columns: 1fr; }
  .assortment-page-card:first-child { grid-column: auto; min-height: 350px; }
  .assortment-page-card > span { right: 20px; bottom: 20px; left: 20px; grid-template-columns: 1fr; }
  .assortment-page-card em { grid-row: auto; grid-column: auto; margin-top: 12px; }
  .category-hero-grid img { order: -1; height: 330px; }
  .subtype-grid { grid-template-columns: 1fr; }
  .selection-guide li { grid-template-columns: 1fr; gap: 5px; }
}

/* Migrated legacy content */
.legacy-source-content,
.legacy-article-section { background: #fff; }
.legacy-reading-width { max-width: 790px; }
.legacy-module { padding: 54px 0; border-bottom: 1px solid var(--line); }
.legacy-module:first-child { padding-top: 0; }
.legacy-module:last-child { padding-bottom: 0; border-bottom: 0; }
.legacy-module > h2 { max-width: 860px; margin-bottom: 28px; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.legacy-content { color: #5d574f; font-size: .96rem; line-height: 1.82; }
.legacy-content > :first-child { margin-top: 0; }
.legacy-content > :last-child { margin-bottom: 0; }
.legacy-content p { margin-bottom: 1.25rem; }
.legacy-content h2 { margin: 2.7rem 0 1rem; color: var(--ink); font-size: clamp(1.75rem, 2.6vw, 2.4rem); }
.legacy-content h3 { margin: 2rem 0 .8rem; color: var(--ink); font-size: 1.45rem; line-height: 1.25; }
.legacy-content h4 { margin: 1.6rem 0 .6rem; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; }
.legacy-content ul,
.legacy-content ol { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.legacy-content li { margin-bottom: .45rem; padding-left: .3rem; }
.legacy-content a { color: var(--gold-dark); text-decoration: underline; text-decoration-color: rgba(150,112,60,.35); text-underline-offset: 3px; }
.legacy-content a:hover,
.legacy-content a:focus-visible { color: var(--ink); text-decoration-color: var(--gold); }
.legacy-content a.button { color: #fff; text-decoration: none; }
.legacy-content a.button:hover,
.legacy-content a.button:focus-visible { color: #fff; text-decoration: none; }
.legacy-content blockquote { margin: 2rem 0; padding: 20px 26px; background: #f5efe7; border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 1.12rem; }
.legacy-content table { width: 100%; margin: 1.5rem 0 2rem; border-collapse: collapse; font-size: .82rem; }
.legacy-content th,
.legacy-content td { padding: 11px 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legacy-content th { color: var(--ink); background: #f3eee7; font-weight: 600; }
.legacy-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.legacy-gallery figure { grid-column: span 2; min-width: 0; margin: 0; overflow: hidden; background: #f0ece6; border-radius: 7px; }
.lightbox-trigger { position: relative; width: 100%; aspect-ratio: 4 / 3; padding: 0; display: block; overflow: hidden; background: #e9e3da; border: 0; cursor: zoom-in; }
.lightbox-trigger::after { content: "\2922"; position: absolute; right: 10px; bottom: 10px; width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: rgba(24,24,22,.68); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1rem; opacity: 0; transform: translateY(5px); transition: opacity .2s, transform .2s; }
.lightbox-trigger img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img { transform: scale(1.018); }
.lightbox-trigger:hover::after,
.lightbox-trigger:focus-visible::after { opacity: 1; transform: translateY(0); }
.lightbox-trigger:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.legacy-gallery.gallery-remainder-1 > figure:last-child { grid-column: 1 / -1; }
.legacy-gallery.gallery-remainder-1 > figure:last-child .lightbox-trigger { aspect-ratio: 16 / 7; }
.legacy-gallery.gallery-remainder-2 > figure:nth-last-child(-n + 2) { grid-column: span 3; }
.legacy-gallery figcaption { padding: 8px 10px; color: var(--muted); font-size: .68rem; }
.legacy-gallery-compact > figure { grid-column: span 3; }
.legacy-gallery-compact.gallery-remainder-1 > figure:last-child { grid-column: 1 / -1; }
.legacy-gallery-compact.gallery-remainder-1 > figure:last-child .lightbox-trigger { aspect-ratio: 4 / 3; }
.legacy-mixed-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr); gap: 64px; align-items: start; }
.legacy-image-right .legacy-content { order: 1; }
.legacy-image-right .legacy-gallery { order: 2; }
.legacy-image-left .legacy-content { order: 2; }
.legacy-image-left .legacy-gallery { order: 1; }
.legacy-video { position: relative; margin-top: 30px; padding-top: 56.25%; overflow: hidden; background: #111; border-radius: 8px; }
.legacy-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.youtube-file-fallback { position: absolute; inset: 0; display: none; place-items: center; overflow: hidden; color: #fff; background: #111; text-align: center; }
.youtube-file-fallback > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; transition: opacity .25s, transform .35s; }
.youtube-file-fallback-label { position: relative; z-index: 1; padding: 20px; display: grid; gap: 9px; text-shadow: 0 2px 14px rgba(0,0,0,.75); }
.youtube-file-fallback-label strong { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 500; }
.youtube-file-fallback-label strong > span { width: 52px; height: 52px; display: grid; place-items: center; padding-left: 3px; background: var(--gold); border-radius: 50%; font-family: var(--sans); font-size: 1rem; text-shadow: none; }
.youtube-file-fallback-label small { color: #eee9e1; font-size: .76rem; }
.youtube-file-fallback:hover > img,
.youtube-file-fallback:focus-visible > img { opacity: .58; transform: scale(1.02); }
.youtube-file-fallback:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.is-file-preview .legacy-video iframe { display: none; }
.is-file-preview .youtube-file-fallback { display: grid; }
.legacy-news-gallery { padding: 56px 0 0; background: #fff; }
.legacy-article-section { padding-top: 58px; }
.legacy-article-section .legacy-content { color: #4f4a43; font-size: 1.02rem; }
.gallery-count { color: var(--gold-dark) !important; font-family: var(--serif); }
.subtype-card-image { min-height: 250px; padding: 0; display: block; overflow: hidden; color: #fff; background: #292825; }
.subtype-card-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s, opacity .25s; }
.subtype-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 25%, rgba(0,0,0,.78)); }
.subtype-overlay { position: absolute; z-index: 1; right: 22px; bottom: 20px; left: 22px; }
.subtype-card-image .subtype-index { color: #edcc9f; }
.subtype-card-image h3 { max-width: calc(100% - 32px); margin: 8px 0 0; color: #fff; font-size: 1.55rem; }
.subtype-card-image .subtype-arrow { right: 0; bottom: 2px; color: #edcc9f; }
.subtype-card-image:hover > img { transform: scale(1.035); }
.prototype-toast { position: fixed; z-index: 200; right: 22px; bottom: 22px; max-width: 390px; padding: 16px 20px; color: #fff; background: #252624; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; box-shadow: 0 16px 45px rgba(0,0,0,.24); font-size: .8rem; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s, transform .2s; }
.prototype-toast.is-visible { opacity: 1; transform: translateY(0); }
.lightbox-dialog { width: min(96vw, 1500px); height: 94vh; max-width: none; max-height: none; padding: 0; overflow: hidden; color: #fff; background: transparent; border: 0; }
.lightbox-dialog::backdrop { background: rgba(12,12,11,.93); backdrop-filter: blur(7px); }
.lightbox-shell { position: relative; width: 100%; height: 100%; padding: 56px 74px 44px; display: grid; grid-template-columns: 54px minmax(0, 1fr) 54px; grid-template-rows: minmax(0, 1fr) auto; gap: 15px; align-items: center; }
.lightbox-figure { grid-column: 2; min-width: 0; min-height: 0; margin: 0; display: grid; place-items: center; }
.lightbox-image { max-width: 100%; max-height: calc(94vh - 120px); object-fit: contain; box-shadow: 0 16px 55px rgba(0,0,0,.35); }
.lightbox-caption { grid-column: 2; min-height: 22px; margin: 0; color: #d8d3cb; font-size: .8rem; text-align: center; }
.lightbox-close,
.lightbox-nav { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.24); border-radius: 50%; cursor: pointer; transition: background .2s, transform .2s; }
.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible { background: var(--gold-dark); transform: scale(1.04); outline: none; }
.lightbox-close { position: absolute; z-index: 2; top: 4px; right: 10px; font-size: 1.7rem; line-height: 1; }
.lightbox-prev { grid-column: 1; grid-row: 1; font-size: 2rem; }
.lightbox-next { grid-column: 3; grid-row: 1; font-size: 2rem; }
.lightbox-counter { position: absolute; top: 15px; left: 50%; color: #c9c3bb; font-size: .72rem; transform: translateX(-50%); }
body.lightbox-open { overflow: hidden; }

@media (max-width: 900px) {
  .legacy-gallery > figure,
  .legacy-gallery.gallery-remainder-1 > figure:last-child,
  .legacy-gallery.gallery-remainder-2 > figure:nth-last-child(-n + 2) { grid-column: span 3; }
  .legacy-gallery > figure:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .legacy-gallery.gallery-remainder-1 > figure:last-child .lightbox-trigger { aspect-ratio: 4 / 3; }
  .legacy-gallery > figure:last-child:nth-child(odd) .lightbox-trigger { aspect-ratio: 16 / 7; }
  .legacy-mixed-grid { grid-template-columns: 1fr; gap: 32px; }
  .legacy-image-right .legacy-content,
  .legacy-image-left .legacy-content { order: 1; }
  .legacy-image-right .legacy-gallery,
  .legacy-image-left .legacy-gallery { order: 2; }
  .lightbox-shell { padding-inline: 54px; grid-template-columns: 44px minmax(0, 1fr) 44px; }
}

@media (max-width: 640px) {
  .legacy-module { padding: 40px 0; }
  .legacy-gallery > figure,
  .legacy-gallery.gallery-remainder-1 > figure:last-child,
  .legacy-gallery.gallery-remainder-2 > figure:nth-last-child(-n + 2),
  .legacy-gallery > figure:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .legacy-gallery .lightbox-trigger,
  .legacy-gallery.gallery-remainder-1 > figure:last-child .lightbox-trigger,
  .legacy-gallery > figure:last-child:nth-child(odd) .lightbox-trigger { aspect-ratio: 4 / 3; }
  .legacy-content table { display: block; overflow-x: auto; }
  .subtype-card-image { min-height: 235px; }
  .prototype-toast { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .lightbox-dialog { width: 100vw; height: 100vh; }
  .lightbox-shell { padding: 52px 10px 55px; display: block; }
  .lightbox-figure { width: 100%; height: calc(100vh - 130px); }
  .lightbox-image { max-height: calc(100vh - 130px); }
  .lightbox-caption { position: absolute; right: 54px; bottom: 18px; left: 54px; }
  .lightbox-nav { position: absolute; z-index: 2; bottom: 10px; width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 8px; right: 10px; width: 42px; height: 42px; }
}

/* Premium assortment landing pages */
.category-hero {
  padding: 38px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(184,138,74,.11), transparent 27%),
    linear-gradient(145deg, #f4eee6, #fbfaf8 68%);
  border-bottom: 0;
}
.category-hero .breadcrumbs { margin-bottom: 26px; }
.category-hero-stage {
  min-height: 555px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  color: var(--ink);
  background: #f7f3ed;
  border: 1px solid #ded4c7;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 55px rgba(45,36,27,.15);
}
.category-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(44px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 0 0, rgba(184,138,74,.13), transparent 38%),
    linear-gradient(145deg, #fbf9f5, #eee7dd);
}
.category-hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -80px;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, rgba(238,231,221,.96), transparent);
  pointer-events: none;
}
.category-hero-copy .eyebrow { color: var(--gold-dark); }
.category-hero h1 {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.1vw, 5rem);
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}
.category-hero-statement {
  max-width: 560px;
  margin: 0 0 15px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.42;
}
.category-hero-detail {
  max-width: 570px;
  margin: 0 0 30px;
  color: #5e5850;
  font-size: .88rem;
  line-height: 1.72;
}
.category-hero-copy .button-row { flex-wrap: wrap; }
.button-outline-light {
  color: var(--ink);
  background: rgba(255,255,255,.42);
  border-color: #b9a78e;
  box-shadow: none;
}
.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: #fff;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.category-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 555px;
  overflow: hidden;
  background: #5b5852;
}
.category-hero-visual .migrated-picture {
  position: absolute;
  inset: 0;
  display: block;
}
.category-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,240,232,.2), transparent 34%, rgba(255,255,255,.05));
  pointer-events: none;
}
.category-hero-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  padding: 10px 13px;
  display: grid;
  color: #5e574e;
  background: rgba(255,253,249,.86);
  border: 1px solid rgba(145,119,84,.3);
  border-radius: 4px;
  font-size: .58rem;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.category-hero-caption b {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.category-proofbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: 0 18px 40px rgba(52,41,30,.08);
}
.category-proofbar > div {
  min-width: 0;
  padding: 23px 25px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 11px;
  border-left: 1px solid var(--line);
}
.category-proofbar > div:first-child { border-left: 0; }
.category-proofbar span {
  grid-row: 1 / 3;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: .76rem;
}
.category-proofbar strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.01rem;
  font-weight: 400;
  line-height: 1.25;
}
.category-proofbar small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.45;
}
.category-source-intro {
  padding: 50px 0 55px;
  background: #f4eee6;
  border-bottom: 1px solid var(--line);
}
.category-source-intro .shell {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) max-content;
  gap: 36px;
  align-items: start;
}
.category-source-intro .eyebrow { margin: 6px 0 0; }
.category-source-intro .shell > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #544f48;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.27rem);
  line-height: 1.62;
}
.category-source-intro .text-link { margin-top: 7px; white-space: nowrap; }
.subtype-section {
  padding-block: 92px;
  background: #fff;
}
.category-section-heading {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 70px;
  align-items: end;
}
.category-section-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  letter-spacing: -.025em;
}
.category-section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.72;
}
.subtype-grid { gap: 14px; }
.subtype-card-image {
  min-height: 310px;
  padding: 0;
  border-color: rgba(0,0,0,.08);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(42,34,26,.06);
}
.subtype-card-image .migrated-picture {
  position: absolute;
  inset: 0;
  display: block;
}
.subtype-card-image .migrated-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s, filter .35s;
}
.subtype-card-image::after {
  background: linear-gradient(180deg, rgba(0,0,0,.02) 20%, rgba(10,11,10,.84));
}
.subtype-overlay { right: 25px; bottom: 23px; left: 25px; }
.subtype-card-image h3 {
  max-width: calc(100% - 45px);
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}
.subtype-action {
  color: #e6d8c5;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.subtype-card-image .subtype-arrow {
  right: 2px;
  bottom: 4px;
  font-size: 1.25rem;
}
.subtype-card-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(39,31,23,.14);
}
.subtype-card-image:hover .migrated-picture img {
  transform: scale(1.045);
  filter: saturate(1.06);
}
.subtype-count-5 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.subtype-count-5 > .subtype-card { grid-column: span 2; }
.subtype-count-5 > .subtype-card:nth-child(-n + 2) { grid-column: span 3; }
.subtype-count-8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.subtype-count-8 .subtype-card-image h3 { font-size: 1.4rem; }
.category-editorial {
  padding-block: 90px;
  background:
    radial-gradient(circle at 95% 5%, rgba(184,138,74,.08), transparent 22%),
    #f8f5f0;
}
.category-content-heading {
  margin-bottom: 18px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  border-bottom: 1px solid #ded3c5;
}
.category-content-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -44px; }
.category-content-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}
.category-content-heading > p:not(.eyebrow) {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}
.category-page .legacy-module { padding-block: 68px; }
.category-page .legacy-text-module .legacy-content { max-width: 900px; }
.category-page .legacy-content { color: #514c45; }
.category-page .catalog-module {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(20px, calc((100vw - var(--shell)) / 2));
}

.assortment-landing-hero .category-hero-stage { grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); }
.assortment-landing-hero .category-hero-copy h1 { font-size: clamp(3.2rem, 5vw, 4.8rem); }
.assortment-hero-collage {
  min-width: 0;
  min-height: 555px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  background: #e4dbcf;
}
.assortment-hero-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #575650;
}
.assortment-hero-tile-1 { grid-row: 1 / 3; }
.assortment-hero-tile .migrated-picture {
  position: absolute;
  inset: 0;
  display: block;
}
.assortment-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.assortment-hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 55%);
}
.assortment-hero-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: .9rem;
}
.assortment-hero-tile:hover img { transform: scale(1.025); }
.assortment-listing {
  padding-block: 92px;
  background: #fff;
}
.assortment-page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.assortment-page-grid .assortment-page-card {
  grid-column: span 6;
  min-height: 370px;
}
.assortment-page-grid .assortment-page-card:first-child { grid-column: span 6; min-height: 370px; }
.assortment-page-grid .assortment-page-card:nth-child(n + 3):nth-child(-n + 5) { grid-column: span 4; }
.assortment-page-card .migrated-picture {
  position: absolute;
  inset: 0;
  display: block;
}
.assortment-page-card .migrated-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform .45s, opacity .3s;
}
.assortment-page-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.03) 24%, rgba(11,12,11,.84));
}
.assortment-page-card > .assortment-card-index {
  position: absolute;
  z-index: 2;
  top: 21px;
  right: 22px;
  bottom: auto;
  left: auto;
  padding: 6px 9px;
  display: block;
  color: #f1dfc5;
  background: rgba(22,23,21,.55);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  font: .62rem/1 var(--sans);
  letter-spacing: .12em;
  backdrop-filter: blur(7px);
}
.assortment-page-card > .assortment-card-copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.assortment-card-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
}
.assortment-card-copy small {
  grid-column: 1;
  margin-top: 7px;
  color: #ded9d2;
  font-size: .7rem;
}
.assortment-card-copy em {
  grid-row: 1;
  grid-column: 2;
  margin-left: 20px;
  color: #f2d0a0;
  font-size: .75rem;
  font-style: normal;
  white-space: nowrap;
}
.assortment-page-card:hover .migrated-picture img {
  transform: scale(1.035);
  opacity: .96;
}

@media (max-width: 900px) {
  .category-hero-stage,
  .assortment-landing-hero .category-hero-stage { grid-template-columns: 1fr; }
  .category-hero-copy::after { display: none; }
  .category-hero-visual { min-height: 440px; }
  .category-proofbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-proofbar > div:nth-child(odd) { border-left: 0; }
  .category-proofbar > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .category-source-intro .shell { grid-template-columns: 120px minmax(0, 1fr); }
  .category-source-intro .text-link { grid-column: 2; }
  .category-section-heading,
  .category-content-heading { grid-template-columns: 1fr; gap: 18px; }
  .category-content-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .subtype-grid,
  .subtype-count-5,
  .subtype-count-8 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subtype-count-5 > .subtype-card,
  .subtype-count-5 > .subtype-card:nth-child(-n + 2) { grid-column: auto; }
  .assortment-hero-collage { min-height: 440px; }
  .assortment-page-grid .assortment-page-card,
  .assortment-page-grid .assortment-page-card:first-child,
  .assortment-page-grid .assortment-page-card:nth-child(n + 3):nth-child(-n + 5) { grid-column: span 6; }
}

@media (max-width: 640px) {
  .category-hero { padding-top: 26px; }
  .category-hero .breadcrumbs { margin-bottom: 20px; }
  .category-hero-stage { min-height: 0; border-radius: 8px 8px 0 0; }
  .category-hero-copy { padding: 38px 24px 42px; }
  .category-hero h1,
  .assortment-landing-hero .category-hero-copy h1 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .category-hero-statement { font-size: 1.12rem; }
  .category-hero-detail { font-size: .82rem; }
  .category-hero-copy .button-row { flex-direction: column; }
  .category-hero-copy .button-row .button { width: 100%; }
  .category-hero-visual { min-height: 300px; }
  .category-hero-caption { right: 14px; bottom: 14px; }
  .category-proofbar { grid-template-columns: 1fr; }
  .category-proofbar > div {
    padding: 18px 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .category-proofbar > div:first-child { border-top: 0; }
  .category-source-intro { padding-block: 40px; }
  .category-source-intro .shell { grid-template-columns: 1fr; gap: 13px; }
  .category-source-intro .text-link { grid-column: auto; margin-top: 7px; }
  .subtype-section,
  .category-editorial,
  .assortment-listing { padding-block: 62px; }
  .category-section-heading { margin-bottom: 28px; }
  .category-section-heading h2,
  .category-content-heading h2 { font-size: 2.3rem; }
  .subtype-grid,
  .subtype-count-5,
  .subtype-count-8 { grid-template-columns: 1fr; }
  .subtype-card-image { min-height: 265px; }
  .category-content-heading { padding-bottom: 34px; }
  .category-page .legacy-module { padding-block: 48px; }
  .category-page .catalog-module { margin-inline: calc(50% - 50vw); }
  .assortment-hero-collage { min-height: 330px; }
  .assortment-hero-tile figcaption { right: 10px; bottom: 9px; left: 10px; font-size: .68rem; }
  .assortment-page-grid { grid-template-columns: 1fr; }
  .assortment-page-grid .assortment-page-card,
  .assortment-page-grid .assortment-page-card:first-child,
  .assortment-page-grid .assortment-page-card:nth-child(n + 3):nth-child(-n + 5) {
    grid-column: auto;
    min-height: 310px;
  }
  .assortment-page-card > .assortment-card-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 1fr;
  }
  .assortment-card-copy em {
    grid-row: auto;
    grid-column: auto;
    margin: 13px 0 0;
  }
}

@media (max-width: 1100px) {
  .catalog-grid,
  .catalog-grid-context { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid.catalog-remainder-1 > .catalog-card:last-child,
  .catalog-grid-context.catalog-remainder-1 > .catalog-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
}

@media (max-width: 760px) {
  .catalog-toolbar { margin-bottom: 42px; grid-template-columns: 1fr; }
  .catalog-library-heading,
  .catalog-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .catalog-grid,
  .catalog-grid-context { grid-template-columns: 1fr; }
  .catalog-grid.catalog-remainder-1 > .catalog-card:last-child,
  .catalog-grid-context.catalog-remainder-1 > .catalog-card:last-child { grid-column: 1; width: 100%; }
  .catalog-card { grid-template-columns: minmax(120px, 39%) 1fr; }
}

@media (max-width: 430px) {
  .catalog-toolbar { padding: 16px; }
  .catalog-filters { gap: 6px; }
  .catalog-filters button { padding-inline: 11px; }
  .catalog-card { min-height: 230px; grid-template-columns: minmax(108px, 38%) 1fr; }
  .catalog-cover { min-height: 230px; padding: 16px 11px; }
  .catalog-card-body { padding: 20px 14px 14px; }
  .catalog-card h3 { font-size: 1.02rem; }
  .catalog-actions a { font-size: .63rem; }
}

/* Premium news listing and article detail */
.story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.story-card { min-width: 0; height: 100%; display: flex; flex-direction: column; }
.story-media { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
.story-content { flex: 1; display: flex; flex-direction: column; }
.story-content > p:not(.news-brand) { min-height: 0; }
.story-content .text-link { margin-top: auto; padding-top: 12px; }

.news-detail-header { padding: 62px 0 92px; overflow: hidden; background: radial-gradient(circle at 85% 18%, rgba(185,146,92,.16), transparent 32%), linear-gradient(145deg, #eee5da, #faf8f4 68%); border-bottom: 1px solid var(--line); }
.news-detail-header .breadcrumbs { margin-bottom: 56px; }
.news-detail-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 400px); gap: clamp(50px, 7vw, 110px); align-items: center; }
.news-detail-heading { position: relative; z-index: 1; padding-block: 30px; }
.news-detail-kicker { margin: 0 0 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; color: var(--gold-dark); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.news-detail-kicker span + span { padding-left: 18px; color: #686158; border-left: 1px solid #cdbda9; }
.news-detail-heading h1 { max-width: 720px; margin: 0 0 30px; font-size: clamp(3.35rem, 6.6vw, 6.6rem); letter-spacing: -.055em; line-height: .92; overflow-wrap: normal; word-break: normal; text-wrap: balance; }
.news-detail-deck { max-width: 580px; margin: 0; color: #5d564d; font-family: var(--serif); font-size: clamp(1.18rem, 1.8vw, 1.48rem); line-height: 1.52; }
.news-detail-jump { margin-top: 34px; }
.news-detail-visual { min-width: 0; margin: 0; overflow: hidden; background: #f4efe8; border: 1px solid #ded4c8; border-radius: 9px; box-shadow: 0 14px 36px rgba(47,39,31,.09); }
.migrated-picture { display: contents; }
.news-detail-visual .lightbox-trigger { width: 100%; padding: 0; display: block; overflow: hidden; background: #eee8e0; border: 0; cursor: zoom-in; }
.news-detail-visual img { width: 100%; height: 100%; display: block; object-fit: contain; transition: transform .4s, filter .3s; }
.news-detail-visual .lightbox-trigger:hover img,
.news-detail-visual .lightbox-trigger:focus-visible img { transform: scale(1.018); filter: saturate(1.04); }
.news-detail-visual figcaption { padding: 13px 16px 14px; color: #665f56; font-size: .66rem; line-height: 1.45; }
.news-detail-main-visual { width: min(100%, 400px); aspect-ratio: 4 / 3; display: grid; grid-template-rows: minmax(0, 1fr) auto; justify-self: end; color: #ece7df; background: #242421; border-color: rgba(255,255,255,.14); box-shadow: 0 28px 70px rgba(39,33,27,.22); }
.news-detail-main-visual .lightbox-trigger { height: 100%; min-height: 0; background: #242421; }
.news-detail-main-visual img { object-fit: cover; }
.news-detail-main-visual figcaption { color: #ded8cf; background: #242421; border-top: 1px solid rgba(255,255,255,.12); }
.news-nova-kolekce-coya .news-detail-main-visual { aspect-ratio: 4 / 5; }
.news-neviditelny-antislip .news-detail-main-visual { aspect-ratio: 1 / 1; }
.news-neviditelny-antislip .news-detail-heading h1 { font-size: clamp(3.1rem, 5vw, 4.9rem); }
.news-nadcasova-ikona .news-detail-main-visual { aspect-ratio: 16 / 10; }

.news-detail-content { padding-block: clamp(72px, 8vw, 112px); background: #fff; }
.news-detail-copy-shell { max-width: 900px; }
.news-detail-copy { max-width: 800px; margin-inline: auto; }
.news-detail-copy .legacy-content { color: #4f4942; font-size: 1.04rem; line-height: 1.9; }
.news-detail-copy .legacy-content > p:first-child { margin-bottom: 2rem; color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.72rem); line-height: 1.55; }
.news-detail-copy .legacy-content strong { color: #292824; }
.news-detail-copy .legacy-content ul { margin: 1.9rem 0 2.4rem; padding: 24px 28px 18px 46px; background: #f7f3ee; border-left: 2px solid var(--gold); }
.news-detail-copy .legacy-content li { margin-bottom: .65rem; }
.news-detail-copy .legacy-content li::marker { color: var(--gold-dark); }
.news-detail-back { margin-top: 35px; }
.news-detail-gallery-section { padding-block: clamp(68px, 7vw, 100px); background: #f4efe8; border-block: 1px solid #e1d7cb; }
.news-detail-gallery-heading { margin-bottom: 36px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.news-detail-gallery-heading .eyebrow { margin-bottom: 12px; }
.news-detail-gallery-heading h2 { margin: 0; font-size: clamp(2.45rem, 4vw, 4.1rem); }
.news-detail-gallery-heading > p { margin: 0 0 8px; color: var(--gold-dark); font-family: var(--serif); font-size: 1rem; white-space: nowrap; }
.news-detail-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.news-detail-gallery .news-detail-visual { height: 100%; grid-column: span 2; display: flex; flex-direction: column; background: #fff; box-shadow: 0 10px 28px rgba(47,39,31,.07); }
.news-detail-gallery .lightbox-trigger { aspect-ratio: 4 / 3; background: #ded8d0; }
.news-detail-gallery .news-detail-visual img { object-fit: cover; }
.news-detail-gallery .news-detail-visual figcaption { min-height: 58px; display: flex; align-items: center; background: #fff; }
.news-detail-gallery.news-gallery-count-1 .news-detail-visual { grid-column: 2 / span 4; }
.news-detail-gallery.news-gallery-count-2 .news-detail-visual,
.news-detail-gallery.news-gallery-count-4 .news-detail-visual { grid-column: span 3; }
.news-detail-gallery.news-gallery-count-5 .news-detail-visual:nth-last-child(2) { grid-column: 2 / span 2; }
.news-detail-gallery.news-gallery-count-5 .news-detail-visual:last-child { grid-column: 4 / span 2; }
.news-detail-lightbox-only { display: none; }
.news-gallery-more { margin: 34px auto 0; display: flex; align-items: center; gap: 12px; }
.news-gallery-more span { font-family: var(--sans); font-size: .62rem; letter-spacing: .08em; opacity: .68; }

@media (max-width: 980px) {
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-detail-hero { grid-template-columns: minmax(0, 1fr) minmax(320px, 400px); gap: 44px; }
  .news-detail-heading h1 { font-size: clamp(3.15rem, 7.6vw, 5.3rem); }
  .news-detail-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .news-detail-gallery > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-1 > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-2 > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-4 > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-5 > .news-detail-visual:nth-last-child(2),
  .news-detail-gallery.news-gallery-count-5 > .news-detail-visual:last-child { grid-column: span 2; }
  .news-detail-gallery > .news-detail-visual:last-child:nth-child(odd) { grid-column: 2 / span 2; }
}

@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 0; display: flex; }
  .story-media { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .news-detail-header { padding: 42px 0 64px; }
  .news-detail-header .breadcrumbs { margin-bottom: 36px; }
  .news-detail-hero { grid-template-columns: 1fr; gap: 38px; }
  .news-detail-heading { padding-block: 0; }
  .news-detail-heading h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .news-neviditelny-antislip .news-detail-heading h1 { font-size: clamp(2.15rem, 9.7vw, 3.7rem); }
  .news-detail-main-visual { width: 100%; max-width: 400px; justify-self: start; }
  .news-detail-gallery-heading { align-items: start; flex-direction: column; gap: 8px; }
  .news-detail-gallery-heading > p { margin-bottom: 0; }
}

@media (max-width: 480px) {
  .news-detail-kicker { align-items: flex-start; flex-direction: column; gap: 6px; }
  .news-detail-kicker span + span { padding: 0; border-left: 0; }
  .news-detail-heading h1 { font-size: clamp(2.75rem, 15vw, 4rem); }
  .news-neviditelny-antislip .news-detail-heading h1 { font-size: 2rem; letter-spacing: -.06em; }
  .news-detail-copy .legacy-content { font-size: .97rem; line-height: 1.8; }
  .news-detail-copy .legacy-content ul { padding: 20px 20px 14px 36px; }
  .news-detail-gallery { grid-template-columns: 1fr; gap: 12px; }
  .news-detail-gallery > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-1 > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-2 > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-4 > .news-detail-visual,
  .news-detail-gallery.news-gallery-count-5 > .news-detail-visual:nth-last-child(2),
  .news-detail-gallery.news-gallery-count-5 > .news-detail-visual:last-child,
  .news-detail-gallery > .news-detail-visual:last-child:nth-child(odd) { grid-column: 1; }
}

/* Complete content migration */
.listing-section .story-grid { grid-auto-rows: 1fr; }
.listing-section .story-card { box-shadow: 0 8px 26px rgba(48, 40, 31, .045); transition: transform .25s, border-color .25s, box-shadow .25s; }
.listing-section .story-card:hover { transform: translateY(-3px); border-color: #d5bea0; box-shadow: 0 16px 36px rgba(48, 40, 31, .09); }
.listing-section .story-content h2 a { transition: color .2s; }
.listing-section .story-content h2 a:hover,
.listing-section .story-content h2 a:focus-visible { color: var(--gold-dark); }
.listing-realization .story-content,
.listing-visualization .story-content { min-height: 275px; }

.project-detail-facts {
  max-width: 1120px;
  margin: 34px 0 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,.68);
  border: 1px solid #dfd1c0;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(66,51,35,.07);
}
.project-detail-facts > div { min-width: 0; padding: 2px 20px; border-left: 1px solid #ddcfbe; }
.project-detail-facts > div:first-child { padding-left: 0; border-left: 0; }
.project-detail-facts dt { margin-bottom: 7px; color: var(--gold-dark); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-detail-facts dd { margin: 0; color: #4f4942; font-family: var(--serif); font-size: 1.02rem; line-height: 1.45; }
.project-cover-trigger { aspect-ratio: 16 / 8.5; border-radius: 10px; box-shadow: var(--shadow); }
.project-cover-trigger img { height: 100%; border-radius: 0; box-shadow: none; }

.migrated-rich-text { max-width: 900px; margin-inline: auto; }
.legacy-module-heading { max-width: 900px; margin-inline: auto; }
.legacy-module-heading .eyebrow { margin-bottom: 12px; }
.legacy-module-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); }

/* Editorial video and SEO navigation sections */
.home-videos { background: #f8f4ee; }
.home-videos-heading,
.home-seo-links-heading,
.category-related-heading { margin-bottom: 34px; text-align: center; }
.home-videos-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; text-align: left; }
.home-videos-heading h2,
.home-seo-links-heading h2,
.category-related-heading h2 { margin: 0; }
.home-video-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 18px; align-items: stretch; }
.home-video-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(49, 39, 27, .06); }
.home-video-frame { position: relative; aspect-ratio: 16 / 9; background: #1f1d1a; }
.home-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.home-video-card > div:last-child { padding: 23px 24px 26px; }
.home-video-card .eyebrow { margin-bottom: 9px; }
.home-video-card h3 { margin: 0; font-size: clamp(1.35rem, 2vw, 2rem); }
.home-video-card-featured h3 { font-size: clamp(1.55rem, 2.3vw, 2.35rem); }
.home-seo-links { background: #fff; }
.home-seo-links-grid,
.category-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.home-seo-links-grid a,
.category-related-grid a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; padding: 18px 22px; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: clamp(1.15rem, 1.6vw, 1.45rem); transition: color .2s ease, background .2s ease, padding .2s ease; }
.home-seo-links-grid a:nth-child(odd),
.category-related-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
.category-related-grid a:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
.home-seo-links-grid a:hover,
.home-seo-links-grid a:focus-visible,
.category-related-grid a:hover,
.category-related-grid a:focus-visible { padding-left: 28px; color: var(--gold-dark); background: #faf7f2; }
.home-seo-links-grid a span:last-child,
.category-related-grid a span:last-child { color: var(--gold); }
.category-related { background: #fff; }
.category-related-grid { max-width: 1080px; margin-inline: auto; }
.legacy-module-heading { margin-bottom: 28px; }
.category-source-intro { background: #fff; }
.category-source-intro .legacy-content { display: block; max-width: 1080px; margin-inline: auto; }
.category-source-intro .legacy-content > :first-child { margin-top: 0; }
.category-source-intro .legacy-content > :last-child { margin-bottom: 0; }
.category-source-intro .legacy-content h2 { margin-top: 34px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.category-source-intro .legacy-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 30px; padding-left: 1.2em; }

@media (max-width: 900px) {
  .home-videos-heading { display: block; text-align: center; }
  .home-videos-heading .text-link { display: inline-flex; margin-top: 18px; }
  .home-video-grid { grid-template-columns: 1fr 1fr; }
  .home-video-card-featured { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .home-video-grid,
  .home-seo-links-grid,
  .category-related-grid { grid-template-columns: 1fr; }
  .category-source-intro .legacy-content ul { grid-template-columns: 1fr; }
  .home-seo-links-grid a:nth-child(odd),
  .category-related-grid a:nth-child(odd) { border-right: 0; }
  .category-related-grid a:last-child:nth-child(odd) { grid-column: auto; }
  .home-video-card > div:last-child { padding: 18px 19px 21px; }
  .home-seo-links-grid a,
  .category-related-grid a { min-height: 62px; padding: 15px 10px; }
  .home-seo-links-grid a:hover,
  .home-seo-links-grid a:focus-visible,
  .category-related-grid a:hover,
  .category-related-grid a:focus-visible { padding-left: 16px; }
}
.legacy-text-media { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr); gap: clamp(40px, 6vw, 86px); align-items: start; }
.legacy-text-media-reverse .legacy-content { order: 2; }
.legacy-text-media-reverse figure { order: 1; }
.legacy-text-media figure { margin: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 14px 34px rgba(47,39,31,.08); }
.migrated-gallery { grid-auto-flow: row; align-items: stretch; }
.migrated-gallery figure { height: 100%; }
.migrated-gallery .lightbox-trigger { height: 100%; min-height: 230px; aspect-ratio: 4 / 3; }

.migrated-video { position: relative; width: min(100%, 1000px); margin-inline: auto; aspect-ratio: 16 / 9; overflow: hidden; background: #181917; border-radius: 9px; box-shadow: var(--shadow); }
.migrated-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.migrated-files { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.migrated-files article { min-height: 175px; padding: 25px; display: flex; flex-direction: column; align-items: flex-start; background: linear-gradient(145deg, #fbf9f6, #f1eae1); border: 1px solid #e2d7ca; border-radius: 8px; }
.migrated-files h3 { margin: 12px 0 24px; font-size: 1.45rem; }
.migrated-files article > div { margin-top: auto; display: flex; flex-wrap: wrap; gap: 18px; }
.migrated-file-type { color: var(--gold-dark); font-size: .58rem; font-weight: 700; letter-spacing: .14em; }
.migrated-contact-box { max-width: 880px; margin-inline: auto; padding: clamp(30px, 5vw, 58px); background: linear-gradient(145deg, #f4ece1, #fbfaf8); border: 1px solid #dfd1c0; border-radius: 9px; text-align: center; }
.migrated-contact-box h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.5rem); }
.migrated-contact-box > p:not(.eyebrow) { max-width: 620px; margin-inline: auto; color: var(--muted); }
.migrated-contact-box .button-row { justify-content: center; }

/* Contact page */
.contact-hero { padding: clamp(34px, 5vw, 74px) 0 clamp(62px, 8vw, 112px); background: linear-gradient(135deg, #fbf9f6 0%, #f3ece3 100%); border-bottom: 1px solid var(--line); }
.contact-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(42px, 7vw, 110px); }
.contact-hero-copy h1 { max-width: 780px; margin: 18px 0 24px; font-size: clamp(3.2rem, 5vw, 5.6rem); line-height: 1; }
.contact-hero-lead { max-width: 650px; margin: 0 0 30px; color: var(--muted); font-size: clamp(1.12rem, 1.7vw, 1.42rem); line-height: 1.65; }
.contact-hero-photo { min-height: 540px; margin: 0; overflow: hidden; border-radius: 10px; box-shadow: 0 28px 70px rgba(48, 38, 29, .15); }
.contact-hero-photo picture, .contact-hero-photo img { width: 100%; height: 100%; }
.contact-hero-photo img { min-height: 540px; object-fit: cover; }
.contact-section-heading { max-width: 820px; margin: 0 auto 46px; text-align: center; }
.contact-section-heading h2 { margin: 12px 0 0; font-size: clamp(3rem, 5vw, 5.6rem); }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.contact-info-card { min-height: 310px; padding: clamp(28px, 3vw, 44px); border: 1px solid #e3d8ca; border-radius: 9px; background: #fbfaf8; box-shadow: 0 12px 32px rgba(54, 43, 31, .055); }
.contact-info-card-address { background: #eee3d5; }
.contact-card-label, .contact-person-role { display: block; margin-bottom: 18px; color: var(--gold-dark); font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-info-card h3 { margin: 0 0 22px; font-size: clamp(1.8rem, 2.5vw, 2.5rem); }
.contact-info-card address, .contact-info-card p, .opening-hours { margin: 0; color: var(--muted); font-style: normal; line-height: 1.75; }
.contact-info-card .text-link { display: inline-flex; margin-top: 26px; }
.opening-hours div { display: flex; justify-content: space-between; gap: 30px; padding: 9px 0; border-bottom: 1px solid #e5dbcf; }
.opening-hours dt { font-weight: 700; }
.opening-hours dd { margin: 0; }
.contact-company-id { margin-top: 24px !important; font-size: .9rem; }
.contact-team-section { background: #f5f0ea; border-block: 1px solid var(--line); }
.contact-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.contact-person-card { overflow: hidden; border-radius: 9px; background: #fff; box-shadow: 0 16px 40px rgba(55, 43, 31, .08); }
.contact-person-photo { aspect-ratio: 4 / 3; overflow: hidden; background: #ddd4c9; }
.contact-person-photo picture, .contact-person-photo img { width: 100%; height: 100%; }
.contact-person-photo img { object-fit: cover; object-position: center 25%; }
.contact-person-copy { display: flex; min-height: 230px; padding: 30px; flex-direction: column; align-items: flex-start; }
.contact-person-role { margin-bottom: 10px; }
.contact-person-copy h3 { margin: 0 0 22px; font-size: clamp(1.75rem, 2.5vw, 2.5rem); }
.contact-person-copy a { color: var(--muted); line-height: 1.7; overflow-wrap: anywhere; }
.contact-person-copy a:hover { color: var(--gold-dark); }
.contact-warehouse-section { background: #262522; color: #fff; }
.contact-warehouse-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); gap: clamp(46px, 8vw, 130px); align-items: center; }
.contact-warehouse-grid > div:first-child > p:not(.eyebrow) { max-width: 620px; margin: 22px 0 30px; color: #d5cec5; font-size: 1.1rem; line-height: 1.75; }
.contact-warehouse-grid h2 { margin: 12px 0 0; color: #fff; font-size: clamp(3.2rem, 5vw, 5.8rem); }
.warehouse-details { display: grid; grid-template-columns: 1.25fr 1fr .8fr; gap: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; }
.warehouse-details > div { padding: clamp(24px, 3vw, 40px); }
.warehouse-details > div + div { border-left: 1px solid rgba(255,255,255,.15); }
.warehouse-details address, .warehouse-details p { margin: 0; color: #d9d2c9; font-style: normal; line-height: 1.75; }
.warehouse-details a { color: #fff; }

/* New Duscholux gallery and locally hosted product videos */
.duscholux-update-section { background: #f8f5f1; }
.duscholux-gallery-section { background: #fff; }
.duscholux-update-heading { align-items: end; }
.duscholux-update-heading > p { max-width: 540px; margin: 0; color: var(--muted); line-height: 1.65; }
.duscholux-photo-grid, .duscholux-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.duscholux-photo-grid figure, .duscholux-video-card { margin: 0; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 12px 30px rgba(47, 39, 31, .075); }
.duscholux-photo-grid .lightbox-trigger { width: 100%; aspect-ratio: 4 / 3; }
.duscholux-photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.duscholux-photo-grid .lightbox-trigger:hover img { transform: scale(1.035); }
.duscholux-video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #171717; object-fit: cover; }
.duscholux-video-card figcaption { padding: 18px 22px; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; }

@media (max-width: 980px) {
  .contact-hero-grid, .contact-warehouse-grid { grid-template-columns: 1fr; }
  .contact-hero-photo { min-height: 460px; }
  .contact-hero-photo img { min-height: 460px; }
  .contact-info-grid, .contact-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-info-card:last-child, .contact-person-card:last-child { grid-column: 1 / -1; }
  .warehouse-details { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .duscholux-photo-grid, .duscholux-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .duscholux-video-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 8px); width: 100%; justify-self: center; }
}

@media (max-width: 640px) {
  .contact-hero-grid { gap: 36px; }
  .contact-hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .contact-hero-photo, .contact-hero-photo img { min-height: 330px; }
  .contact-info-grid, .contact-team-grid, .warehouse-details, .duscholux-photo-grid, .duscholux-video-grid { grid-template-columns: 1fr; }
  .contact-info-card:last-child, .contact-person-card:last-child, .duscholux-video-card:last-child { grid-column: auto; max-width: none; }
  .warehouse-details > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .duscholux-update-heading { align-items: start; }
}

.product-landing-hero { padding: 62px 0 86px; background: radial-gradient(circle at 78% 25%, rgba(193,158,111,.12), transparent 35%), linear-gradient(145deg, #f6f1eb, #fff 72%); border-bottom: 1px solid var(--line); }
.product-landing-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.product-landing-copy h1 { max-width: 760px; margin: 0 0 26px; font-size: clamp(3.2rem, 6vw, 5.7rem); letter-spacing: -.05em; line-height: .98; }
.product-invitation { max-width: 650px; color: #5b554d; font-family: var(--serif); font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.55; }
.product-landing-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.product-landing-media { min-height: 520px; margin: 0; overflow: hidden; background: #eee9e2; border-radius: 10px; box-shadow: 0 24px 64px rgba(48,40,31,.12); }
.product-landing-media img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; }
.product-detail .legacy-source-content { padding-top: clamp(72px, 8vw, 110px); }

.editorial-cover { margin-top: -130px; }
.editorial-cover img { width: 100%; max-height: 680px; display: block; object-fit: contain; background: #f2ede6; border-radius: 10px; box-shadow: var(--shadow); }
.editorial-detail .legacy-source-content { padding-top: clamp(64px, 7vw, 96px); }
.editorial-detail-no-cover .project-header { padding-bottom: 72px; }
.editorial-detail-no-cover .legacy-source-content { padding-top: 72px; }
.editorial-detail .legacy-source-content > .shell > .legacy-content:first-child:not(:empty) { margin-bottom: 55px; }

@media (max-width: 980px) {
  .product-landing-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr); gap: 44px; }
  .product-landing-media,
  .product-landing-media img { min-height: 420px; }
  .legacy-text-media { gap: 38px; }
}

@media (max-width: 760px) {
  .project-detail-facts { grid-template-columns: 1fr; padding: 18px; }
  .project-detail-facts > div,
  .project-detail-facts > div:first-child { padding: 15px 0; border-top: 1px solid #ddcfbe; border-left: 0; }
  .project-detail-facts > div:first-child { padding-top: 0; border-top: 0; }
  .project-detail-facts > div:last-child { padding-bottom: 0; }
  .project-cover-trigger { aspect-ratio: 4 / 3; }
  .legacy-text-media,
  .product-landing-grid { grid-template-columns: 1fr; }
  .legacy-text-media-reverse .legacy-content,
  .legacy-text-media-reverse figure { order: initial; }
  .product-landing-hero { padding: 42px 0 58px; }
  .product-landing-copy h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .product-landing-media { order: -1; min-height: 0; aspect-ratio: 4 / 3; }
  .product-landing-media img { min-height: 0; aspect-ratio: 4 / 3; }
  .migrated-files { grid-template-columns: 1fr; }
  .editorial-cover { margin-top: -48px; }
  .editorial-detail-no-cover .project-header { padding-bottom: 52px; }
  .editorial-detail-no-cover .legacy-source-content { padding-top: 52px; }
}
