:root {
    --clay: #b84f2d;
    --clay-deep: #87371f;
    --copper: #c77a4a;
    --ink: #1c1d1d;
    --ink-soft: #626361;
    --paper: #f8f7f3;
    --warm: #eee5db;
    --white: #fff;
    --line: rgba(28, 29, 29, .13);
    --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; margin: 0; display: flex; flex-direction: column; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; line-height: 1.55; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.site-header { position: relative; z-index: 50; background: rgba(248,247,243,.94); border-bottom: 1px solid var(--line); }
.nav { max-width: var(--maxw); min-height: 78px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: .08em; font-size: 18px; margin-right: auto; }
.brand-mark { width: 31px; height: 31px; padding: 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--clay); border-radius: 2px; }
.brand-mark i { display: block; background: var(--paper); border-radius: 1px; }.brand-mark i:nth-child(2), .brand-mark i:nth-child(3) { background: var(--copper); }
nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
nav a { color: rgba(28,29,29,.72); text-decoration: none; font-size: 13px; font-weight: 600; padding: 8px 0; border-bottom: 2px solid transparent; }
nav a:hover, nav a.active { color: var(--clay); border-color: var(--copper); }
.header-quote { font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.header-quote { padding: 10px 14px; color: var(--paper); background: var(--ink); border-radius: 2px; }.header-quote:hover { background: var(--clay-deep); }
.menu-toggle { display: none; width: 40px; height: 40px; padding: 9px; border: 1px solid var(--line); background: transparent; border-radius: 2px; }.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--ink); transition: .2s; }

.hero { position: relative; min-height: 610px; overflow: hidden; color: var(--ink); background: var(--paper); }
.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); min-height: 548px; margin: 0 auto; padding: 78px 28px 52px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .82fr); gap: 80px; align-items: center; }.hero-copy { width: auto; max-width: 620px; }.eyebrow, .footer-label { color: var(--copper); font: 500 11px "IBM Plex Mono", monospace; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, strong { font-family: "Space Grotesk", sans-serif; } h1 { max-width: 620px; margin: 18px 0; font-size: clamp(42px, 5.6vw, 70px); line-height: 1.03; letter-spacing: -.045em; } h1 em { color: var(--clay); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 520px; color: var(--ink-soft); font-size: 17px; }.cta { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 30px; }.hero .text-link { color: var(--clay); border-color: var(--clay); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 11px 19px; border: 1px solid var(--clay); border-radius: 2px; color: var(--paper); background: var(--clay); text-decoration: none; font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s; }.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-1px); }.btn.secondary { color: var(--ink); background: transparent; border-color: rgba(28,29,29,.25); }.hero .btn.secondary { color: var(--paper); border-color: rgba(248,247,243,.35); }
.hero-image-frame { position: relative; width: 100%; max-width: 500px; margin: 0 0 0 auto; }.hero-image-frame::before { content: ""; position: absolute; top: 20px; left: -20px; z-index: -1; width: 100%; height: 100%; background: var(--clay); }.hero-image-frame img { display: block; width: 100%; height: 380px; object-fit: cover; }.hero-image-frame figcaption { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--ink); color: var(--ink-soft); font: 10px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }.hero-image-frame figcaption span:first-child { color: var(--clay); }.hero-details { max-width: var(--maxw); margin: 0 auto; padding: 17px 28px; display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; gap: 25px; border-top: 1px solid var(--line); color: var(--ink-soft); font: 10px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .07em; }.hero-details span:last-child { color: var(--clay); text-align: right; }.hero-details b { font-size: 14px; }

