:root {
    --sand: #e9dfcf;
    --paper: #fffdf7;
    --ink: #142331;
    --muted: #5f6c73;
    --line: #dacdbb;
    --accent: #0e7892;
    --accent-soft: #42b7aa;
    --accent-dark: #0b4d60;
    --brass: #b58b3f;
    --brass-soft: #ead7ad;
    --shadow: 0 24px 70px rgba(20, 36, 48, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Helvetica, Arial, sans-serif;
    background:
        radial-gradient(circle at 6% 4%, rgba(181, 139, 63, 0.24), transparent 24%),
        radial-gradient(circle at 92% 10%, rgba(66, 183, 170, 0.22), transparent 30%),
        linear-gradient(180deg, #f9f3e8 0%, var(--sand) 100%);
}

.site-shell {
    width: min(100%, 1680px);
    max-width: none;
    margin: 0 auto;
    padding: 22px 28px 40px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 26px;
    padding: 16px 20px;
    background: rgba(255, 253, 247, 0.9);
    border: 1px solid rgba(217, 207, 191, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 5px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(217, 207, 191, 0.95);
    box-shadow: 0 10px 28px rgba(20, 36, 48, 0.08);
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: min(540px, 42vw);
    text-decoration: none;
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.brand-kicker,
.eyebrow,
.card-label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
}

.brand-name {
    color: var(--ink);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.locale-nav {
    display: flex;
    gap: 8px;
}

.locale-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 9px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid transparent;
    font-size: 0.86rem;
    font-weight: 700;
}

.locale-nav a.active,
.locale-nav a:hover {
    border-color: rgba(17, 117, 166, 0.18);
    background: white;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid transparent;
}

.site-nav a.active,
.site-nav a:hover {
    border-color: rgba(17, 117, 166, 0.18);
    background: white;
}

.hero-panel,
.split-panel {
    display: grid;
    grid-template-columns: 1.55fr 0.95fr;
    gap: 20px;
}

.hero-panel {
    margin-bottom: 22px;
}

.hero-panel-final {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.hero-copy,
.hero-card,
.feature-card,
.content-page,
.split-panel article,
.placeholder-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: 50px 44px;
}

.hero-copy::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    content: "";
    border-radius: 999px;
    background: radial-gradient(circle, rgba(181, 139, 63, 0.18), transparent 68%);
    pointer-events: none;
}

.hero-copy h1,
.content-page h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 0.95;
}

.hero-copy h1 {
    max-width: 820px;
    font-size: clamp(2.7rem, 5vw, 5.6rem);
    letter-spacing: -0.055em;
}

.lead {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.hero-metrics div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 117, 166, 0.06);
    border: 1px solid rgba(17, 117, 166, 0.12);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    margin-bottom: 4px;
    font-size: 1.35rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.92rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.button.secondary {
    color: var(--ink);
    background: #eaf4f8;
}

.hero-card,
.accent-panel {
    padding: 28px;
}

.hero-image-card,
.media-card {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-image-card img,
.media-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-card {
    position: relative;
    min-height: 100%;
}

.hero-image-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 45%, rgba(10, 28, 38, 0.58));
}

.hero-image-caption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    max-width: 220px;
    padding: 12px 14px;
    border-radius: 16px;
    color: white;
    background: rgba(20, 35, 49, 0.72);
    backdrop-filter: blur(8px);
    font-weight: 700;
}

.trust-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.trust-ribbon span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 117, 166, 0.12);
    color: var(--accent-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.status-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.feature-grid,
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.feature-card,
.placeholder-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.feature-grid-elevated {
    align-items: stretch;
}

.feature-card-numbered {
    position: relative;
    overflow: hidden;
}

.feature-card-numbered::after {
    position: absolute;
    right: -28px;
    bottom: -38px;
    content: "";
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(181, 139, 63, 0.12);
}

.feature-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--brass);
    font-size: 2rem;
    font-weight: 800;
}

.catalog-grid,
.product-grid,
.product-detail-grid {
    display: grid;
    gap: 18px;
}

.catalog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-detail-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.catalog-hero,
.product-title-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin-bottom: 26px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(234, 215, 173, 0.2)),
        var(--paper);
    border: 1px solid var(--line);
}

.catalog-hero h1,
.product-title-panel h1,
.section-head h2 {
    margin: 0 0 12px;
    letter-spacing: -0.035em;
}

.catalog-hero aside {
    display: grid;
    place-items: center;
    min-width: 132px;
    padding: 22px;
    border-radius: 24px;
    color: var(--accent-dark);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 120, 146, 0.14);
}

