/*
Theme Name: Dream Nest Custom Bedding Catalog
Theme URI: https://dreamnestlife.com
Author: Dream Nest
Description: A high-end, responsive B2B catalogue theme for custom four-piece bedding collections, style discovery, global sizing and quote enquiries.
Version: 2.3.0
License: GNU General Public License v2 or later
Text Domain: dreamnest-catalog
*/

:root {
    --ink: #20352e;
    --ink-deep: #14231e;
    --forest: #36594d;
    --sage: #aab9a2;
    --cream: #f6f2eb;
    --sand: #e6dccf;
    --gold: #b78e58;
    --paper: #fcfbf8;
    --white: #fff;
    --muted: #66726d;
    --line: rgba(32, 53, 46, .14);
    --shadow: 0 24px 70px rgba(20, 35, 30, .09);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { color: var(--white); background: var(--forest); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 3px;
}
[hidden] { display: none !important; }
.screen-reader-text {
    position: absolute !important; 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; top: 10px; left: 10px; z-index: 9999; padding: 10px 16px;
    background: var(--white); color: var(--ink); transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }
.content-shell { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.site-main { overflow: hidden; }
.section { padding: 104px 0; }
.section-tint { background: var(--cream); }
.eyebrow {
    display: block; margin-bottom: 18px; color: var(--gold); font-size: 12px; font-weight: 600;
    letter-spacing: .18em; line-height: 1.4; text-transform: uppercase;
}
.eyebrow.light { color: #efe6d6; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(48px, 6.5vw, 92px); letter-spacing: -.035em; }
h2 { font-size: clamp(36px, 4.3vw, 62px); letter-spacing: -.028em; }
h3 { font-size: 25px; }
.button {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 14px 25px;
    border: 1px solid transparent; font-size: 12px; font-weight: 600; letter-spacing: .12em;
    text-align: center; text-transform: uppercase; transition: .25s ease;
}
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.button-ghost { border-color: rgba(255,255,255,.65); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.text-link {
    display: inline-flex; gap: 15px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid var(--ink);
    font-size: 13px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Header */
.top-note {
    position: relative; z-index: 1002; padding: 8px 20px; color: #e7e9e3; background: var(--ink-deep);
    font-size: 10px; font-weight: 600; letter-spacing: .16em; text-align: center;
}
.site-header {
    position: sticky; top: 0; z-index: 1000; background: rgba(252,251,248,.94);
    border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(252,251,248,.98); box-shadow: 0 12px 34px rgba(20,35,30,.08); }
.header-shell {
    width: min(1440px, calc(100% - 48px)); min-height: 94px; margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between; gap: 34px;
}
.wordmark { display: inline-flex; flex-direction: column; align-items: flex-start; white-space: nowrap; }
.wordmark img { display: block; width: 182px; height: auto; transition: width .25s ease; }
.site-header.is-scrolled .wordmark img { width: 168px; }
.wordmark span { font-family: var(--serif); font-size: 24px; letter-spacing: .22em; line-height: 1; }
.wordmark small { margin-top: 7px; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.main-navigation ul { display: flex; align-items: center; gap: clamp(15px, 1.8vw, 30px); margin: 0; padding: 0; list-style: none; }
.main-navigation a { position: relative; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.main-navigation a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: .2s ease; }
.main-navigation a:hover::after { transform: scaleX(1); }
.main-navigation .nav-cta { padding: 12px 17px; color: var(--white); background: var(--ink); }
.main-navigation .nav-cta:hover { background: var(--gold); }
.nav-socials { display: none; }
.menu-toggle { display: none; width: 40px; padding: 7px; border: 0; background: transparent; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 1px; margin: 6px 0; background: var(--ink); }

/* Home hero */
.home-hero {
    position: relative; min-height: 760px; height: calc(100vh - 130px); color: var(--white);
    background-image: url('https://dreamnestlife.com/wp-content/uploads/2026/06/Gemini_Generated_Image_vjdewkvjdewkvjde-scaled.png');
    background-position: center; background-size: cover;
}
.home-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,28,23,.68) 0%, rgba(14,28,23,.34) 48%, rgba(14,28,23,.06) 80%); }
.home-hero-content { position: absolute; bottom: 13%; left: max(24px, calc((100vw - 1280px) / 2)); width: min(730px, calc(100% - 48px)); }
.home-hero h1 { margin-bottom: 26px; }
.home-hero p { max-width: 690px; margin-bottom: 35px; color: rgba(255,255,255,.9); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-caption { position: absolute; right: 28px; bottom: 25px; max-width: 420px; padding: 9px 13px; background: rgba(15,30,24,.55); font-size: 11px; letter-spacing: .05em; }
.proof-strip { display: grid; grid-template-columns: repeat(4,1fr); color: var(--white); background: var(--forest); }
.proof-strip div { min-height: 105px; padding: 25px clamp(18px,3vw,44px); display: flex; align-items: center; gap: 17px; border-right: 1px solid rgba(255,255,255,.15); }
.proof-strip strong { color: #ccd6cc; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.proof-strip span { font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }

/* Section layouts */
.intro-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.intro-split h2 { margin-bottom: 0; }
.large-copy { color: #3d4d47; font-family: var(--serif); font-size: clamp(22px, 2.15vw, 31px); line-height: 1.5; }
.intro-split > div:last-child > p:not(.large-copy) { color: var(--muted); }
.section-heading { display: grid; grid-template-columns: 1.15fr .7fr; gap: 7vw; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 5px; color: var(--muted); }
.image-card-grid { display: grid; gap: 20px; }
.image-card-grid.four { grid-template-columns: repeat(4,1fr); }
.image-card { background: var(--white); box-shadow: 0 0 0 1px var(--line); }
.image-card-photo { height: 310px; background-position: center; background-size: cover; }
.photo-duvet { background-image: url('https://dreamnestlife.com/wp-content/uploads/2026/06/%E4%B8%BB%E9%A1%B5%E8%A2%AB%E5%A5%97collection%E5%9B%BE%E7%89%87.png'); }
.photo-sheet { background-image: url('https://dreamnestlife.com/wp-content/uploads/2026/06/%E4%B8%BB%E9%A1%B5%E5%BA%8A%E5%8D%95collection%E5%9B%BE%E7%89%87.png'); }
.photo-sheet.alt { filter: saturate(.72) sepia(.08); background-position: 65% center; }
.photo-pillow { background-image: url('https://dreamnestlife.com/wp-content/uploads/2026/06/%E4%B8%BB%E9%A1%B5%E7%9A%84%E6%9E%95%E5%A4%B4collection%E5%9B%BE%E7%89%87-scaled.png'); }
.image-card > div:last-child { padding: 25px; }
.image-card small { color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.image-card h3 { margin: 9px 0 11px; font-size: 24px; }
.image-card p { margin: 0; color: var(--muted); font-size: 13px; }
.family-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.family-card { background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.family-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.family-art { position: relative; height: 235px; overflow: hidden; background: linear-gradient(135deg, var(--tone-a) 0 34%, var(--tone-b) 34% 67%, var(--tone-c) 67%); }
.family-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.family-card:hover .family-art img { transform: scale(1.045); }
.family-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(17,35,29,.58)); }
.family-art span { position: absolute; z-index: 1; right: 22px; bottom: 13px; color: rgba(255,255,255,.94); font-family: var(--serif); font-size: 42px; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.family-card-copy { padding: 24px; }
.family-card h3 { margin-bottom: 9px; font-size: 26px; }
.family-card p { margin-bottom: 16px; color: var(--muted); font-size: 13px; }
.family-card-copy > span { font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.center-action { margin-top: 42px; text-align: center; }
.style-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.style-card { position: relative; min-height: 230px; padding: 56px 28px 28px; overflow: hidden; color: var(--ink); background: transparent; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; transition: .25s ease; }
.style-card:hover { color: var(--white); background: var(--forest); }
.style-index { position: absolute; top: 20px; right: 22px; color: rgba(32,53,46,.24); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.style-card:hover .style-index { color: rgba(255,255,255,.45); }
.style-card span { font-family: var(--serif); font-size: 25px; }
.style-card p { margin: 20px 0 14px; color: var(--muted); font-size: 13px; }
.style-card small { color: var(--gold); font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.style-card:hover p, .style-card:hover small { color: rgba(255,255,255,.76); }
.service-section { color: var(--white); background: var(--ink-deep); }
.service-section h2 { max-width: 850px; margin-bottom: 18px; }
.service-lead { max-width: 620px; color: rgba(255,255,255,.68); font-size: 18px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 54px 0 36px; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.process-grid article { min-height: 260px; padding: 31px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.process-grid b { color: var(--sage); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.process-grid h3 { margin: 45px 0 15px; }
.process-grid p { color: rgba(255,255,255,.65); font-size: 13px; }
.service-options { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; }
.service-options span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.75); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.market-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.market-grid article { min-height: 180px; padding: 25px; background: var(--cream); border: 1px solid var(--line); }
.market-grid-global { grid-template-columns: repeat(3,1fr); }
.market-grid-global article { position: relative; min-height: 205px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.market-grid-global article::after { content: ""; position: absolute; right: -46px; bottom: -70px; width: 155px; height: 155px; border: 1px solid rgba(183,142,88,.22); border-radius: 50%; }
.market-grid-global article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.market-grid strong { display: block; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.market-grid span { display: block; margin: 18px 0 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.market-grid p, .size-note { color: var(--muted); font-size: 12px; }
.size-note { margin: 18px 0; }
.global-size-callout { margin-top: 22px; padding: 28px 32px; display: grid; grid-template-columns: .75fr 1fr 1.45fr; gap: 28px; align-items: center; color: var(--white); background: var(--forest); }
.global-size-callout span { color: var(--sage); font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.global-size-callout strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.global-size-callout p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }
.closing-cta { width: min(1380px, calc(100% - 48px)); margin: 0 auto 90px; padding: 70px 6vw; display: flex; justify-content: space-between; align-items: end; gap: 30px; background: var(--sand); }
.closing-cta h2 { margin-bottom: 10px; }
.closing-cta p { margin-bottom: 0; color: var(--muted); }
.closing-cta.compact { margin-top: 80px; }

/* Catalogue */
.catalog-hero { padding: 110px 0 80px; color: var(--white); background: linear-gradient(120deg, #1a3028, #50685e); }
.catalog-hero h1 { margin-bottom: 22px; }
.catalog-hero > .content-shell > p { max-width: 730px; color: rgba(255,255,255,.78); font-size: 18px; }
.catalog-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 52px; background: rgba(255,255,255,.18); }
.catalog-stats span { padding: 20px; background: rgba(17,35,29,.68); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.catalog-stats strong { display: block; color: var(--sage); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.compact-style-grid .style-card { cursor: pointer; }
.compact-style-grid .style-card.is-selected { color: var(--white); background: var(--forest); box-shadow: inset 0 0 0 2px var(--gold); }
.compact-style-grid .style-card.is-selected .style-index { color: rgba(255,255,255,.5); }
.compact-style-grid .style-card.is-selected p, .compact-style-grid .style-card.is-selected small { color: rgba(255,255,255,.76); }
.catalog-section { padding-top: 55px; }
.catalog-toolbar { position: sticky; top: 108px; z-index: 20; display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 1px; padding: 10px; background: var(--ink); box-shadow: var(--shadow); }
.catalog-toolbar label { padding: 8px 14px 10px; background: var(--white); }
.catalog-toolbar label span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.catalog-toolbar input, .catalog-toolbar select { width: 100%; min-height: 34px; padding: 0; color: var(--ink); background: transparent; border: 0; border-radius: 0; outline: 0; font-size: 13px; }
.catalog-filter-state { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 2px 8px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-pill { padding: 7px 10px; color: var(--ink); background: #eee7dc; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.filter-pill.is-muted { color: var(--muted); background: transparent; border: 1px solid var(--line); }
.filter-reset { padding: 7px 0 5px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.filter-reset:disabled { opacity: .32; cursor: default; }
.catalog-meta { display: flex; justify-content: space-between; padding: 32px 2px 17px; border-bottom: 1px solid var(--line); }
.catalog-meta span { font-family: var(--serif); font-size: 24px; }
.catalog-meta small { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px 20px; padding-top: 28px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-art, .product-detail-art {
    --product-tone: #b9b0a2; position: relative; display: block; overflow: hidden;
    background: linear-gradient(145deg, color-mix(in srgb, var(--product-tone), white 50%), var(--product-tone));
}
.product-art > img, .product-detail-art > img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-art > img { transform: scale(1.035); }
.product-art { height: 310px; }
.product-set-badge { position: absolute; z-index: 3; top: 14px; right: 15px; padding: 6px 8px; color: var(--ink); background: rgba(255,255,255,.78); backdrop-filter: blur(7px); font-size: 8px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.product-art::after, .product-detail-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,35,29,.18), transparent 35%, rgba(17,35,29,.2)); pointer-events: none; }
.product-code { position: absolute; z-index: 3; top: 18px; left: 19px; padding: 5px 7px; color: var(--white); background: rgba(17,35,29,.6); backdrop-filter: blur(5px); font-size: 10px; font-weight: 600; letter-spacing: .13em; }
.product-art small, .product-detail-art > small { position: absolute; z-index: 3; right: 17px; bottom: 14px; padding: 6px 9px; color: var(--white); background: rgba(25,45,37,.68); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.product-card-copy { padding: 23px; }
.product-labels { display: flex; gap: 7px; }
.product-labels span { display: inline-flex; align-items: center; color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.product-color-label { margin-left: auto; color: var(--muted) !important; }
.product-color-label i { width: 9px; height: 9px; margin-right: 6px; border: 1px solid rgba(32,53,46,.18); border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 2px var(--white), 0 0 0 3px rgba(32,53,46,.1); }
.product-card h2 { margin: 10px 0 8px; font-size: 25px; }
.product-card h2 a:hover { color: var(--gold); }
.product-card p { min-height: 44px; color: var(--muted); font-size: 12px; }
.product-card-bottom { display: flex; justify-content: space-between; align-items: end; gap: 15px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-card-bottom strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.product-card-bottom a { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.empty-state { margin-top: 30px; padding: 50px; background: var(--cream); text-align: center; }
.empty-state h2 { font-size: 36px; }
.product-detail-hero { padding: 80px 0; background: var(--cream); }
.product-detail-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 7vw; align-items: center; }
.product-detail-art { min-height: 590px; box-shadow: var(--shadow); }
.product-detail-copy h1 { margin: 0 0 20px; }
.breadcrumb { display: inline-block; margin-bottom: 60px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.product-intro { color: var(--muted); font-size: 18px; }
.product-price { margin: 28px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-price span, .product-price small { display: block; color: var(--muted); font-size: 11px; }
.product-price strong { display: block; margin: 3px 0; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.detail-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.detail-spec-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-bottom: 85px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-spec-grid article { min-height: 135px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-spec-grid span { display: block; margin-bottom: 14px; color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.detail-spec-grid strong { font-size: 13px; font-weight: 500; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.detail-columns h2 { font-size: 39px; }
.check-list { margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 11px 0; padding-left: 24px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.detail-scene { margin-top: 75px; padding: 35px; color: var(--white); background: var(--forest); }
.detail-scene span { display: block; color: #c6d0c7; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.detail-scene strong { display: block; margin: 7px 0; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.detail-scene p { margin: 0; color: rgba(255,255,255,.67); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
.size-table { width: 100%; min-width: 960px; border-collapse: collapse; }
.size-table th, .size-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.size-table th { color: var(--white); background: var(--ink); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.size-table td { font-size: 12px; }
.size-table tbody tr:hover { background: var(--cream); }

/* About, contact and general pages */
.inner-hero { padding: 130px 0; color: var(--white); background-position: center; background-size: cover; }
.about-hero { position: relative; background-image: linear-gradient(90deg, rgba(15,31,25,.82), rgba(15,31,25,.28)), url('https://dreamnestlife.com/wp-content/uploads/2026/06/%E4%B8%BB%E9%A1%B5%E7%9A%84%E6%9E%95%E5%A4%B4collection%E5%9B%BE%E7%89%87-scaled.png'); }
.inner-hero h1 { max-width: 900px; }
.inner-hero p { max-width: 650px; color: rgba(255,255,255,.76); font-size: 18px; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.capability-grid article { min-height: 275px; padding: 28px; background: var(--white); border: 1px solid var(--line); }
.capability-grid b { color: var(--gold); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.capability-grid h3 { margin: 45px 0 13px; }
.capability-grid p { color: var(--muted); font-size: 13px; }
.values-section { text-align: center; }
.values-section blockquote { max-width: 950px; margin: 20px auto 35px; font-family: var(--serif); font-size: clamp(28px,4vw,52px); line-height: 1.3; }
.contact-layout { min-height: 730px; display: grid; grid-template-columns: 1fr 1fr; }
.contact-intro { padding: clamp(60px,7vw,118px); color: var(--white); background: var(--ink-deep); }
.contact-intro h1 { font-size: clamp(48px,5vw,76px); }
.contact-intro > p { max-width: 600px; color: rgba(255,255,255,.68); }
.contact-direct { margin: 45px 0 35px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-direct span, .brief-list > span { display: block; color: var(--sage); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { font-family: var(--serif); font-size: clamp(24px,2.5vw,36px); }
.brief-list ul { margin: 15px 0 0; padding-left: 18px; color: rgba(255,255,255,.7); font-size: 13px; }
.contact-form-panel { padding: clamp(60px,7vw,118px); background: radial-gradient(circle at 90% 8%, rgba(183,142,88,.16), transparent 34%), var(--cream); }
.contact-form-panel h2 { margin-bottom: 10px; }
.contact-form-panel > p { color: var(--muted); }
.wpforms-container { margin-top: 35px !important; }
.wpforms-container .wpforms-field-label { color: var(--ink) !important; font-size: 11px !important; letter-spacing: .08em; text-transform: uppercase; }
.wpforms-container input, .wpforms-container textarea { border: 1px solid var(--line) !important; border-radius: 0 !important; background: var(--white) !important; }
.wpforms-container button[type=submit] { min-height: 52px !important; padding: 13px 28px !important; border: 0 !important; border-radius: 0 !important; color: var(--white) !important; background: var(--ink) !important; font-size: 11px !important; letter-spacing: .12em !important; text-transform: uppercase !important; }
.selected-project { margin: 28px 0 -10px; padding: 18px 20px; display: grid; grid-template-columns: 1fr auto; gap: 2px 18px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.7); }
.selected-project span { grid-column: 1 / -1; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.selected-project strong { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.selected-project small { align-self: center; color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.quote-next { margin-top: 72px; padding-top: 35px; border-top: 1px solid var(--line); }
.quote-next h3 { max-width: 520px; margin: 8px 0 28px; font-size: 30px; }
.quote-next-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quote-next-grid article { min-height: 190px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-next-grid b { display: block; margin-bottom: 35px; color: var(--gold); font-family: var(--serif); font-size: 20px; font-weight: 400; }
.quote-next-grid strong { display: block; margin-bottom: 10px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.quote-next-grid p { margin: 0; color: var(--muted); font-size: 11px; }
.basic-page { min-height: 600px; padding: 100px 0; }
.prose { max-width: 900px; }
.prose h1 { margin-bottom: 40px; }
.prose p, .prose li { color: var(--muted); }

/* Footer */
.site-footer { padding: 78px 0 28px; color: #c5cec9; background: #10201a; }
.footer-grid { width: min(1280px, calc(100% - 48px)); margin-inline: auto; display: grid; grid-template-columns: 1.6fr .8fr 1fr; gap: 8vw; }
.wordmark-light span { color: var(--white); }
.wordmark-light small { color: #9ba8a1; }
.footer-brand p { max-width: 520px; margin-top: 24px; color: #91a098; }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; }
.site-footer a:hover { color: var(--white); }
.footer-email { display: inline-block; margin-top: 12px; color: var(--white); font-family: var(--serif); font-size: 23px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.social-links a { display: inline-flex; align-items: center; gap: 9px; color: #c5cec9; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.social-links a > span { width: 30px; height: 30px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: var(--white); font-family: var(--sans); font-size: 15px; font-weight: 600; }
.social-links svg { width: 14px; height: 14px; display: block; }
.contact-social { margin: -10px 0 36px; }
.contact-social a { color: rgba(255,255,255,.72); }
.footer-bottom { width: min(1280px, calc(100% - 48px)); margin: 55px auto 0; padding-top: 22px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.13); color: #72827a; font-size: 10px; }
.floating-quote { position: fixed; z-index: 900; right: 20px; bottom: 20px; min-height: 54px; padding: 9px 10px 9px 20px; display: inline-flex; align-items: center; gap: 16px; color: var(--white); background: var(--ink); box-shadow: 0 16px 40px rgba(20,35,30,.22); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s ease, background .25s ease; }
.floating-quote b { width: 35px; height: 35px; display: inline-grid; place-items: center; color: var(--ink); background: var(--white); font-size: 18px; font-weight: 400; }
.floating-quote:hover { background: var(--gold); transform: translateY(-3px); }

@media (max-width: 1100px) {
    .main-navigation ul { gap: 14px; }
    .main-navigation a { font-size: 10px; }
    .image-card-grid.four, .process-grid, .capability-grid { grid-template-columns: repeat(2,1fr); }
    .family-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
    .style-grid { grid-template-columns: repeat(2,1fr); }
    .catalog-toolbar { grid-template-columns: 1.5fr 1fr; }
    .detail-spec-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
    body.admin-bar .site-header { top: 46px; }
    .top-note { padding-inline: 10px; font-size: 8px; letter-spacing: .1em; }
    .header-shell { min-height: 76px; }
    .wordmark span { font-size: 20px; }
    .wordmark img { width: 158px; }
    .menu-toggle { display: block; }
    .main-navigation { position: absolute; top: 100%; right: -24px; left: -24px; display: none; background: var(--paper); border-bottom: 1px solid var(--line); }
    .main-navigation.is-open { display: block; }
    body.menu-open { overflow: hidden; }
    .main-navigation ul { display: block; padding: 14px 24px 24px; }
    .main-navigation li { border-bottom: 1px solid var(--line); }
    .main-navigation a { display: block; padding: 14px 0; }
    .main-navigation .nav-cta { margin-top: 10px; padding: 14px; text-align: center; }
    .nav-socials { display: flex; gap: 24px; padding: 16px 0 2px; border-bottom: 0 !important; }
    .nav-socials a { padding: 4px 0; color: var(--muted); }
    .home-hero { min-height: 680px; height: calc(100vh - 105px); }
    .home-hero-content { bottom: 11%; }
    .home-hero-shade { background: linear-gradient(90deg, rgba(14,28,23,.76), rgba(14,28,23,.22)); }
    .hero-caption { display: none; }
    .proof-strip { grid-template-columns: repeat(2,1fr); }
    .proof-strip div { min-height: 82px; }
    .intro-split, .section-heading, .product-detail-grid, .detail-columns, .contact-layout { grid-template-columns: 1fr; }
    .section-heading { gap: 20px; }
    .market-grid, .catalog-stats { grid-template-columns: repeat(2,1fr); }
    .market-grid-global { grid-template-columns: repeat(2,1fr); }
    .global-size-callout { grid-template-columns: 1fr; gap: 12px; }
    .closing-cta { align-items: start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .catalog-toolbar { position: static; }
    .product-detail-art { min-height: 470px; }
    .floating-quote { right: 14px; bottom: 14px; }
}

@media (max-width: 590px) {
    .content-shell, .header-shell, .footer-grid, .footer-bottom, .closing-cta { width: min(100% - 30px, 1280px); }
    .section { padding: 72px 0; }
    h1 { font-size: 46px; }
    h2 { font-size: 38px; }
    .home-hero p, .catalog-hero > .content-shell > p { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .proof-strip, .image-card-grid.four, .family-grid, .style-grid, .process-grid, .market-grid, .product-grid, .catalog-toolbar, .catalog-stats, .detail-spec-grid, .capability-grid, .footer-grid { grid-template-columns: 1fr; }
    .family-art { height: 205px; }
    .image-card-photo { height: 280px; }
    .style-card { min-height: 160px; }
    .process-grid article, .capability-grid article { min-height: 215px; }
    .process-grid h3, .capability-grid h3 { margin-top: 26px; }
    .catalog-meta, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .catalog-filter-state { align-items: flex-start; flex-direction: column; gap: 10px; }
    .product-art { height: 270px; }
    .product-detail-hero { padding: 45px 0 70px; }
    .product-detail-art { min-height: 360px; }
    .breadcrumb { margin-bottom: 30px; }
    .contact-intro, .contact-form-panel { padding: 70px 24px; }
    .quote-next-grid { grid-template-columns: 1fr; }
    .quote-next-grid article { min-height: 155px; }
    .quote-next-grid b { margin-bottom: 20px; }
    .floating-quote { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; justify-content: space-between; }
}

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