#app { flex: 1; min-height: 400px; } main { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; } section { display: none; padding: 90px 0; } section.active { display: block; }.section-head { max-width: 700px; margin-bottom: 42px; }.section-head h2 { margin: 0; font-size: clamp(31px, 4vw, 48px); line-height: 1.05; letter-spacing: -.035em; }.section-head p, .meta { color: var(--ink-soft); }.section-head p { max-width: 650px; margin: 14px 0 0; }
.album-section { width: 100vw; max-width: none; min-height: calc(100vh - 78px); margin-left: calc(50% - 50vw); padding: 0; background: var(--warm); }.album-carousel { position: relative; width: 100%; min-height: calc(100vh - 132px); margin: 0; }.album-slide { display: none; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); min-height: calc(100vh - 132px); background: var(--warm); color: var(--ink); }.album-slide.is-active { display: grid; }.album-intro { background: var(--warm); color: var(--ink); }.album-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(34px, 6vw, 88px); }.album-copy h1, .album-copy h2 { margin: 16px 0 20px; max-width: 520px; font-size: clamp(39px, 5.3vw, 76px); line-height: 1.02; letter-spacing: -.045em; }.album-copy h2 { font-size: clamp(31px, 4.5vw, 58px); }.album-copy > p:not(.eyebrow) { max-width: 470px; margin: 0 0 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }.album-product .album-copy > p:not(.eyebrow) { color: var(--ink-soft); }.album-copy em { color: var(--clay); font-style: normal; }.album-copy .text-link { margin-top: 0; color: var(--clay); }.album-product .album-copy .text-link { color: var(--clay); border-color: var(--clay); }.album-image { position: relative; min-height: 100%; margin: 0; overflow: hidden; background: linear-gradient(90deg, var(--warm) 0%, rgba(238,229,219,.35) 10%, rgba(238,229,219,0) 28%), var(--warm); }.album-image img { display: block; width: 100%; height: 100%; min-height: calc(100vh - 132px); object-fit: cover; mix-blend-mode: multiply; }.album-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(238,229,219,.72) 0%, rgba(238,229,219,.08) 18%, transparent 42%), linear-gradient(0deg, rgba(28,29,29,.12), transparent 22%); pointer-events: none; }.album-image figcaption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; display: flex; justify-content: space-between; padding: 13px 18px; color: var(--ink); background: rgba(199,122,74,.82); font: 10px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }.album-navigation { width: 100%; max-width: none; margin: 0; padding: 14px 28px; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); background: var(--warm); font: 11px "IBM Plex Mono", monospace; border-top: 1px solid var(--line); }.album-navigation > span:first-child { color: var(--clay); }.album-total { color: rgba(28,29,29,.35); }.album-dots { display: flex; gap: 7px; margin: 0 auto; }.album-dots button { width: 28px; height: 3px; padding: 0; border: 0; background: rgba(28,29,29,.17); cursor: pointer; }.album-dots button.is-active { background: var(--clay); }.album-navigation > button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }.album-navigation > button:hover { color: var(--paper); background: var(--clay); }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }.product { grid-column: span 4; overflow: hidden; }.card { padding: 0; border: 1px solid var(--line); border-radius: 2px; background: var(--white); box-shadow: none; }.product .media, .product-carousel { width: 100%; aspect-ratio: 4/3; margin: 0; object-fit: cover; border-radius: 0; background: var(--warm); }.product > h3, .product > .meta, .product > .price, .product > div:not(.media):not(.product-carousel), .product > button { margin-left: 22px; margin-right: 22px; }.product h3 { margin-top: 20px; margin-bottom: 5px; font-size: 19px; line-height: 1.2; }.product .meta { font-size: 13px; }.price { color: var(--clay); font: 700 18px "Space Grotesk", sans-serif; margin-top: 12px; }.product .btn { margin-top: 17px; margin-bottom: 22px; }
.showroom-item { display: flex; flex-direction: column; }
.showroom-item .product-actions { display: flex; flex-direction: column; gap: 10px; width: calc(100% - 44px); margin: 17px auto 22px; }
.showroom-item .product-actions .btn { width: 100%; margin: 0; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 24px; }
.product-detail-actions .btn { margin: 0; }
.product-sheet { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; border-top: 3px solid var(--clay); background: var(--warm); }.sheet-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }.sheet-content { position: relative; padding: 34px; }.sheet-content h3 { max-width: 420px; margin: 10px 0; font-size: clamp(26px, 3vw, 42px); line-height: 1.05; }.sheet-close { position: absolute; top: 18px; right: 22px; border: 0; color: var(--ink); background: transparent; font-size: 30px; cursor: pointer; }.spec-list { margin: 25px 0; border-top: 1px solid var(--line); }.spec-list div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }.spec-list dt { color: var(--ink-soft); }.spec-list dd { margin: 0; font-weight: 700; text-align: right; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 0; background: transparent; border: 0; }.about .figure { min-height: 370px; border-radius: 2px; background: repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,.18) 38px 40px), repeating-linear-gradient(90deg, #8a3920 0 120px, #bd5a32 120px 240px, #69301f 240px 360px); }.about ul { list-style: none; margin: 25px 0 0; padding: 0; }.about li { padding: 8px 0 8px 24px; border-top: 1px solid var(--line); position: relative; }.about li::before { content: "↗"; position: absolute; left: 0; color: var(--clay); }
.product-body { padding: 24px 22px; }.product-body h3 { margin: 10px 0 5px; font-size: 20px; }.product-body p { margin: 0; }
.home-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, .72fr); gap: 58px 74px; align-items: end; }.home-intro-copy h2 { max-width: 650px; margin: 0; font-size: clamp(32px, 4vw, 54px); line-height: 1.05; letter-spacing: -.04em; }.home-intro-copy > p:not(.eyebrow) { max-width: 560px; margin: 22px 0 0; color: var(--ink-soft); font-size: 16px; }.text-link { display: inline-block; margin-top: 28px; color: var(--clay); font: 700 13px "Space Grotesk", sans-serif; text-decoration: none; border-bottom: 1px solid var(--clay); }.text-link:hover { color: var(--clay-deep); }.home-intro-visual { position: relative; align-self: center; width: 88%; min-height: 260px; justify-self: end; }.home-intro-visual img { display: block; width: 100%; height: 100%; min-height: 260px; max-height: 310px; object-fit: cover; }.home-intro-visual span { position: absolute; right: -1px; bottom: 0; padding: 9px 12px; color: var(--paper); background: var(--clay); font: 10px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }.material-index { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }.material-index div { display: flex; align-items: center; gap: 16px; min-height: 62px; padding: 12px 18px 12px 0; border-right: 1px solid var(--line); color: var(--ink-soft); font: 13px "Space Grotesk", sans-serif; }.material-index div:not(:first-child) { padding-left: 18px; }.material-index div:last-child { border-right: 0; }.material-index b { color: var(--clay); font: 11px "IBM Plex Mono", monospace; }
.material-story { padding-top: 110px; }.story-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--line); }.story-heading h2 { max-width: 650px; margin: 0; font-size: clamp(34px, 4.5vw, 60px); line-height: .99; letter-spacing: -.045em; }.story-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 58px; align-items: start; padding-top: 34px; }.story-image { position: relative; max-width: 680px; }.story-image img { display: block; width: 100%; height: 330px; object-fit: cover; }.story-image span { position: absolute; left: 0; bottom: 0; padding: 8px 11px; color: var(--paper); background: var(--clay); font: 10px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }.story-copy > p { max-width: 460px; margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }.application-list { margin-top: 34px; border-top: 1px solid var(--line); }.application-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }.application-list b { color: var(--clay); font: 11px "IBM Plex Mono", monospace; }.application-list strong, .application-list small { display: block; }.application-list strong { font-size: 14px; }.application-list small { margin-top: 3px; color: var(--ink-soft); font-size: 12px; }
.home-showcase { width: 100vw; margin-left: calc(50% - 50vw); padding-top: 48px; }.showcase-heading { max-width: var(--maxw); margin: 0 auto 24px; padding: 0 28px; }.showcase-frame { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); min-height: 430px; background: var(--ink); color: var(--paper); }.showcase-image { min-height: 430px; overflow: hidden; }.showcase-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }.showcase-info { display: flex; flex-direction: column; align-items: flex-start; padding: 38px clamp(28px, 5vw, 72px) 38px 38px; }.showcase-count { display: flex; gap: 5px; margin-bottom: 42px; color: var(--copper); font: 12px "IBM Plex Mono", monospace; }.showcase-count span:last-child { color: rgba(248,247,243,.38); }.showcase-info h3 { max-width: 330px; margin: 8px 0 12px; font-size: clamp(25px, 3vw, 40px); line-height: 1.04; }.showcase-info > p:not(.eyebrow) { max-width: 330px; margin: 0; color: rgba(248,247,243,.64); font-size: 14px; }.showcase-info .text-link { margin-top: 24px; color: var(--copper); border-color: var(--copper); }.showcase-controls { display: flex; align-items: center; gap: 14px; width: 100%; margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(248,247,243,.18); }.showcase-controls button { width: 34px; height: 34px; border: 1px solid rgba(248,247,243,.3); border-radius: 50%; color: var(--paper); background: transparent; cursor: pointer; }.showcase-controls button:hover { border-color: var(--copper); color: var(--copper); }.showcase-dots { display: flex; gap: 6px; margin: 0 auto; }.showcase-dots button { width: 7px; height: 7px; padding: 0; border: 0; background: rgba(248,247,243,.3); }.showcase-dots button.active { background: var(--copper); }
.product-detail { max-width: 1080px; margin: 0 auto; }.back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px; color: var(--ink-soft); text-decoration: none; font: 600 13px "Space Grotesk", sans-serif; }.back-link:hover { color: var(--clay); }.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 54px; align-items: start; }.product-detail-images { min-width: 0; }.product-detail-carousel { max-width: 520px; }.detail-carousel-container { position: relative; width: 100%; aspect-ratio: 1 / .88; overflow: hidden; background: var(--warm); border: 1px solid var(--line); }.detail-carousel-track { position: relative; width: 100%; height: 100%; }.detail-carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease; pointer-events: none; }.detail-carousel-slide.active { opacity: 1; pointer-events: auto; }.detail-main-image { display: block; width: 100%; height: 100%; object-fit: cover; }.detail-carousel-btn { position: absolute; top: 50%; z-index: 2; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: rgba(248,247,243,.9); transform: translateY(-50%); cursor: pointer; font-size: 22px; line-height: 1; }.detail-carousel-btn:hover { color: var(--paper); background: var(--clay); }.detail-carousel-prev { left: 12px; }.detail-carousel-next { right: 12px; }.detail-carousel-thumbnails { display: flex; gap: 8px; margin-top: 10px; }.detail-thumbnail { width: 62px; height: 52px; padding: 0; overflow: hidden; border: 1px solid var(--line); background: var(--warm); cursor: pointer; opacity: .62; }.detail-thumbnail.active, .detail-thumbnail:hover { border: 2px solid var(--clay); opacity: 1; }.detail-thumbnail img { width: 100%; height: 100%; object-fit: cover; }.product-detail-info { padding-top: 8px; }.product-detail-info h2 { max-width: 470px; margin: 0 0 14px; font-size: clamp(32px, 4vw, 52px); line-height: 1.03; letter-spacing: -.04em; }.product-detail-info > p { max-width: 470px; }.product-specifications { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }.product-specifications h3 { margin: 0 0 14px; font-size: 18px; }.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }.spec-item { display: flex; flex-direction: column; gap: 3px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; }.spec-key { color: var(--ink-soft); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 400; text-transform: uppercase; letter-spacing: .04em; }.spec-value { font-weight: 600; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.full { grid-column: 1 / -1; }label { display: block; color: var(--ink-soft); font: 11px "IBM Plex Mono", monospace; letter-spacing: .07em; text-transform: uppercase; }input, textarea, select { width: 100%; margin-top: 7px; padding: 12px; border: 1px solid var(--line); border-radius: 2px; background: var(--white); color: var(--ink); font-size: 14px; }textarea { resize: vertical; min-height: 120px; }
footer { margin-top: auto; color: rgba(248,247,243,.7); background: var(--ink); }.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 58px 28px 40px; display: grid; grid-template-columns: 1.3fr 1.2fr 1fr 1fr; gap: 54px; }.footer-brand strong { color: var(--clay); font-size: 23px; letter-spacing: .08em; }.footer-inner p { max-width: 260px; margin: 13px 0 0; color: rgba(248,247,243,.56); font-size: 13px; }.footer-inner a { display: block; margin-top: 10px; color: rgba(248,247,243,.78); text-decoration: none; font: 13px "IBM Plex Mono", monospace; }.footer-inner a:hover { color: var(--copper); }.footer-label { display: block; margin-bottom: 14px; color: var(--clay); font: 500 11px "IBM Plex Mono", monospace; letter-spacing: .16em; text-transform: uppercase; }.contact-icon { display: inline-grid; width: 22px; height: 22px; margin-right: 5px; place-items: center; border: 1px solid rgba(199,122,74,.55); border-radius: 50%; color: var(--copper); font-family: sans-serif; }.footer-address { margin-top: 18px !important; line-height: 1.55; }.address-indent { padding-left: 32px; color: rgba(248,247,243,.52); }.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 10px; }.social-links a { display: flex; align-items: center; gap: 8px; margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 13px; }.social-icon { display: inline-grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(199,122,74,.7); border-radius: 50%; color: var(--clay); font-size: 17px; }.social-links a:hover .social-icon { color: var(--paper); background: var(--clay); }.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 20px 28px; border-top: 1px solid rgba(248,247,243,.12); color: rgba(248,247,243,.4); font: 11px "IBM Plex Mono", monospace; }.toast { position: fixed; left: 50%; bottom: 22px; z-index: 300; padding: 11px 16px; color: var(--paper); background: var(--clay); transform: translate(-50%, 20px); opacity: 0; pointer-events: none; transition: .25s; }.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) { nav ul { gap: 12px; }.header-quote { display: none; }.product { grid-column: span 6; }.about { grid-template-columns: 1fr; }.about .figure { min-height: 280px; } }
@media (max-width: 680px) { .nav { min-height: 66px; padding: 0 18px; gap: 12px; }.menu-toggle { display: block; }.nav nav ul { position: absolute; top: 66px; left: 0; right: 0; display: none; padding: 12px 18px 18px; background: var(--paper); border-top: 1px solid var(--line); }.nav nav ul.mobile-open { display: block; }.nav nav li { border-bottom: 1px solid var(--line); }.nav nav a { display: block; padding: 13px 0; }.hero, .hero-inner { min-height: 680px; }.hero-inner { padding: 78px 18px 36px; display: block; }.hero h1 { font-size: clamp(42px, 13vw, 62px); }.hero-copy { width: 100%; }.hero-copy > p:not(.eyebrow) { font-size: 15px; }.hero-facts { margin-top: 48px; gap: 12px; }.hero-facts dd { font-size: 11px; }.hero-note { display: none; }main { padding: 0 18px; }section { padding: 64px 0; }.product { grid-column: span 12; }.grid { gap: 14px; }.about .figure { min-height: 220px; }.home-intro { grid-template-columns: 1fr; gap: 34px; }.home-intro-visual { min-height: 250px; }.home-intro-visual img { min-height: 250px; }.material-index { grid-template-columns: 1fr; }.material-index div, .material-index div:not(:first-child) { padding-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }.material-index div:last-child { border-bottom: 0; }.material-story { padding-top: 74px; }.story-heading { grid-template-columns: 1fr; gap: 16px; }.story-heading h2 { font-size: 38px; }.story-layout { grid-template-columns: 1fr; gap: 28px; }.story-image img { height: 240px; }.story-copy > p { font-size: 15px; }form { grid-template-columns: 1fr; }.full { grid-column: auto; }.footer-inner { grid-template-columns: 1fr; padding: 44px 18px 28px; gap: 28px; }.footer-bottom { padding: 18px; }.product-sheet { grid-template-columns: 1fr; }.sheet-image img { min-height: 230px; max-height: 280px; }.sheet-content { padding: 26px 20px; }.spec-list div { display: grid; gap: 3px; }.spec-list dd { text-align: left; }.product-detail-grid { grid-template-columns: 1fr; gap: 34px; }.product-detail-carousel { max-width: 100%; }.detail-carousel-container { aspect-ratio: 1 / .86; }.product-detail-info { padding-top: 0; }.product-detail-info h2 { font-size: 36px; }.specs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .home-intro-visual { width: 100%; }.home-intro-visual img { max-height: 260px; }.showcase-frame { grid-template-columns: 1fr; min-height: 0; }.showcase-image { min-height: 260px; height: 260px; }.showcase-info { min-height: 360px; padding: 26px 20px; }.showcase-count { margin-bottom: 28px; } }
@media (max-width: 680px) { .hero { min-height: 670px; }.hero-wall { inset: auto 0 0; width: 100%; height: 34%; opacity: .72; }.hero-overlay { background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 58%, rgba(28,29,29,.3) 100%); }.hero-inner { min-height: 670px; padding: 72px 18px 28px; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 28px; }.hero-copy { width: 100%; }.hero h1 { max-width: 390px; font-size: clamp(39px, 12vw, 56px); }.hero-copy > p:not(.eyebrow) { max-width: 390px; font-size: 15px; }.hero-material-card { width: min(235px, 72%); align-self: flex-end; padding: 18px; }.hero-card-label { margin-bottom: 22px; }.hero-material-card p { margin-bottom: 18px; }.hero .text-link { font-size: 12px; } }
@media (max-width: 680px) { .hero { min-height: 720px; color: var(--paper); background: var(--ink); }.hero-inner { min-height: 620px; padding-top: 68px; }.hero-wall { display: block; inset: auto 0 0; width: 100%; height: 31%; opacity: .8; }.hero-overlay { background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 63%, rgba(28,29,29,.2) 100%); }.hero-copy > p:not(.eyebrow) { color: rgba(248,247,243,.7); }.hero .text-link { color: var(--paper); border-color: var(--copper); }.hero-image-frame { width: 100%; max-width: none; margin: 0; }.hero-image-frame::before { top: 12px; left: -10px; }.hero-image-frame img { height: 250px; }.hero-image-frame figcaption { color: rgba(248,247,243,.72); border-color: rgba(248,247,243,.35); }.hero-image-frame figcaption span:first-child { color: var(--copper); }.hero-details { grid-template-columns: 1fr; gap: 8px; padding: 14px 18px; color: rgba(248,247,243,.6); background: var(--ink); }.hero-details span:last-child { text-align: left; color: var(--copper); } }
@media (max-width: 680px) { .album-section { min-height: calc(100vh - 66px); padding: 0; }.album-carousel { min-height: calc(100vh - 116px); }.album-slide { grid-template-columns: 1fr; min-height: calc(100vh - 116px); }.album-copy { min-height: 360px; padding: 30px 22px; }.album-copy h1, .album-copy h2 { font-size: 42px; }.album-copy > p:not(.eyebrow) { font-size: 14px; }.album-image { min-height: 300px; height: 300px; }.album-image img { min-height: 300px; }.album-product .album-copy { min-height: 300px; }.album-navigation { margin: 0; padding: 12px 18px; }.album-dots { gap: 4px; }.album-dots button { width: 16px; }.album-intro .album-image { order: -1; }.album-intro .album-copy { order: 1; } }
.album-slide-index { display: block; margin-bottom: 14px; color: var(--clay); font: 10px "IBM Plex Mono", monospace; letter-spacing: .15em; }