.catalog-hero aside strong {
    font-size: 2rem;
    line-height: 1;
}

.catalog-hero aside span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.compact-page-hero {
    margin-bottom: 22px;
}

.catalog-card,
.product-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.16s ease, border-color 0.16s ease;
}

.page-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.page-breadcrumbs a {
    color: var(--accent-dark);
    text-decoration: none;
}

.page-breadcrumbs a:hover {
    text-decoration: underline;
}

.catalog-card {
    padding: 14px;
}

.catalog-card-image,
.product-card-image,
.product-detail-image {
    display: block;
    width: 100%;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(217, 207, 191, 0.75);
    border-radius: 16px;
}

.catalog-card-image {
    height: 118px;
    margin-bottom: 14px;
}

.product-card-image {
    height: 118px;
    margin-bottom: 14px;
}

.product-detail-image {
    max-height: 560px;
    padding: 16px;
}

.catalog-card:hover,
.product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 117, 166, 0.35);
}

.catalog-card h2 {
    font-size: 1.05rem;
}

.catalog-card h2,
.section-head h2 {
    margin: 0 0 10px;
}

.catalog-card p:last-child {
    margin: 0;
    color: var(--muted);
}

.product-list {
    display: grid;
    gap: 18px;
}

.product-card {
    padding: 13px;
}

.product-card-button {
    width: 100%;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.product-image-panel,
.product-spec-panel {
    min-height: 100%;
}

.product-card strong {
    color: var(--accent-dark);
}

.product-card strong,
.product-card span {
    display: block;
}

.product-card strong {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.product-card span {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.product-card em,
.product-card small {
    display: block;
    margin-top: 8px;
    font-style: normal;
}

.product-card em {
    color: var(--brass);
    font-size: 0.86rem;
    font-weight: 800;
}

.product-card small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.m-top {
    margin-top: 24px;
}

.spec-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.spec-list div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.spec-list dt {
    margin-bottom: 6px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 700;
}

.spec-list dd {
    margin: 0;
    color: var(--muted);
}

.richtext {
    color: var(--muted);
    line-height: 1.7;
}

.product-description-card {
    grid-column: span 2;
}

.product-finishes-card {
    grid-column: span 2;
}

.product-group-card {
    grid-column: span 2;
}

.product-finishes-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.product-finishes-intro h2 {
    margin: 0 0 10px;
}

.product-finishes-intro p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.6;
}

.product-finishes-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.product-finish-item {
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(217, 207, 191, 0.75);
    border-radius: 14px;
}

.product-finishes-image {
    display: block;
    width: 100%;
    height: 88px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
}

.product-finish-item figcaption {
    margin-top: 8px;
    text-align: center;
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.25;
}

.product-dialog-finishes {
    margin-top: 18px;
}

.product-finishes-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.product-finish-item-compact {
    padding: 8px;
    border-radius: 12px;
}

.product-finishes-image-compact {
    height: 58px;
}

.product-finish-item-compact figcaption {
    margin-top: 6px;
    font-size: 0.72rem;
}

.product-group-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.product-group-item {
    display: grid;
    gap: 7px;
    padding: 10px;
    color: var(--ink);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform 0.16s ease, border-color 0.16s ease;
}

.product-group-item:hover,
.product-group-item.active {
    transform: translateY(-2px);
    border-color: rgba(17, 117, 166, 0.42);
}

.product-group-item.active {
    box-shadow: inset 0 0 0 2px rgba(14, 120, 146, 0.16);
}

.product-group-item img {
    display: block;
    width: 100%;
    height: 92px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
}

.product-group-item span {
    color: var(--accent-dark);
    font-weight: 800;
}

.product-group-item strong {
    font-size: 1.1rem;
}

.product-group-item small {
    color: var(--muted);
    line-height: 1.35;
}

.printed-catalog-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.32fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.printed-entry-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
    padding: 24px 26px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(181, 139, 63, 0.18), transparent 34%),
        var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.printed-entry-card h2 {
    margin: 0 0 8px;
}

.printed-entry-card p:not(.card-label) {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.printed-catalog-tools,
.printed-page-viewer,
.printed-thumb-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.printed-catalog-tools {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 18px;
    padding: 22px;
}

.printed-search-form {
    display: grid;
    gap: 10px;
}

.printed-search-form label {
    font-weight: 700;
}

.printed-search-form div {
    display: grid;
    gap: 10px;
}

.printed-search-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
}

.printed-alert {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    color: #8f3b2c;
    background: #fff0ed;
    border: 1px solid #f0c2b8;
    line-height: 1.5;
}

.printed-current-card h2 {
    margin: 0 0 8px;
}

.printed-current-card p:not(.card-label) {
    margin: 0;
    color: var(--muted);
}

.printed-page-viewer {
    overflow: hidden;
    padding: 18px;
}

.printed-page-viewer img {
    display: block;
    width: 100%;
    max-height: 1180px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
}

.printed-selection-form {
    display: grid;
    gap: 14px;
}

.printed-selection-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 253, 247, 0.76);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.printed-selection-head h2 {
    margin: 0;
}