/* Composición horizontal contenida: texto y muestra de material en paralelo. */
.album-section { min-height: calc(100vh - 78px); padding: 42px 5vw 28px; background: var(--warm); }
.album-carousel { width: 100%; max-width: 1180px; min-height: 0; margin: 0 auto; }
.album-slide { display: none; grid-template-columns: minmax(0, 1.18fr) minmax(270px, .72fr); min-height: 470px; background: var(--warm); color: var(--ink); }
.album-slide.is-active { display: grid; }
.album-copy, .album-intro .album-copy, .album-product .album-copy { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; min-height: 470px; padding: 42px 40px 42px 4px; background: var(--warm); }
.album-copy .album-slide-index, .album-copy .eyebrow, .album-copy h1, .album-copy h2, .album-copy > p:not(.eyebrow), .album-copy > .btn, .album-copy > .text-link { display: block; grid-column: auto; grid-row: auto; }
.album-copy h1, .album-copy h2 { margin: 14px 0 18px; }
.album-copy > p:not(.eyebrow) { margin-bottom: 25px; }
.album-image, .album-intro .album-image { grid-column: 2; grid-row: 1; align-self: center; width: 100%; height: 380px; min-height: 0; margin: 0; background: var(--warm); }
.album-image img { width: 100%; height: 350px; min-height: 0; object-fit: cover; mix-blend-mode: normal; }
.album-image::after { display: none; }
.album-image figcaption { position: static; padding: 10px 0; color: var(--ink); background: transparent; border-bottom: 1px solid var(--ink); }
.album-navigation { max-width: 1180px; margin: 18px auto 0; padding: 13px 0; background: var(--warm); }

/* Portada tipo álbum: una carátula material, no una tarjeta de e-commerce. */
.album-section { min-height: calc(100vh - 78px); padding: 34px 5vw 22px; background: var(--warm); }
.album-carousel { max-width: 1180px; min-height: calc(100vh - 178px); }
.album-slide { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); min-height: calc(100vh - 178px); background: var(--warm); }
.album-copy, .album-intro .album-copy, .album-product .album-copy { grid-column: 1; grid-row: 1; min-height: 0; padding: 48px 48px 48px 16px; background: var(--warm); }
.album-copy h1, .album-copy h2 { max-width: 570px; margin: 15px 0 20px; font-size: clamp(42px, 5.2vw, 76px); }
.album-copy > p:not(.eyebrow) { max-width: 470px; color: var(--ink-soft); }
.album-image, .album-intro .album-image { grid-column: 2; grid-row: 1; position: relative; align-self: center; justify-self: end; width: min(100%, 430px); height: auto; aspect-ratio: 1 / 1; margin: 0 25px 18px 0; overflow: visible; background: transparent; }
.album-image::before { content: ""; position: absolute; top: 18px; left: -16px; width: 100%; height: 100%; background: var(--clay); border-radius: 0; transform: none; z-index: 0; }
.album-image img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; border: 0; filter: sepia(.12) saturate(.86) contrast(1.05); }
.album-image figcaption { position: absolute; right: 0; bottom: -1px; left: 0; z-index: 2; padding: 10px 12px; color: var(--paper); background: rgba(28,29,29,.78); border: 0; font-size: 9px; }
.album-intro .album-image figcaption { color: var(--paper); background: var(--clay); }
.album-navigation { max-width: 1180px; margin: 20px auto 0; padding: 13px 0; background: var(--warm); }
@media (max-width: 680px) {
    .album-section { min-height: calc(100vh - 66px); padding: 18px 0 20px; }
    .album-carousel { min-height: 0; }
    .album-slide { grid-template-columns: 1fr; min-height: 0; }
    .album-image, .album-intro .album-image { grid-column: 1; grid-row: 1; width: min(78vw, 330px); height: auto; aspect-ratio: 1; margin: 12px 34px 22px auto; }
    .album-image::before { top: 14px; left: 14px; transform: translateX(14px); }
    .album-image img { border-width: 7px; }
    .album-copy, .album-intro .album-copy, .album-product .album-copy { grid-column: 1; grid-row: 2; min-height: 310px; padding: 28px 20px 30px; }
    .album-copy h1, .album-copy h2 { font-size: 38px; }
    .album-copy > p:not(.eyebrow) { font-size: 14px; }
    .album-navigation { margin: 12px 18px 0; padding: 10px 0; }
}