.printed-thumb-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.printed-thumb-card {
    display: grid;
    gap: 8px;
    padding: 10px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.16s ease, border-color 0.16s ease;
}

.printed-thumb-card label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.printed-thumb-card input {
    accent-color: var(--accent);
}

.printed-thumb-card:hover,
.printed-thumb-card.active {
    transform: translateY(-2px);
    border-color: rgba(17, 117, 166, 0.42);
}

.printed-thumb-card img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
}

.printed-thumb-card strong {
    font-weight: 800;
    color: var(--accent-dark);
}

.printed-thumb-card small {
    color: var(--muted);
}

.printed-thumb-card a {
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.printed-thumb-card a:hover {
    text-decoration: underline;
}

.product-dialog {
    width: min(920px, calc(100vw - 36px));
    max-height: calc(100vh - 48px);
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: var(--paper);
    box-shadow: 0 28px 90px rgba(20, 36, 48, 0.28);
}

.product-dialog::backdrop {
    background: rgba(20, 35, 49, 0.48);
    backdrop-filter: blur(3px);
}

.dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(20, 36, 48, 0.12);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.product-dialog-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
    gap: 0;
}

.product-dialog-media {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 28px;
    background: linear-gradient(180deg, #f8f5ef, #efe7da);
}

.product-dialog-media img {
    display: block;
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-dialog-body {
    padding: 38px 36px;
}

.product-dialog-body h3 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.045em;
}

.product-dialog-body > p:not(.eyebrow) {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.product-dialog-body .product-dialog-group-summary {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--accent-dark);
    background: rgba(14, 120, 146, 0.08);
    font-weight: 800;
}

.product-dialog-body .product-dialog-measures-summary {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.compact-spec-list {
    margin-top: 18px;
}

.section-stack {
    margin-bottom: 22px;
}

.compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.gallery-grid,
.contact-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card,
.contact-card,
.map-card,
.legal-card,
.fair-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.faq-card,
.contact-card,
.fair-card {
    transition: transform 0.16s ease, border-color 0.16s ease;
}

.faq-card:hover,
.contact-card:hover,
.fair-card:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 120, 146, 0.28);
}

.faq-card,
.contact-card {
    padding: 24px;
}

.faq-card h2,
.contact-card h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.faq-card p,
.form-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.form-alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    line-height: 1.6;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

.form-alert-success {
    background: #e9f8ef;
    border: 1px solid #b8e1c4;
    color: #25653a;
}

.form-alert-error {
    background: #fff0ed;
    border: 1px solid #f0c2b8;
    color: #8f3b2c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-card a {
    color: var(--accent-dark);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.fairs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fair-card {
    overflow: hidden;
}

.fair-card img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.fair-card-body {
    padding: 20px;
}

.fair-card-body h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.fair-date,
.fair-card-body p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.65;
}

.fair-card-body a,
.footer-links a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.fair-card-body a:hover,
.footer-links a:hover {
    text-decoration: underline;
}

.legal-card {
    padding: 26px 28px;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    line-height: 1.7;
}

.legal-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.legal-card td,
.legal-card th {
    padding: 10px 12px;
    border: 1px solid var(--line);
    text-align: left;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.map-card {
    overflow: hidden;
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.feature-card h2,
.placeholder-card h2,
.split-panel h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.feature-card p,
.placeholder-card p,
.split-panel p:not(.card-label),
.site-footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.split-panel {
    margin-bottom: 28px;
}

.split-panel article {
    padding: 28px;
}

.accent-panel {
    background: linear-gradient(160deg, rgba(17, 117, 166, 0.1), rgba(68, 182, 180, 0.18));
}

.content-page {
    padding: 38px 34px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding: 24px 28px;
    background:
        radial-gradient(circle at top left, rgba(181, 139, 63, 0.24), transparent 32%),
        rgba(20, 35, 49, 0.98);
    color: rgba(255, 255, 255, 0.88);
    border-radius: 24px;
}

.home-slider {
    margin-bottom: 42px;
}

.home-slider-link {
    position: relative;
    display: block;
    height: clamp(360px, 62vh, 760px);
    overflow: hidden;
    color: #fff;
    background: #142331;
    text-decoration: none;
}

.home-slider-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 5s ease;
}

.home-slider-link img.active {
    opacity: 1;
    transform: scale(1);
}

.home-slider-link::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 48%, rgba(20, 35, 49, 0.44));
}