/* Composición de referencia: texto lateral y carátula con bloque terracota inferior. */
.album-section { min-height: calc(100vh - 78px); padding: 34px 7vw 28px; background: #eee8df; }
.album-carousel { max-width: 1120px; min-height: 680px; margin: 0 auto; }
.album-slide { grid-template-columns: minmax(230px, .42fr) minmax(520px, 1fr); min-height: 680px; background: #eee8df; }
.album-copy, .album-intro .album-copy, .album-product .album-copy { grid-column: 1; grid-row: 1; justify-content: center; min-height: 680px; padding: 50px 24px 50px 0; background: #eee8df; }
.album-copy .album-slide-index, .album-copy .eyebrow { margin: 0 0 6px; }
.album-copy h1, .album-copy h2 { max-width: 245px; margin: 8px 0 12px; font-size: clamp(32px, 3.8vw, 54px); line-height: 1.02; }
.album-copy > p:not(.eyebrow) { max-width: 245px; margin: 0 0 18px; font-size: 13px; line-height: 1.45; }
.album-copy > .btn, .album-copy > .text-link { margin-top: 0; }
.album-image, .album-intro .album-image { grid-column: 2; grid-row: 1; align-self: center; justify-self: stretch; width: 100%; height: 680px; aspect-ratio: auto; margin: 0; overflow: hidden; background: var(--clay); }
.album-image::before { display: none; }
.album-image img { width: 100%; height: 62%; min-height: 0; object-fit: cover; border: 0; filter: sepia(.08) saturate(.86) contrast(1.04); }
.album-image figcaption { position: static; display: flex; height: 38%; align-items: flex-end; padding: 0 16px 16px; color: rgba(28,29,29,.68); background: var(--clay); border: 0; font-size: 9px; }
.album-intro .album-image figcaption { color: rgba(28,29,29,.68); background: var(--clay); }
.album-navigation { max-width: 1120px; margin: 16px auto 0; padding: 12px 0; background: #eee8df; }
@media (max-width: 680px) {
    .album-section { padding: 18px 0 20px; }
    .album-carousel, .album-slide { min-height: 0; }
    .album-slide { grid-template-columns: 1fr; }
    .album-image, .album-intro .album-image { grid-column: 1; grid-row: 1; height: 410px; }
    .album-image img { height: 67%; }
    .album-image figcaption { height: 33%; padding: 0 14px 13px; }
    .album-copy, .album-intro .album-copy, .album-product .album-copy { grid-column: 1; grid-row: 2; min-height: 310px; padding: 30px 20px 34px; }
    .album-copy h1, .album-copy h2 { max-width: 350px; font-size: 38px; }
    .album-copy > p:not(.eyebrow) { max-width: 350px; font-size: 14px; }
}
@media (max-width: 680px) {
    .album-section { min-height: calc(100vh - 66px); padding: 18px 0 20px; }
    .album-carousel { min-height: 0; }
    .album-slide { grid-template-columns: 1fr; min-height: 0; }
    .album-copy, .album-intro .album-copy, .album-product .album-copy { grid-column: 1; grid-row: 2; min-height: 330px; padding: 28px 20px 30px; }
    .album-image, .album-intro .album-image { grid-column: 1; grid-row: 1; height: 270px; min-height: 0; }
    .album-image img { height: 238px; min-height: 0; }
    .album-image figcaption { padding: 9px 18px; }
    .album-copy h1, .album-copy h2 { font-size: 38px; }
    .album-navigation { margin: 12px 18px 0; padding: 10px 0; }
}

/* Carrusel estándar: imagen limpia arriba, información separada abajo. */
.album-section { background: var(--warm); }
.album-carousel { min-height: calc(100vh - 142px); }
.album-slide { display: none; grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) auto; min-height: calc(100vh - 142px); background: var(--warm); color: var(--ink); }
.album-slide.is-active { display: grid; }
.album-image { grid-row: 1; width: 100%; min-height: 0; background: var(--warm); }
.album-image img { width: 100%; height: min(68vh, 610px); min-height: 0; object-fit: cover; mix-blend-mode: normal; }
.album-image::after { display: none; }
.album-image figcaption { position: static; padding: 12px 28px; color: var(--ink); background: var(--copper); }
.album-copy { grid-row: 2; display: grid; grid-template-columns: minmax(210px, .7fr) minmax(280px, 1.3fr); grid-template-rows: auto auto; column-gap: 48px; align-items: center; min-height: 170px; padding: 28px 7vw; background: var(--warm); }
.album-copy .eyebrow, .album-copy .album-slide-index { grid-column: 1; margin: 0; }
.album-copy h1, .album-copy h2 { grid-column: 1; grid-row: 1 / span 2; margin: 0; font-size: clamp(30px, 4vw, 56px); }
.album-copy > p:not(.eyebrow) { grid-column: 2; grid-row: 1; max-width: 480px; margin: 0; }
.album-copy > .btn, .album-copy > .text-link { grid-column: 2; grid-row: 2; justify-self: start; margin-top: 18px; }
.album-intro .album-copy { background: var(--warm); }
.album-navigation { padding: 13px 28px; background: var(--warm); }
.album-navigation > button { border-radius: 2px; }
.album-copy .album-slide-index { grid-column: 1; grid-row: 1; }
.album-product .album-copy .eyebrow { grid-column: 1; grid-row: 2; }
.album-product .album-copy h2 { grid-column: 1; grid-row: 3; }
.album-product .album-copy > p:not(.eyebrow) { grid-column: 2; grid-row: 1 / span 2; }
.album-product .album-copy > .text-link { grid-column: 2; grid-row: 3; }
.album-intro .album-copy .eyebrow { grid-column: 1; grid-row: 1; }
.album-intro .album-copy h1 { grid-column: 1; grid-row: 2 / span 2; }
.album-intro .album-copy > p:not(.eyebrow) { grid-column: 2; grid-row: 1 / span 2; }
.album-intro .album-copy > .btn { grid-column: 2; grid-row: 3; }
@media (max-width: 680px) {
    .album-carousel, .album-slide { min-height: calc(100vh - 116px); }
    .album-slide { grid-template-rows: minmax(0, 1fr) auto; }
    .album-image, .album-intro .album-image { grid-row: 1; order: 0; min-height: 0; height: auto; }
    .album-image img { height: 43vh; min-height: 250px; }
    .album-image figcaption { padding: 10px 18px; font-size: 9px; }
    .album-copy, .album-intro .album-copy, .album-product .album-copy { grid-row: 2; display: flex; min-height: 0; padding: 24px 20px 28px; gap: 0; }
    .album-copy .album-slide-index, .album-copy .eyebrow, .album-copy h1, .album-copy h2, .album-copy > p:not(.eyebrow), .album-copy > .btn, .album-copy > .text-link { display: block; grid-column: auto; grid-row: auto; }
    .album-copy h1, .album-copy h2 { margin: 10px 0 14px; font-size: 36px; }
    .album-copy > p:not(.eyebrow) { margin-bottom: 18px; font-size: 14px; }
    .album-navigation { padding: 11px 18px; }
}
@media (max-width: 680px) { .hero-wall { top: auto; width: 100%; height: 42%; clip-path: none; opacity: .82; }.hero-overlay { background: linear-gradient(180deg, var(--paper) 0%, rgba(248,247,243,.97) 53%, rgba(248,247,243,.12) 100%); }.hero .btn.secondary { color: var(--ink); border-color: rgba(28,29,29,.25); }.hero-inner { min-height: 680px; } }

/* =========================================================
   REVESKO — DIRECCIÓN EDITORIAL / ESTUDIO DE SUPERFICIES
   Última capa de estilos: mantiene la arquitectura existente
   y redefine la portada sin romper el resto de la aplicación.
   ========================================================= */
:root {
    --paper: #F8F7F4;
    --warm: #F8F7F4;
    --ink: #121212;
    --ink-soft: #64615d;
    --clay: #B8502E;
    --clay-deep: #963d24;
    --copper: #B8502E;
    --line: rgba(18,18,18,.16);
}

.editorial-home {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding: 0 24px 0;
    background: var(--paper);
}

.editorial-home .album-carousel {
    width: min(1180px, 100%);
    min-height: 0;
    margin: 0 auto;
    padding: 48px 22px 42px;
}

.editorial-home .album-slide {
    position: relative;
    grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr);
    gap: clamp(42px, 6vw, 78px);
    min-height: 570px;
    background: var(--paper);
}

.editorial-home .album-slide.is-active {
    animation: editorialSlideIn .55s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes editorialSlideIn {
    from { opacity: .15; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.editorial-home .album-copy,
.editorial-home .album-intro .album-copy,
.editorial-home .album-product .album-copy {
    grid-column: 1;
    grid-row: 1;
    min-height: 570px;
    padding: 34px 0 34px 0;
    justify-content: center;
    background: transparent;
}

.editorial-home .album-copy .eyebrow {
    margin: 0 0 10px;
    color: var(--clay);
    font-size: 10px;
    letter-spacing: .18em;
}

.editorial-home .album-copy h1,
.editorial-home .album-copy h2 {
    max-width: 610px;
    margin: 7px 0 22px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(48px, 5.25vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
}

.editorial-home .album-copy h1 span,
.editorial-home .album-copy h2 {
    display: block;
    color: var(--ink);
}

.editorial-home .album-copy h1 em {
    display: block;
    color: var(--clay);
    font-style: normal;
}

.editorial-home .album-copy > p:not(.eyebrow) {
    max-width: 510px;
    margin: 0 0 24px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

.editorial-home .album-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.editorial-home .album-actions .btn {
    min-height: 45px;
    padding: 11px 17px;
    border-radius: 1px;
    background: var(--clay);
    border-color: var(--clay);
    color: #fff;
}

.editorial-home .album-actions .btn:hover {
    background: var(--clay-deep);
    border-color: var(--clay-deep);
}

.editorial-home .album-actions .text-link,
.editorial-home .album-copy > .text-link {
    margin-top: 0;
    color: var(--clay);
    border-bottom: 1px solid currentColor;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.editorial-home .album-actions .text-link:hover,
.editorial-home .album-copy > .text-link:hover {
    color: var(--clay-deep);
}

.editorial-home .album-slide-index {
    display: block;
    margin-bottom: 5px;
    color: var(--clay);
    font: 500 9px "IBM Plex Mono", monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.editorial-home .album-product .album-copy h2 {
    max-width: 500px;
    font-size: clamp(40px, 4.7vw, 64px);
}

.editorial-home .album-image,
.editorial-home .album-intro .album-image {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    align-self: center;
    justify-self: end;
    width: min(100%, 520px);
    height: 470px;
    min-height: 0;
    margin: 0 16px 22px 0;
    overflow: visible;
    background: transparent;
}

.editorial-home .album-image::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 17px;
    left: -16px;
    width: 100%;
    height: 100%;
    background: var(--clay);
}

.editorial-home .album-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: calc(100% - 48px);
    min-height: 0;
    object-fit: cover;
    border: 0;
    filter: saturate(.88) contrast(1.03);
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.editorial-home .album-slide.is-active .album-image img {
    transform: scale(1.002);
}

.editorial-home .album-image::after {
    display: none;
}

.editorial-home .album-image figcaption,
.editorial-home .album-intro .album-image figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 48px;
    padding: 0 4px;
    color: rgba(18,18,18,.66);
    background: transparent;
    border: 0;
    font: 9px "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.editorial-home .album-image figcaption span:first-child {
    color: var(--clay);
}

.editorial-home .album-navigation {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 12px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.editorial-home .album-navigation > span:first-child {
    color: var(--clay);
}

.editorial-home .album-dots {
    gap: 5px;
}

.editorial-home .album-dots button {
    width: 24px;
    height: 2px;
    background: rgba(18,18,18,.18);
    transition: width .25s ease, background .25s ease;
}

.editorial-home .album-dots button.is-active {
    width: 38px;
    background: var(--clay);
}

.editorial-home .album-navigation > button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.editorial-home .album-navigation > button:hover {
    color: #fff;
    background: var(--clay);
    border-color: var(--clay);
}

.editorial-home .editorial-strip {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 16px 0 19px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 24px;
    border-top: 1px solid var(--line);
    color: rgba(18,18,18,.62);
    font: 9px "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.editorial-home .editorial-strip span:nth-child(2) {
    text-align: center;
}

.editorial-home .editorial-strip a {
    color: var(--clay);
    text-align: right;
    text-decoration: none;
}

.editorial-home .editorial-strip a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 900px) {
    .editorial-home { padding: 0 16px; }
    .editorial-home .album-carousel { padding: 34px 10px 30px; }
    .editorial-home .album-slide {
        grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
        gap: 34px;
        min-height: 520px;
    }
    .editorial-home .album-copy,
    .editorial-home .album-intro .album-copy,
    .editorial-home .album-product .album-copy { min-height: 520px; }
    .editorial-home .album-copy h1,
    .editorial-home .album-copy h2 { font-size: clamp(42px, 6vw, 60px); }
    .editorial-home .album-image { height: 420px; }
}

@media (max-width: 680px) {
    .editorial-home { padding: 0; }
    .editorial-home .album-carousel { padding: 24px 18px 28px; }
    .editorial-home .album-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        min-height: 0;
    }
    .editorial-home .album-image,
    .editorial-home .album-intro .album-image {
        grid-column: 1;
        grid-row: 1;
        width: calc(100% - 16px);
        height: 330px;
        margin: 0 0 30px 16px;
    }
    .editorial-home .album-image img { height: calc(100% - 42px); }
    .editorial-home .album-image figcaption { height: 42px; font-size: 8px; }
    .editorial-home .album-copy,
    .editorial-home .album-intro .album-copy,
    .editorial-home .album-product .album-copy {
        grid-column: 1;
        grid-row: 2;
        min-height: 0;
        padding: 0 4px 8px;
    }
    .editorial-home .album-copy h1,
    .editorial-home .album-copy h2,
    .editorial-home .album-product .album-copy h2 {
        max-width: 100%;
        margin: 8px 0 18px;
        font-size: clamp(40px, 12vw, 54px);
    }
    .editorial-home .album-copy > p:not(.eyebrow) {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 14px;
    }
    .editorial-home .album-actions { gap: 16px; }
    .editorial-home .album-navigation {
        width: calc(100% - 36px);
        margin: 0 auto;
    }
    .editorial-home .editorial-strip {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 0 22px;
    }
    .editorial-home .editorial-strip span:nth-child(2),
    .editorial-home .editorial-strip a { text-align: left; }
}

/* Controles flotantes del carrusel, alineados con la referencia editorial. */
.editorial-home .album-carousel {
    position: relative;
}

.editorial-home .album-navigation {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    pointer-events: none;
}

.editorial-home .album-navigation > span {
    display: none;
}

.editorial-home .album-navigation > button {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--clay);
    background: transparent;
    font-size: 0;
    pointer-events: auto;
    transform: translateY(-50%);
}

.editorial-home .album-navigation > button::before {
    display: block;
    font: 24px/1 "DM Sans", sans-serif;
}

.editorial-home .album-navigation > button:hover {
    color: var(--clay-deep);
    background: rgba(184, 80, 46, .08);
}

.editorial-home #album-prev {
    left: -44px;
}

.editorial-home #album-prev::before {
    content: "<";
}

.editorial-home #album-next {
    right: -44px;
}

.editorial-home #album-next::before {
    content: ">";
}

.editorial-home .album-dots {
    position: absolute;
    right: 0;
    bottom: 60px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
    pointer-events: auto;
}

.editorial-home .album-dots button {
    width: 30px;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(18, 18, 18, .2);
    transition: width .25s ease, background .25s ease;
}

.editorial-home .album-dots button.is-active {
    width: 48px;
    background: var(--clay);
}

.editorial-home .editorial-strip {
    display: none;
}

@media (max-width: 680px) {
    .editorial-home .album-navigation {
        width: 100%;
    }

    .editorial-home .album-navigation > button {
        display: none;
    }

    .editorial-home .album-slide {
        display: none;
        flex-direction: column;
    }

    .editorial-home .album-slide.is-active {
        display: flex;
        animation-name: editorialSlideInHorizontal;
    }

    @keyframes editorialSlideInHorizontal {
        from { opacity: .15; transform: translateX(24px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .editorial-home .album-copy,
    .editorial-home .album-intro .album-copy,
    .editorial-home .album-product .album-copy {
        order: 1;
    }

    .editorial-home .album-image,
    .editorial-home .album-intro .album-image {
        order: 2;
        margin-top: 28px;
    }

    .editorial-home .album-dots {
        bottom: 44px;
    }
}

@media (min-width: 681px) and (max-width: 900px) {
    .editorial-home #album-prev { left: -18px; }
    .editorial-home #album-next { right: -18px; }
}

@media (max-width: 680px) {
    html { overflow-x: hidden; }
    main { width: 100%; max-width: none; padding: 0 18px; }
    section { padding: 52px 0; }
    section h2 { max-width: 100%; font-size: clamp(30px, 9vw, 42px); }
    .section-head { margin-bottom: 30px; }
    .section-head p { font-size: 14px; }
    img { max-width: 100%; }

    .grid { grid-template-columns: 1fr; gap: 18px; }
    .grid > [style*="grid-column"] { grid-column: 1 / -1 !important; }
    .grid > .card:not(.product) { padding: 20px !important; }

    .product { grid-column: 1 / -1; min-width: 0; }
    .product h3 { font-size: 18px; }
    .product > h3,
    .product > .meta,
    .product > .price,
    .product > div:not(.media):not(.product-carousel),
    .product > button { margin-right: 18px; margin-left: 18px; }
    .product .btn { width: calc(100% - 36px); }

    .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .product-detail-carousel { width: 100%; max-width: none; }
    .detail-carousel-container { aspect-ratio: 1 / .86; }
    .product-detail-info { padding-top: 0; }
    .product-detail-info h2 { font-size: clamp(30px, 9vw, 44px); }
    .product-sheet { grid-template-columns: 1fr; }
    .sheet-content { padding: 22px 18px; }
    .sheet-image img { min-height: 220px; max-height: 280px; }

    .about { grid-template-columns: 1fr; gap: 28px; }
    .about .figure { min-height: 220px; }
    .home-intro { grid-template-columns: 1fr; gap: 28px; }
    .home-intro-visual { width: 100%; min-height: 220px; }
    .home-intro-visual img { min-height: 220px; max-height: 270px; }
    .material-index { grid-template-columns: 1fr; }
    .story-heading,
    .story-layout { grid-template-columns: 1fr; gap: 20px; }
    .story-image img { height: 240px; }

    .showcase-frame { grid-template-columns: 1fr; min-height: 0; }
    .showcase-image { min-height: 250px; height: 250px; }
    .showcase-info { min-height: 350px; padding: 26px 20px; }
    .showcase-info h3 { font-size: 30px; }

    form { grid-template-columns: 1fr; gap: 14px; }
    form .full { grid-column: 1 / -1; }
    form .btn { width: 100%; }
    .chat-input { flex-wrap: wrap; }
    .chat-input input { min-width: 0; }
    .chat-input .btn { flex: 0 0 auto; }

    .footer-inner { grid-template-columns: 1fr; gap: 26px; padding: 42px 18px 28px; }
    .footer-bottom { padding: 18px; line-height: 1.5; }
    .social-links { grid-template-columns: 1fr 1fr; }
}

.contact-map {
    margin-top: 34px;
}

.contact-map-title {
    margin: 0 0 12px;
    color: var(--clay);
    font: 500 11px "IBM Plex Mono", monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 1px solid var(--line);
    filter: saturate(.72) contrast(.96);
}

.contact-map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--clay);
    font: 700 12px "Space Grotesk", sans-serif;
    text-decoration: none;
}

.contact-map-link:hover {
    color: var(--clay-deep);
}

@media (max-width: 680px) {
    .contact-map {
        margin-top: 30px;
    }

    .contact-map iframe {
        height: 210px;
    }

    .contact-intro {
        display: contents;
    }

    .contact-intro > .eyebrow { order: 1; }
    .contact-intro > h2 { order: 2; }
    .contact-intro > .meta { order: 3; }
    .contact-intro > .contact-map { order: 5; }
    #contact-form { order: 4; }
}