.home-slider-link span {
    position: absolute;
    right: clamp(18px, 3vw, 48px);
    bottom: clamp(18px, 3vw, 48px);
    z-index: 1;
    padding: 13px 18px;
    background: rgba(20, 35, 49, 0.88);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-brand,
.footer-contact,
.footer-links {
    flex: 1;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.footer-badges span {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-cta-card {
    grid-column: span 2;
}

@media (max-width: 980px) {
    .site-header,
    .hero-panel-final,
    .hero-panel,
    .split-panel,
    .feature-grid,
    .gallery-grid,
    .contact-grid,
    .faq-list,
    .fairs-grid,
    .product-detail-grid,
    .placeholder-grid,
    .site-footer {
        grid-template-columns: 1fr;
        display: grid;
    }

    .site-header {
        justify-content: initial;
    }

    .catalog-hero,
    .product-title-panel {
        grid-template-columns: 1fr;
    }

    .product-description-card {
        grid-column: span 1;
    }

    .product-finishes-card {
        grid-column: span 1;
    }

    .product-group-card {
        grid-column: span 1;
    }

    .product-finishes-intro {
        flex-direction: column;
        align-items: stretch;
    }

    .product-finishes-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-finishes-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-group-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-cta-card {
        grid-column: span 1;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .printed-catalog-layout {
        grid-template-columns: 1fr;
    }

    .printed-entry-card {
        display: grid;
    }

    .printed-selection-head {
        display: grid;
    }

    .printed-catalog-tools {
        position: static;
    }

    .printed-thumb-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-dialog-grid {
        grid-template-columns: 1fr;
    }

    .product-dialog-media {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .site-shell {
        padding: 14px 14px 30px;
    }

    .site-header,
    .hero-copy,
    .hero-card,
    .feature-card,
    .content-page,
    .split-panel article,
    .placeholder-card,
    .site-footer {
        padding: 22px 18px;
    }

    .hero-copy h1,
    .content-page h1 {
        line-height: 1.02;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 14vw, 3.4rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .locale-nav,
    .hero-actions,
    .trust-ribbon {
        width: 100%;
    }

    .site-nav a,
    .locale-nav a,
    .button {
        flex: 1;
    }

    .catalog-card-image {
        height: 112px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .printed-thumb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card-image {
        height: 112px;
    }

    .product-dialog-body,
    .product-dialog-media {
        padding: 22px 18px;
    }

    .map-card iframe {
        min-height: 320px;
    }

    .home-slider-link {
        height: 360px;
    }
}

/* Open layout refresh: flatter, wider and less boxed. */
:root {
    --paper: #ffffff;
    --sand: #f4f0e8;
    --line: #d8d2c7;
    --shadow: none;
    --radius-xl: 0;
    --radius-lg: 0;
    --radius-md: 0;
}

body {
    background:
        linear-gradient(90deg, rgba(14, 120, 146, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #fbfaf6 0%, #f3efe6 100%);
    background-size: 72px 72px, auto;
}

.site-shell {
    width: min(100%, 1760px);
    padding: 18px clamp(18px, 3vw, 54px) 44px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 calc(clamp(18px, 3vw, 54px) * -1) 38px;
    padding: 14px clamp(18px, 3vw, 54px);
    border: 0;
    border-bottom: 1px solid rgba(20, 35, 49, 0.12);
    border-radius: 0;
    background: rgba(251, 250, 246, 0.92);
    box-shadow: none;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-kicker {
    margin-bottom: 4px;
}

.brand-name {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.site-nav a,
.locale-nav a {
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
}

.site-nav a.active,
.site-nav a:hover,
.locale-nav a.active,
.locale-nav a:hover {
    background: transparent;
    border-color: var(--accent);
}

.hero-copy,
.hero-card,
.feature-card,
.content-page,
.split-panel article,
.placeholder-card,
.hero-image-card,
.media-card,
.catalog-hero,
.product-title-panel,
.catalog-card,
.product-card,
.printed-entry-card,
.printed-catalog-tools,
.printed-page-viewer,
.printed-thumb-card,
.faq-card,
.contact-card,
.map-card,
.legal-card,
.fair-card {
    border-radius: 0;
    box-shadow: none;
}

.content-page,
.hero-copy,
.split-panel article,
.placeholder-card,
.feature-card,
.accent-panel {
    background: transparent;
    border: 0;
}

.hero-panel {
    gap: clamp(22px, 4vw, 70px);
    align-items: stretch;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(20, 35, 49, 0.12);
}

.hero-copy {
    padding: clamp(34px, 7vw, 96px) 0;
}

.hero-copy::after {
    display: none;
}

.hero-copy h1,
.content-page h1 {
    font-size: clamp(3rem, 7vw, 7.8rem);
    letter-spacing: -0.07em;
}

.lead {
    max-width: 920px;
    font-size: 1.14rem;
}

.hero-image-card,
.media-card {
    border: 0;
    background: transparent;
}

.hero-image-card img,
.media-card img {
    border-radius: 0;
}

.hero-metrics div,
.trust-ribbon span,
.button.secondary {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.52);
    border: 0;
    border-left: 3px solid rgba(14, 120, 146, 0.28);
}

.button {
    border-radius: 0;
}

.button.primary {
    background: var(--ink);
}

.feature-grid,
.placeholder-grid,
.gallery-grid,
.contact-grid,
.faq-list,
.fairs-grid {
    gap: clamp(18px, 3vw, 42px);
}

.feature-card,
.placeholder-card,
.split-panel article {
    padding: 0;
    border-top: 1px solid rgba(20, 35, 49, 0.16);
    padding-top: 22px;
}

.feature-card-numbered::after {
    display: none;
}

.feature-number {
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.catalog-hero,
.product-title-panel {
    padding: 0 0 26px;
    margin-bottom: 26px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(20, 35, 49, 0.16);
}

.catalog-hero aside {
    border: 0;
    border-left: 1px solid rgba(20, 35, 49, 0.16);
    border-radius: 0;
    background: transparent;
}

.catalog-grid,
.product-grid,
.product-group-grid,
.printed-thumb-grid {
    gap: 1px;
    background: rgba(20, 35, 49, 0.14);
    border: 1px solid rgba(20, 35, 49, 0.14);
}

.catalog-card,
.product-card,
.product-group-item,
.printed-thumb-card {
    border: 0;
    background: #fffdfa;
    padding: 14px;
    transition: background 0.16s ease, transform 0.16s ease;
}

.catalog-card:hover,
.product-card:hover,
.product-group-item:hover,
.printed-thumb-card:hover,
.printed-thumb-card.active,
.product-group-item.active {
    transform: none;
    background: #f2eee5;
}

.catalog-card-image,
.product-card-image,
.product-detail-image,
.product-group-item img,
.printed-thumb-card img {
    border: 0;
    border-radius: 0;
    background: #fff;
}

.product-detail-grid {
    gap: clamp(26px, 4vw, 64px);
}

.product-image-panel,
.product-spec-panel,
.product-finishes-card,
.product-description-card,
.product-group-card,
.product-cta-card {
    border-top: 1px solid rgba(20, 35, 49, 0.16);
    padding-top: 22px;
}

.spec-list div {
    border-bottom-color: rgba(20, 35, 49, 0.12);
}

.printed-entry-card,
.printed-selection-head,
.printed-catalog-tools,
.printed-page-viewer {
    border: 1px solid rgba(20, 35, 49, 0.14);
    background: rgba(255, 253, 250, 0.7);
}

.product-dialog {
    border-radius: 0;
}

.dialog-close,
.product-dialog-media img,
.product-dialog-body .product-dialog-group-summary {
    border-radius: 0;
}

.site-footer {
    margin: 50px calc(clamp(18px, 3vw, 54px) * -1) 0;
    padding: 34px clamp(18px, 3vw, 54px);
    border-radius: 0;
    background: #142331;
}

@media (max-width: 980px) {
    .site-header {
        position: static;
        margin-inline: 0;
        padding-inline: 0;
    }

    .brand-logo {
        max-width: min(520px, 86vw);
    }

    .catalog-hero aside {
        border-left: 0;
        border-top: 1px solid rgba(20, 35, 49, 0.16);
    }
}

@media (max-width: 720px) {
    .site-shell {
        padding-inline: 16px;
    }

    .hero-copy,
    .content-page {
        padding-inline: 0;
    }

    .site-footer {
        margin-inline: -16px;
        padding-inline: 16px;
    }
}
